Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
bunny5619 #1
Trying to make simple game
I'm trying to make a simple game, and i would like to make it so that when you press an arrow key (let's say the left) he goes left, but I don't know the code for it. Can anyone help me?
bunny5619 Guest
-
First 3D game, some simple questions....
Hi guys, This is my first post on these forums, so i hope you can help. I'm sorry for the novel sized post, but i really really could do with... -
Newbie : How to make a Simple Multiplayer Flash Game
Hello All, I would like to learn and make multiplayer games using flash. I am a newbie to this, so i would really appreciate someone guiding and... -
Simple 3d game
Hello all, I am trying to make a simple game in Director & 3d Max. A "marble blast" (marble madness) style game. Where a simple sphere goes arround... -
to make the game better
http://www.geocities.com/hunter_x_hunter2004/pong.swf[/L check that game out. how do u think i can make it better how do i make the ball stop... -
SIMPLE GAME
ok im making a simple card game. you move the cards that are located like this -is a card. the card is then dragged to anywhere... -
kglad #2
Re: Trying to make simple game
myListener = new Object();
myListener.onKeyDown = function() {
if (Key.isDown(Key.RIGHT)) {
yourMC._x += 3;
} else if (Key.isDown(Key.DOWN)) {
yourMC._y += 3;
}
};
Key.addListener(myListener);
kglad Guest
-
mercl #3
Re: Trying to make simple game
How the heel can i submit my own message on this site ???
mercl Guest
-
kglad #4
Re: Trying to make simple game
there are a few differences. one, is the path MypasswordsObj.myPassword which
you appear to understand. a second is that all loaded variables are strings,
which shouldn't cause any problem for you. and a third is the time when
MypasswordsObj.myPassword is available. because loading takes much more time
than executing a variable assignment, you have to be careful to wait until
loading is completed before trying to use a variable you expect to be loaded.
this may be your problem, but i can't tell.
kglad Guest



Reply With Quote

