Hi,
I have loade an external swf in frame one by this code:
[AS]
_root.holder.loadMovie(“myfile.swf”);
[/AS]
Everything is fine and the external swf plays. On another layer in frame one I have a stop button with this code on it:
[AS]
on(release){
_root.holder.stop();
}
[/AS]
But it doesn’t work. I want to stop the external swf to play (freeses) until a play button been pushed.
Any help on this please?
mx-guest2004