PDA

View Full Version : Navigating through instances


nicolle.g
04-19-2007, 05:03 PM
Hi there...I was hoping someone could help me with something that is probably very simple...I just can't figure it out exactly.

Here's the senario...

I have a drop down menu, and it is an instance of an instance...

I need to navigate from each of the btns of the drop down and direct it to a specific frame name on a different movie clip. I was reading through the threads, and I couldn't seem to find this exactly...

Can someone help me with the AS? thanks
Nicolle

atomic
04-19-2007, 05:09 PM
Is that targeted movie clip present on stage on the same frame as the dropdown?

If so, this should work...

on(release){
// Absolute path...
_level0.targeted_mc.gotoAndStop(X); // X = frame number
}

Otherwise attach your .fla.