# State transition problem. moving a object from bottom to top

**URL:** https://forum.kirupa.com/t/state-transition-problem-moving-a-object-from-bottom-to-top/324678
**Category:** Uncategorized
**Created:** [September 2, 2011, 7:06pm UTC](https://forum.kirupa.com/t/state-transition-problem-moving-a-object-from-bottom-to-top/324678 "2011-09-02T19:06:33Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![leohung](https://avatars.discourse-cdn.com/v4/letter/l/96bed5/32.png) [@leohung](https://forum.kirupa.com/u/leohung)
#### Post date: [September 2, 2011, 7:06pm UTC](https://forum.kirupa.com/t/state-transition-problem-moving-a-object-from-bottom-to-top/324678/1 "2011-09-02T19:06:33Z")

</div>

I want to move my logo from bottom to top when the user click “Enter” button  
in default state. I set my logo bottom=“20”

after the user click “enter” button. I want my logo move to top=“20”

But I found the logo didn’t have move up transition. It just goto top instantly.

I thought this is easy task. Would somebody tell me the trick?

Thanks a lot!!!

Here is my code:

```
&lt;s:states&gt;
    &lt;s:State name="homeScreen" /&gt;
    &lt;s:State name="contentScreen" /&gt;
&lt;/s:states&gt;
&lt;s:transitions&gt;
    &lt;s:Transition toState="contentScreen"&gt;
        &lt;s:Parallel&gt;
            &lt;s:Move target="{UIwebLogo}" /&gt;
        &lt;/s:Parallel&gt;
        
    &lt;/s:Transition&gt;
&lt;/s:transitions&gt;

```

\<local:webLogo id=“UIwebLogo” left=“50” bottom.homeScreen=“20” top.contentScreen=“20”/\>
