Flash Actionscript 2, Button Loads an .SWF?

JimboMatrix

New member
Hi I really need help from all you brainboxes.

I would like to load an .swf animation as a movieclip, within a flash file.

This is what I have:
onClipEvent (load) {
num = 2;
this.ti1.gotoAndStop(num);

}
on (rollOver) {
if (_root.link<>num) {
this.gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.link<>num) {
this.gotoAndPlay("s2");
}
}
on (release) {
if (_root.link<>num and _root.animation == 1) {
_root.animation = 0;
_root.link_prev = _root.link;
_parent["item"+_root.link].gotoAndPlay("s2");
_root.link = num;
_root.play();
_root.anim.gotoAndPlay("s1");
loadMovie("London Strip.swf",_root.London);
}
}

It doesn't show the movie clip.
 
Back
Top