00:00
00:00
Newgrounds Background Image Theme

Kerzid just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

how do i make a next button in text

747 Views | 7 Replies
New Topic Respond to this Topic

I reallly want to know how do i make a next button in text bassed movies?

Response to how do i make a next button in text 2006-08-31 11:00:46


Your make a black square and right next in it. Convert it to a movie clip and make it a button. Then in the actions write

on(release){
_root.gotoAndPlay(YOURFRAMENUMBER)
}

But replace your frame number here with the frame you want to go to.


BBS Signature

Response to how do i make a next button in text 2006-08-31 11:04:56


Ask questions about Flash in the Flash forum.

Make the button, convert it to a button(Modify>Convert to Symbol(F8), select button), then with the button selected, open up the actionscript panel(Window>Actions(F9)) and give it the code below, replacing the question mark with the frame number you want it to go to.

on (release)
{
gotoAndPlay(frame number here);
}

Response to how do i make a next button in text 2006-08-31 11:16:26


thanks

Response to how do i make a next button in text 2006-08-31 11:27:33


At 8/31/06 11:16 AM, poopcrap9 wrote: thanks

sorry for double post but i have a problem now it makes the button but it just gose to it with out me clicking the button

Response to how do i make a next button in text 2006-08-31 11:33:29


At 8/31/06 11:27 AM, poopcrap9 wrote: sorry for double post but i have a problem now it makes the button but it just gose to it with out me clicking the button

In the frame containing button, in the actionscript panel, insert the code below:

stop();

Response to how do i make a next button in text 2006-08-31 11:47:13


At 8/31/06 11:00 AM, blackplastic wrote: Your make a black square and right next in it. Convert it to a movie clip and make it a button. Then in the actions write

on(release){
_root.gotoAndPlay(YOURFRAMENUMBER)
}

But replace your frame number here with the frame you want to go to.

I don't think you need the _root. thing

Response to how do i make a next button in text 2006-08-31 12:12:31


At 8/31/06 11:27 AM, poopcrap9 wrote:
At 8/31/06 11:16 AM, poopcrap9 wrote: thanks
sorry for double post but i have a problem now it makes the button but it just gose to it with out me clicking the button

Put stop() on all frames not animated.


BBS Signature