Hi
i want a panel to slide in from the bottom of the screen, this is my first
animation and i just missing something
code that drives the effect
private function clickShowBottomMenu():void{
if(currentState == "bottomSlideIn"){
currentState = "noShow"
}else{
currentState = "bottomSlideIn";
}
}
<s:transitions >
<mx:Transition fromState="*" toState="bottomSlideIn">
<s:Move startDelay="300" duration="1000" />
</mx:Transition>
</s:transitions>
<homebuttonbars:BottomButtons2 id="BottomMenu" bottom.noShow="-600"
bottom.bottomSlideIn="0" />