Re: [flexcoders] Is there a way to pass a parameter into my preloader?

2009-05-27 Thread Manish Jethani
On Tue, May 26, 2009 at 11:49 PM, luvfotography
 wrote:
> I've created a preloader class, and is there a way to pass a parameter into 
> my preloader?

>
> Here is my application tag:
>
> http://www.adobe.com/2006/mxml";
>                 applicationComplete="appInit()"
>                 layout="absolute"
>                 preloader="com.mysite.preloader.SSProgressBarNoWait"

What kind of parameter is this?

I don't see a direct way to pass any parameters. The preloader object
(which is set in your IPreloaderDisplay's preloader property) is a
child of the SystemManager, so you could maybe work your way up to the
SystemManager get the URL parameters from there.

  preloader.parent.loaderInfo.parameters.myParameter.

Manish


[flexcoders] Is there a way to pass a parameter into my preloader?

2009-05-26 Thread luvfotography
I've created a preloader class, and is there a way to pass a parameter into my 
preloader?



Here is my application tag:

http://www.adobe.com/2006/mxml";  
 applicationComplete="appInit()"  
 layout="absolute"  
 preloader="com.mysite.preloader.SSProgressBarNoWait"
 >

thanks,