The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.39 / 5.00 38,635 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.09 / 5.00 15,161 ViewsIn my game i want it so taht when the speech is over , text comes at the top saying press space to continue so i used this code.
on (keyPress "<Space>",
gotoAndPlay(Frame2);
}
i know its wrong because it says
"**Error** Scene=Scene 1, layer=Layer 14, frame=1:Line 2: Invalid mouse event specified.
gotoAndPlay(Frame2);"
So i kinda need help :P any ideas id be thankfull.
Darkaxl/
At 9/17/05 12:11 PM, Darkaxl wrote: on (keyPress "<Space>",
gotoAndPlay(Frame2);
}
on (keyPress "<Space>"){
gotoAndPlay(2);
}
on (keyPress "<Space>") {
_root.gotoAndPlay(Frame2);
}
Sup, bitches :)