goto frame then jumpto scene

This is a discussion on "goto frame then jumpto scene" within the Flash & Multimedia Forum section. This forum, and the thread "goto frame then jumpto scene are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 15th, 2007, 12:45
Junior Member
Join Date: May 2005
Location: Asia
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to tigas langaw
goto frame then jumpto scene

please help.
I would like to give a button an action to continue playing the current scene and then when it reaches a specified frame to jump to another scene.

i.e. if scene1 is stoped on frame 10, clicking button1 will move the playhead on to frame 20 and then jump to scene 2...

button2 to scene 3, button3 to scene 4 etc.

Thanks in advance,

  #2 (permalink)  
Old Jul 17th, 2007, 13:36
Junior Member
Join Date: Jul 2007
Location: England
Age: 24
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Re: goto frame then jumpto scene

You want to do something like this?

www.xyis.net/help/jump.html
  #3 (permalink)  
Old Jul 18th, 2007, 02:22
Junior Member
Join Date: Jul 2007
Location: Malaysia
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Re: goto frame then jumpto scene

You can try to put the code below on the button1
Code: Select all
on (release) {play();
}
After that put this at the frame 20
Code: Select all
nextFrame();
or this, if you have put a name for your scene 2 (eg:hello)
Code: Select all
gotoAndPlay("hello", 1);
// 1 means "hello" scene, frame 1
*remember to put stop command to each scene, if not, it will keep playing...

Hope this will help you.

Last edited by Learner; Jul 18th, 2007 at 02:25.
  #4 (permalink)  
Old Jul 18th, 2007, 02:28
Junior Member
Join Date: May 2005
Location: Asia
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to tigas langaw
Re: goto frame then jumpto scene

thanks everyone
  #5 (permalink)  
Old Jul 18th, 2007, 02:39
Junior Member
Join Date: Jul 2007
Location: Malaysia
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Re: goto frame then jumpto scene

You're welcome. So is it work?
  #6 (permalink)  
Old Jul 18th, 2007, 14:41
Junior Member
Join Date: May 2005
Location: Asia
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to tigas langaw
Re: goto frame then jumpto scene

the concept was made clear, thank you. All i have to do now is add the telltarget or the _root since my button is inside a movieclip, anyways, thanks again and goodluck to our career and life
Closed Thread

Tags
scene

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
EASY PEASY Displaying frame address in another frame question molotov JavaScript Forum 3 Nov 20th, 2007 17:29
Scene Loop again monkeygraphik Flash & Multimedia Forum 0 Sep 25th, 2007 09:11
Scene loop monkeygraphik Flash & Multimedia Forum 2 Sep 23rd, 2007 17:56
Goto - midframe button problems Toby1979 Flash & Multimedia Forum 25 Sep 11th, 2007 21:21
goTo Top Button berjoe Webforumz Suggestions and Feedback 3 Oct 19th, 2006 16:02


All times are GMT. The time now is 20:12.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43