# \[FMX\] go to frame on pressing a key sequence

**URL:** https://forum.kirupa.com/t/fmx-go-to-frame-on-pressing-a-key-sequence/123361
**Category:** Uncategorized
**Created:** [September 22, 2004, 11:46pm UTC](https://forum.kirupa.com/t/fmx-go-to-frame-on-pressing-a-key-sequence/123361 "2004-09-22T23:46:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![frozenRage](https://avatars.discourse-cdn.com/v4/letter/f/edb3f5/32.png) [@frozenRage](https://forum.kirupa.com/u/frozenRage)
#### Post date: [September 22, 2004, 11:46pm UTC](https://forum.kirupa.com/t/fmx-go-to-frame-on-pressing-a-key-sequence/123361/1 "2004-09-22T23:46:26Z")

</div>

can anyone tell me how you would press say three keys at once and be taken to a specific frame?

thats the best i can do and it doesn’t quite work, one in ten trys it works so im utterly confused

onClipEvent (enterFrame) {  
if (Key.isDown(74)) {  
if (Key.isDown(77)) {  
if (Key.isDown(70)) {  
trace(“test”);  
}  
}  
}  
}

anyway, thanx to anyone who can help
