hey, i found this tutorial very helpful:
http://www.kirupa.com/developer/act...ecliploader.htm
Check it out, if you want (well what i did) in the action script layer, when
you go to the bottom of it it shows
//buttons
button1.onPress = function() {
my_mc.loadClip("picture1.jpg", "container");
};
button2.onPress = function() {
my_mc.loadClip("picture2.jpg", "container");
};
button3.onPress = function() {
my_mc.loadClip("picture3.jpg", "container");
};
so instead of having an image, change that to a SWF file that is in the same
root folder as the FLA file. So then it would be:
button1.onPress = function() {
my_mc.loadClip("whateverthefileis.swf", "container");
};
Then make another layer in the time line, and just make a new movie clip wit
h
nothing in it, and then drag it to the stage and give it an instance name of
,
"container" so that you can position your movie wherever you want it. thats
what i did and it worked perfect for me. let me know if you want more
directions or help. Glad to help newbies!!!!!!!
|