I believe you are at a stage where you would beed to go for an MVC application structure ala Cairngorm (See below for URL).
Your set of variables are within your model and every where you would need access in read mode only requires you to instanciate the model singleton class. Whenever you need to write to these variables, you use the event system provided with your MVC and voila. Cairngorm: http://labs.adobe.com/wiki/index.php/Cairngorm Enjoy, -Boubalou --- In [email protected], <[EMAIL PROTECTED]> wrote: > > Hi All, > > Could any one help me in how can I share a set of string variables > available in my homePage.mxml to be available to all other mxml files as > well as with the script blocks in other mxml files in the same project > as well, on the other referenced flex projects as well. > > Initially I tried with > > Approach 1: > [Bindable] > public static var TestValue:String = null; > However this bindable value was not visible in other mxml files. > > Thanks in advance for your time and help. > > Regards, > Madhu K > > Please do not print this email unless it is absolutely necessary. Spread > environmental awareness. >
