Transition Effect

Hello :slight_smile:

I want to make three “pages” in flash. The user can click a button to navigate through the example i want to make.

The buttons, for simplicities sake, are ONE, TWO, THREE.

What i want to be able to do is have a transition between the pages, where content boxes reshape depending on the page.

I have thought about how to do this, and i thought I could have a movie sequence for tranisition between ONE and TWO, ONE and THREE, TWO and THREE, TWO and ONE, THREE and ONE and THREE and TWO.

I thought i could define a variable

page=1;

and

new=1;

initially, as the swf starts looking at ONE, and then when the user clicks TWO or THREE, it would firstly set :

new=2; 

and then:

gotoAndPlay(page+new);

where page is a frame label, e.g. if the user clicks TWO when

page=1; 

then

new=2;

, and the moviejumps to frame label 12 and the page variable becomes equal to 2…

Any idea how to do this? I think the problem lies in my coding for the “gotoAndPlay(page+new)”

Sorry for the length of this post!

andy xx