We have been using 2.4 for a long time. I'm trying to update our project to the 3.4 API, and we have some animations that have stopped working. Here's an example:<esri:GraphicsLayer id="mapGraphicsLayer"> <esri:Graphic id="myGraphic" symbol="{locaterSymbol}" toolTip="Current Location" scaleX="1" scaleY="1" alpha="0"> <esri:geometry> <esri:MapPoint id="myGraphicMapPoint" x="{lon}" y="{lat}" spatialReference="{spatialRef}"/> </esri:geometry> </esri:Graphic> </esri:GraphicsLayer>... inside Declarations:<esri:CompositeSymbol id="locaterSymbol"> <esri:SimpleMarkerSymbol id="blueDot" color="#6694D0" size="10" style="circle" > <esri:SimpleLineSymbol color="#FFFFFF" width="2"/> </esri:SimpleMarkerSymbol> <esri:SimpleMarkerSymbol id="blueRingCircle" alpha="0" size="7" style="circle"> <esri:SimpleLineSymbol id="blueRingLine" color="#FFFFFF" width="2"/> </esri:SimpleMarkerSymbol> </esri:CompositeSymbol>
Animation - runs on a 1s timer (using Tweener library):blueRingCircle.size = 8; blueRingLine.alpha = 1; Tweener.addTween(blueRingCircle, {size: 60, time: 24, transition: "easeOutQuad", useFrames: true}); Tweener.addTween(blueRingLine, {alpha: 0, time: 24, transition: "easeOutQuad", useFrames: true});This animation used to work fine with the 2.4 API, now with 3.4 it doesn't seem to do anything. If I zoom/pan the map I can see it being drawn in various different stages of the animation, but when the map is static it doesn't seem to be redrawing to pick up the animated frames. Any suggestions? Thanks.