nauds
1
Basicallly, Im loading a .swf which contains clips that have buttons inside them that bring up different pictures using tell target.
When I test the movie within itself its fine, but when I test it by using load movie none of the targetting works.
I dont get this =(
system
2
system
3
all that did was make the button dissapear completely
system
6
i cant attach the rest because they are too big
system
7
[AS]loadMovie(“yourmovie.swf”,_root.contents1); // you forgot the quotes[/AS]
system
8
You attached a fla called main1.
It has three buttons on the right: Pre-Press, Web and Imaging.
I noticed in your Pre-Press button you had:
on (release) {
loadMovie(print.swf, _root.contents1);
}
I would change that to:
on (release) {
_root.contents1.loadMovie(“print.swf”);
}
Your other two buttons refer to a frame in a scene called ‘Main’. This scene doesnt exist in your fla. The only scene you have is called ‘Scene 1’.
I couldnt find what you were talking about above to help you out, sorry.
Regards,
Viru.
system
9
ok, everything loads fine with your code… but the 3rd swf’s buttons still dont work
system
10
Whats your code for those buttons and what are you trying to do with them?
Regards,
V.
system
11
im gonna upload all 3 .fla’s so you can check them out
system
13
system
14
also viru, I know the web and imaging buttons arent set up only the prepress one at the moment
just trying to figure all this out before i set up the rest of the buttons
system
15
Ok, that makes sense now. : ) Be back in a tick…
system
16
Which button loads the advertisements.swf into the main1.swf?
system
18
it goes main > print > advertisements
system
20
Just working your actions to play and stop the advert movie clips that fly in and out.
I’ve got an idea, it’ll take a bit longer cos of your setup, bare with me.
V.