FLASH—target specific frame from external swf
FLASH—target specific frame from external swf
Out of context: Reply #9
- Started
- Last post
- 9 Responses
- tparsons0
In your index.swf load the first external swf into layer 1
like so
loadMovie("movie01.swf", 1)If you don't want it to play on load put a blank key frame and frame one with a stop action on it.
When you want to talk to the .swf in level one make a blank key frame and label it with some name. Then do this to talk to it on that labeled frame.
on (press) {
_level1.gotoAndPlay ("labelname_here");
}That's for a button but you can do it just on a keyframe also.
Very simple solution to what I think is your issue.