Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help Please

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am working on a presentation and I want to know how to let the user navigate through the page using only the spacebar. Any help would be appreciated
 
Assuming you want your visitor to goto the next frame or next scene, use the following in a MovieClip.

onClipEvent(keyDown) {
if (key.getCode() == 32) {
nextFrame();
//or gotoAndPlay ("Scene 2", 1);
}
}
}

You can also use the "on(keyPress)" event in a frame. eSearing.com
a work in progress
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top