--- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote:
>
> The JS should be ready before Flash, so I'd make sure there's a
function
> in JS that Flash will call via EI when it is ready.
ApplicationComplete
> event would be a good time to call out to JS.
>
More specifically, he should have a function that looks something
like this:
handleCreationComplete():void{
ExternalInterface.call('yourStartedJSFunction', true);
}
The Application's creationComplete event should be set to call this.
HTH;
Amy