PDA

View Full Version : Links all went wrong


tianyu84
04-16-2002, 12:51 AM
I am now trying to make a flash site but when I tried to link some of the buttons from one scene to another, the link always goes to, the wrong place, although the actions part is alright. I want to link from Portfolio frame 46 to Portfolio from 20. But it always turn out to be Main Menu frame 1.

Here's how I link:
on (release) {
gotoandPlay ("portfolio", 20);
}

Some other link are ok, but some just went crazy... Please help!

JHallam
04-16-2002, 01:06 AM
you can't do it this way

Follow these steps;

1. click frame "20" on the frame panel, label it something, like "frame20"

2. on the button on 46, make sure there is a stop() and then this action on the button.

on (release) {
gotoAndStop (frame20);//or change to gotoAndPlay
}


Then this will work :D

Thanks