I use some code to detect an event : onClipEvent(mouseDown)
content.onMouse…
Everything works.
Then I load a different movie: root.contents.loadMovie(“hardware.swf”);
Now my handler from #3 doesn’t work, it can’t do content.onMouse…
How can I set something…? variable? so that when the blank movie clip is loaded with different movies I can name it to “content” to still use the original eventhandler so that #3 above still works?
I have heard that apparently because MX NOW (not in version 5) wipes out every event related to the movie clip when you use a movieload.
Anyone know how to make the new movie clip reload its event handlers?
I have a different one I found and made work, it recalls the onload, and ondata events - and inside onload I just dynamically assigned the onmouseevent handler again.
Going to look at yours now. Looks more complex.
What is with the ASBroadcaster and stuff…