PDA

View Full Version : turn on..........................NOW!



Webpest_Gold
October 19th, 2002, 07:10 PM
I am making a game and in this game you make this guy walk. But when he makes it to a certain point (in my case it is a computer) I want text to come up and say "Press The Up Arrow button to access the computer"

:P Confusing:q: :q: ...I know...


Another thing I want to be able to do is. When you move with the arrow his legs will move like someone is walking, but when you let go I want him to stop walking?!?!?! how!??!!

bcogswell11
October 19th, 2002, 08:56 PM
The first one is easy. Make the text a new movieclip. On the 2nd frame of this movieclip put the text. The first frame will be completely blank with a stop(); action applied to it. Then, on the main scene on an actions layer:



if (_root.nameofmanmc._x > _root.nameofcomputerm._x) {
_root.nameoftextmx.gotoAndStop(2);
}


This should work, it's a very simple way to do it.

For your second question, Flex had a post in a different section about this. I'll see if I can find it.

-brad-:cowboy:

Webpest_Gold
October 19th, 2002, 08:59 PM
THANK YOU SO MUCH!!!!!!!!!:)

bcogswell11
October 19th, 2002, 09:00 PM
Here is this also:

Flex used an animated gif with 6 animations for running. It looks like this:

http://flex.funkyolive.com/test/dudesprite.html

-brad-:cowboy: