View Full Version : quick and easy question ?
skm0911
February 8th, 2002, 01:48 PM
how can i make a swf file not to be played by itslef but played from some other swf file..
skm0911
ilyaslamasse
February 8th, 2002, 02:59 PM
Just do it normally, and then load it from your other files. You can load it into target (you need an empty clip) or into level. What do you need exactly ?
pom 0]
skm0911
February 8th, 2002, 03:14 PM
what i need to do is make the swf file to be played from a diff swf file,rather playing it normally,again i should have two diff files,i cannot make one swf file as a movie clip in another file and play from it..hope u understood what i'm saying...say the swf file is only executable/played from another swf file
skm0911
ilyaslamasse
February 8th, 2002, 03:25 PM
Well, there are 2 ways of doing this :
If for example pressing a button will trigger the load, you could write :
on (press) {
loadMovieNum ("mymovie.swf", 1);
}
or if you have an empty clip in your scene that you'll call myothermovie.swf :
on (press) {
loadMovie ("mymovie.swf", "myothermovie.swf");
}
See how it works ?
pom 0]
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.