Buttons within other movies?

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 =(

Read this:
http://www.kirupaforum.com/forums/showthread.php?s=&threadid=27808&highlight=path

all that did was make the button dissapear completely

Can you post your fla?

main

i cant attach the rest because they are too big

[AS]loadMovie(“yourmovie.swf”,_root.contents1); // you forgot the quotes[/AS]

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.

ok, everything loads fine with your code… but the 3rd swf’s buttons still dont work

Whats your code for those buttons and what are you trying to do with them?

Regards,
V.

im gonna upload all 3 .fla’s so you can check them out

ok

http://www.rigneygraphics.com/jesse/zipped.zip

there they are

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

Ok, that makes sense now. : ) Be back in a tick…

Which button loads the advertisements.swf into the main1.swf?

oh wait, sorry.

it goes main > print > advertisements

any ideas?

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.