Dear all,
I've a problem about AS2 on button within a MC.
In my working flash, there are 2 MCs
1. a MC called content, full size as the movie, act as a blank platform to load external swf
2. another MC button containing a button, click to loadMovie, placed on top of MC content
I'd like to click the button in button to load an external swf in content.
The script I added on button in MC2
This only work when the button is in the main timeline.Code:on(release){ loadMovie("XXX.swf", this.content); }
I also tried
Code:on(release){ _parent.loadMovie("XXX.swf", this.content); }This will load the swf, but replacing everything. i.e., MC button disappeared with only the external swf playing.Code:on(release){ _root.loadMovie("XXX.swf", this.content); }
Would someone please help this issue?
Many thanks,
otto




Reply With Quote