我是 Flex 和 Flash Builder 的新手,很抱歉提出愚蠢的问题 :)。
我想做的是一个Android应用程序。时钟,图像每 20 分钟旋转一次。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
<fx:Declarations>
<s:Rotate3D
id="rotateEffect"
target="{clock}"
angleZFrom="0"
angleZTo="360"
repeatCount="999999999"
duration="1200000"
autoCenterTransform="true"
/>
</fx:Declarations>
<s:actionContent>
<s:Button click="NativeApplication.nativeApplication.exit()" icon="assets/appi_11.png"
styleName="title"/>
</s:actionContent>
<s:Image id="clock" horizontalCenter="0" source="assets/rotateMe.png" verticalCenter="0" click="rotateEffect.play()"/>
</s:View>
问题是,存在某种缓动行为,并且旋转速度不是恒定的。
有什么办法可以解决吗?