PDA

View Full Version : Scenes mess.


hayored
12-21-2002, 02:16 AM
Hi,

I have an application with one scene and one frame for a few layers. It is working, but I decided to add a new scene, to show it in some condition.
After I added a new scene the application is not working - it flashes the first and the second scene togather.
In the ActionScript the last command for the first scene is gotoAndPlay(1), so why I see the second scene?

Thanks,

YH

Billy T
12-21-2002, 02:35 AM
scenes cause problems and do unexpected things

if your first scene just has one frame then just add a stop() action

also, use frame labels instead of frame numbers when using goto's

cheers

binkyboo
12-21-2002, 02:36 AM
gotoAndPlay("Scene 1", 1);

hayored
12-21-2002, 03:51 AM
Originally posted by Billy T
scenes cause problems and do unexpected things

if your first scene just has one frame then just add a stop() action

also, use frame labels instead of frame numbers when using goto's

cheers

Thanks,

stop() helped.

YH