私は 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>
問題は、ある種の緩和動作があり、回転速度が一定でないことです。
それを修正する方法はありますか?