Hello. I want to make it that when you press down the enter/return key, the flash movie will advance to another frame. However, I'm not sure how to script this correctly. What script code do I use, and where do I put it?
Thank you for your help!
Printable View
Hello. I want to make it that when you press down the enter/return key, the flash movie will advance to another frame. However, I'm not sure how to script this correctly. What script code do I use, and where do I put it?
Thank you for your help!
Sorry to double post, but I've been waiting for a while and I need an answer as soon as possible. Thanks!
i would make a MC, and place the following script on it.
thats a very very basic way of doing it.Code:on (keyPress "<Enter>") {
_root.next();
}
I tried that, but it didn't work.
Sorry to double post, but it's been 10 days, and I need a working answer as soon as possible. Thank you.
aut.Code:onEnterFrame = function () {
if (Key.isDown(key.ENTER)) {
gotoAndStop("framelabel");
}
};
Thank you very much!