I know they all have to be the same as flavor.
If you want to control the constituent SWF then you are correct. Otherwise, you can import an AS2 SWF into an AS3 document.
What I want to do is have "one.swf" tell "two.swf" to do something ie
Sure, it's easy. If you're importing two.swf into a movieclip called container, then you can use something like this:
Code:
function swftalk(evt:MouseEvent):void
{
container.Myclip_mc.GotoAndPlay"frame2"
}
Basically, treat the MC inside two.swf as if it were inside the container mc.
Bookmarks