All I want is for when any key is hit on the keyboard, root plays the next frame.
there has to be a way.
Printable View
All I want is for when any key is hit on the keyboard, root plays the next frame.
there has to be a way.
code:
stop();
_root.onKeyDown = function()
{
this.nextFrame();
}
Key.addListener(_root);
WOW that was quick !
Thanks Jim
Man...I did everything you said to on the menu thing and it still choppy....
do PNGs slow things down like gradients?
I cant for the life of me figger it out
PNGs slow things down, yes. Specially if they contain an alpha channel. If doesn't contain alpha, you might want to flatten it or try converting it to JPEG.
cause there is no vector.......I made everything in PS and it has alpha......thats gotta be the reason.
Thanks Jim