any key press to go to next frame

This is a discussion on "any key press to go to next frame" within the Flash & Multimedia Forum section. This forum, and the thread "any key press to go to next frame are both part of the Design Your Website category.



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

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 20th, 2008, 08:25
Junior Member
Join Date: Sep 2005
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
any key press to go to next frame

Hi, does anyone know how to make a stopped movie move on to the next frame with any key press without having a button
Reply With Quote

  #2 (permalink)  
Old Feb 20th, 2008, 17:57
Reputable Member
Join Date: Aug 2007
Location: netherlands
Posts: 107
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to ahwell Send a message via Yahoo to ahwell
Re: any key press to go to next frame

you can make an invisible button,place it anywhere off the stage and put this AS on it:
Code: Select all
on(keyPress "<Space>"){gotoAndPlay("framename");}
this uses the spacebar
Reply With Quote
  #3 (permalink)  
Old Feb 25th, 2008, 13:51
New Member
Join Date: Feb 2008
Location: Malaysia
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to zekechan Send a message via Yahoo to zekechan
Re: any key press to go to next frame

Here's how you do it. Add the script below to a keyframe:

var keyListener:Object = {};
keyListener.onKeyDown = function () {
nextFrame ();
}

Key.addListener( keyListener );

I'm assuming that this works only once? So if thats the case, you must remove the key listener object after the movie has gone to the next frame. See the script below:


var keyListener:Object = {};
keyListener.onKeyDown = function () {
nextFrame ();
Key.removeListener ( keyListener );
}

Key.addListener( keyListener );

Try it out.
Reply With Quote
Reply

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
word press sarwan Starting Out 2 Apr 22nd, 2008 15:43
Personja Press. What do you think? TheSealPortalTeam Website Planning 7 Mar 7th, 2008 15:29
Asiana Press Agency shepseskaf Free Web Site Critique 1 Jan 2nd, 2008 08:34
EASY PEASY Displaying frame address in another frame question molotov JavaScript Forum 3 Nov 20th, 2007 17:29
[SOLVED] Word Press Issues Jack Franklin Scripts and Online Services 8 Oct 5th, 2007 06:18


All times are GMT. The time now is 01:59.


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