Question : Need help with global variables in AS 3

I'm new to Flash and ActionScript.  I'm using Flash CS4 with ActionScript 3.  I am trying to develop a program that pulls data from an XML file.  One of the pieces of information that gets pulled is a text file name where disclosure information is kept.  The reading of the XML file is done in an actions layer in frame 1 of my flash file.

Frame 2 of my flash file is where the disclosure screen is displayed.  On the actions layer in frame 2, I want to read in the information from the text file retrieved in frame 1 and display it on the screen.  The problem I'm having is with the idea of a global variable.  I did some searching and a solution was to create an ActionScript Class and store my variables there.  Then to access the variables, I would import the class and access the variable from the class.

When I do a trace on the global variable in Frame 1 it contains the data I want.  However, when I do the trace in Frame 2, the global variable is null.   I do not receive any compile errors or runtime errors.  Can someone please help me figure out what I am doing wrong?  If there is a different approach I should be using rather than the one I've chosen I am open to suggestions.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
FRAME 1 ActionScript
==================
// Import Global variables
import AAPglobal;
 
// Create variables
var loader:URLLoader = new URLLoader();	// Used to load the AAP Project information
var AAPxml:XML;							// AAP Project Information
var AbstractList:XMLList;				// List of Abstracts from AAP Project Information
var banner:String;						// JPG file name for banner
 
 
//load the XML
loader.addEventListener(Event.COMPLETE, onceLoaded);
 
function onceLoaded(event:Event):void
{
	AAPxml = new XML(event.target.data);
	AAPxml.ignoreWhitespace = true;						//don't consider whitespace as nodes
	banner = AAPxml.banner.image;						//get banner image file name
	AAPglobal.disclosureFile = AAPxml.disclosure.text;	//get disclosure statement file name
	trace(AAPglobal.disclosureFile);
	trace(AAPxml.disclosure.text);
	AAPglobal.faqsFile = AAPxml.faqs.text;				//get FAQs file name
	AAPglobal.contactUsFile = AAPxml.contactus.text;	//get contact us file name
	AbstractList = AAPxml.abstracts;
 
	// Load the banner
	var bannerLoader:Loader = new Loader();					// define the loader
	var fileRequest:URLRequest = new URLRequest(banner);	// define the requester
 
	// Set up event listeners to check on load progress and to process image when load is complete
	bannerLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onbannerLoaderProgress);
	bannerLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onbannerLoaderComplete);
	bannerLoader.load(fileRequest);
 
	function onbannerLoaderProgress(e:ProgressEvent):void
	{
		// this is where progress will be monitored
		trace(e.bytesLoaded, e.bytesTotal);
	}
 
	function onbannerLoaderComplete(e:Event):void
	{
		// the image is now loaded, add it to display tree
		var loader:LoaderInfo = LoaderInfo(e.target);
		var loadedImg;
		loadedImg = loader.content;
		loadedImg.x=0;
		loadedImg.y=0;
		addChild(loadedImg);
	}
}
loader.load(new URLRequest("AAP.xml"));
 
FRAME 2 ActionScript
===================
// Import Global variables
import AAPglobal;
 
trace(AAPglobal.disclosureFile);
stop();
 
AAPglobal.as (resides in same folder as .fla file)
============
// AAP Global Variables
package 
{
      public class AAPglobal
      {
            public static var disclosureFile:String;			
            public static var faqsFile:String;					
            public static var contactUsFile:String;				
      }
}
Open in New Window Select All

Answer : Need help with global variables in AS 3

Hi, I've tried replicating your structure according to your definitions.
are you sure you don't get any errors when compiling?

first of all, you should put  your loader.load function in a try catch ....

secondly by commenting out some of the stuff that was throwing errors, i managed to get it to work where you variable is available in frame 2.

okay check the following.
you don't have a stop action in frame 1 so you're going to frame 2 immediately and trying to trace the variable before it's been defined in frame 1.
test that - stick a stop() action in frame 1 and a gotoAndStop() inside the onceLoaded after the xml is handled.

Random Solutions  
 
programming4us programming4us