I'm making a site with flex, which is all well and good, but I have run into this problem when using the tag:
I have this block that very nicely animates a viewstack, which is called every time a button on the corresponding button bar is pressed. It works famously, and it is not with this that I have an issue.
<s:Animate
id="theAnim"
target="{viewstack1}"
duration="1000">
<s:SimpleMotionPath
property="alpha"
valueFrom="0"
valueTo="1"/>
<s:SimpleMotionPath
property="horizontalCenter"
valueFrom="{-viewstack1.height}"
valueTo="0"/>
<s:SimpleMotionPath
property="rotationY"
valueFrom="-45"
valueTo="0" />
<s:SimpleMotionPath
property="scaleX"
valueFrom="1.5"
valueTo="1" />
<s:SimpleMotionPath
property="scaleY"
valueFrom="1.5"
valueTo="1" />
</s:Animate>
The problem arises when I have the following code on a completely different page altogether:
<s:Animate
id="theAnim2"
target="{theBasePageNavigator}"
duration="1000" >
<s:SimpleMotionPath
property="alpha"
valueFrom="0"
valueTo="1"/>
<s:SimpleMotionPath
property="horizontalCenter"
valueFrom="{ - stage.stageHeight}"
valueTo="0"/>
</s:Animate>
For some reason both blocks of code effect the same page, and by this I mean when I click on the tab navigator on the base page (or rather, the base container) nothing happens, but when I get to the tab that contains the first block of code and click on the button bar the effects of BOTH animations occur, meaning it looks messed up because it's trying to do too much!
Any ideas why this would occur?
Thanks!