# turn on..........................NOW!

**URL:** https://forum.kirupa.com/t/turn-on-now/6917
**Category:** Uncategorized
**Created:** [October 19, 2002, 11:10pm UTC](https://forum.kirupa.com/t/turn-on-now/6917 "2002-10-19T23:10:11Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Webpest\_Gold](https://avatars.discourse-cdn.com/v4/letter/w/96bed5/32.png) [@Webpest\_Gold](https://forum.kirupa.com/u/Webpest_Gold)
#### Post date: [October 19, 2002, 11:10pm UTC](https://forum.kirupa.com/t/turn-on-now/6917/1 "2002-10-19T23:10:11Z")

</div>

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”

😛 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!??!!

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [October 20, 2002, 12:56am UTC](https://forum.kirupa.com/t/turn-on-now/6917/2 "2002-10-20T00:56:04Z")

</div>

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:

```auto

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:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [October 20, 2002, 12:59am UTC](https://forum.kirupa.com/t/turn-on-now/6917/3 "2002-10-20T00:59:41Z")

</div>

THANK YOU SO MUCH!!!🙂

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [October 20, 2002, 1:00am UTC](https://forum.kirupa.com/t/turn-on-now/6917/4 "2002-10-20T01:00:59Z")

</div>

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](http://flex.funkyolive.com/test/dudesprite.html)

-brad-:cowboy:
