PDA

Click to See Complete Forum and Search --> : help. desperate flash problem!!!


lokki
11-28-2006, 02:58 PM
Hi.

I have a flash project on the go at the moment and the deadline is looming quickly.

I have imported a scrolling button bar into my main movie (scene 1). This was originally a seperate movie. The scrolling aspect works fine but I cant get the buttons to navigate to the correct frames.

I have labelled the relevant frames and all the buttons' script have the correct relevant names in.

The buttons rollover fine and scroll perfectly but just wont got to the correct frame in scene 1.

For example the first button should go to the frame labelled 'abigail williams' within scene 1. Abigail Williams frame has a 'stop' action on it and contains a movie. ...

on (release) {

gotoAndStop("Scene 1", "abigail williams");

}



The thing is that nothing happens when the button is clicked! Its rolls over fine but wont do anything!!!!! Its driving me mental

thanks!!!

lokki
11-28-2006, 03:59 PM
i know that it is a problem with the button in movie 2 having to navigate to a point in movie 1 .. (scene 1)

its a nightmare

DesignerScott
11-28-2006, 04:25 PM
ahhhh!
9 out of 10 flash questions seem to be about scenes.
SCENES ARE THE DEVIL.
and since I have little experience with them, have you tried just:
on (release){
gotoAndStop("abigail williams");
}

?