2.swf have a button that calls an external swf (1.swf) with this script
on (release) {
_parent.aaa.loadMovie(“photos-swf/edi/1.swf”,1);
_parent.phtm._visible=false;
_parent.btn._visible=false;
_parent.btn2._visible=false;
}
2 & 1. swf are both in the main.swf.
i want 1. swf to load in the specified movieclip in the main swf whenever the button in the 2. swf is clicked…
is there any action script command that tells a button to send an external swf into a specified area in another external swf???