How can I raise an event from a SWF file loaded into a Flex application (using SWFLoader)?
I want to be able to detect
a) when a button is pressed
b) when the animation ends
|
1
|
How can I raise an event from a SWF file loaded into a Flex application (using SWFLoader)? I want to be able to detect
|
|||
|
|
|
|
You'll need to do 2 things:
|
||
|
|
|
|
As an adjunct to the answer by Christophe Herreman, and in case you were wondering, here is a way of making your own events...
I have taken the liberty of setting the default value of
In your particular case I doubt there are times when you would not want your event to bubble. The prefix For the two cases you cite you can either have two events and listen for both of them, or add a property to the event which says what just happened, which is the approach which is taken by controls like
then you call it as follows...
you can then inspect the whatHappened field in your event handler.
HTH |
|||
|
|
|
I took a lazier approach for raising the event inside flash Flex:
Flash:
|
||
|
|
|
|
I could not make this last approach work (with Flash CS4 and Flex 3). I put the dispatchEvent call in one of the last frames of my Flash animation, but could not pick it up in Flex. I resorted to a counter variable and incrementing until I reached the known last frame number using the ENTER_FRAME event - which I can pick up using almost the same code. If I can pick this up, then why can't I pick up a custom event? |
||
|
|