could some please guide me in the right direction please.
I have searched the site but unable to find so i'm sorry if this is rather a simple problem which i believe it is...
I have a swf (web) that has individual MCs on each frame of this swf that loads into a swf container..
As a navigation device for each MC(mb) (residing within this loaded swf (web)). i have a flyout menu that i want to hide away and show only when a user rolls over (rhs) an invisible button (this is in an MC also).
I have all this working well when rolling over and rolling out but
I'm tearing my hair out trying to move to the next frame of the MC(mb).
below is the code i have on the button but it wont work...
Are you trying to target the Movie Clips that are inside the movie being loaded? If that's it then you need to call them by Framelable or Instance name,
that was what i needed. though i have just tried this and it is not working?!!!damn...
this is the code i have used residing in the MC with the button with the attached code.
////////////////
on (release) {
_level1.mbMc.gotoAndStop ("mb02");
}
///////////
is level1 being the swf file loaded yes? I know that _root is the main time line so i under this. just a bit confused with loaded MC's and talking to each MC.
One other question is i also then want to slide the menu away once pressed.. can this be added to this code as well because i cant get the 2 functions to work properly..
you were right, well i thought level 1 could be used to talk between MCs but this didn't work but got me on the right track. so i read into paths.. found that _parent should work. it didn't work either though it should of...
As my MC (external swf) is the parent of my child swf (menu flyout).
_root(is the main swf). load is my instance on the stage to load in external swf. and mbMC is my MC holding the slide show..