PDA

View Full Version : Problem with levels


titeuf
05-28-2006, 06:07 AM
I have a basic question

I have made a display movie clip called display_mc that contains several movie clips.

To include one movie, I use the following Code.

this.display_mc.attachMovie("circle", "circle1_mc", 15)

How can I target the movie attached circle1_mc?

by using levels ? Does _level15 works ?

or by using display_mc.circle1_mc ?


Thanks for your help.

Titeuf

Cota
05-28-2006, 03:33 PM
try:

this.display_mc.circle1_mc.gotoAndPlay()

How does that work for you..