Quick and easy question?

how can i make a swf file not to be played by itslef but played from some other swf file…
skm0911

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]

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

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]