PDA

View Full Version : Newbie Question



NeoDreamer
July 29th, 2003, 01:47 AM
An MC called "inside" is inside an MC called "top". "inside" has a 'stop();' on its first frame. From a frame on the main timeline, how can I tell "inside" to play? I tried "inside.top.play();" and I got some error messages.

Yeldarb
July 29th, 2003, 01:49 AM
_root.top.inside._play();

NeoDreamer
July 29th, 2003, 01:51 AM
It didn't work

Voetsjoeba
July 29th, 2003, 02:33 AM
_root.top.inside.play(); ;)

Neo-Geo
July 29th, 2003, 03:55 AM
there you go.
'inside' will be play if you press it

if you want it to automatically play when your movie start,
change the AS in the main time line to


_root.top.inside.onEnterFrame = play;


hope this is what you ask