Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using MXML to declaratively create composite animation effects within a Flex-based application. The targets and durations of the effects will be set at runtime. I don't use the Effect.play() method, but instead set the playheadTime property repeatedly with varying, usually sequential, values.

The Problem: Sometimes, seeking with large jumps does not result in the appropriate state of the target objects. That is, some effects do not appear to perform their forward (or reverse, more typically) transformation of the target object(s). Other times, the transformation is incomplete.

Problem Demonstration:

<?xml version="1.0" encoding="utf-8"?>
<s:Application
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    backgroundColor="#eeeeff"
>
    <fx:Declarations>
        <s:Sequence id="mainEffect" duration="2000">
            <s:Pause/>
            <s:Move xFrom="10" xTo="210" target="{rect}"/>
            <s:Pause/>
            <s:Fade alphaFrom="1" alphaTo="0.1" target="{rect}"/>
        </s:Sequence>
    </fx:Declarations>

    <s:Rect height="120" width="120"><s:fill><s:SolidColor color="#00ff00"/></s:fill></s:Rect>
    <s:Rect height="120" width="120" x="200"><s:fill><s:SolidColor  color="#00ff00"/></s:fill></s:Rect>

    <s:Rect id="rect" height="100" width="100" y="10" x="10">
        <s:fill><s:SolidColor/></s:fill>
    </s:Rect>

    <s:HSlider id="slider"
        minimum="0" maximum="10" stepSize="0"
        x="10" y="130" width="300"
        valueCommit="label.text = 'latest value: ' + int(mainEffect.playheadTime = slider.value * 1000) + ' ms'"
    />

    <!-- markers for "timeline" reference (indicating which effect is "active") -->
    <s:Rect height="10" width="10" alpha="0.3" x="{slider.x + slider.width * 0.2}" y="{slider.y + 10}" rotation="45"><s:fill><s:SolidColor color="#00ff00"/></s:fill></s:Rect>
    <s:Rect height="10" width="10" alpha="0.3" x="{slider.x + slider.width * 0.4}" y="{slider.y + 10}" rotation="45"><s:fill><s:SolidColor color="#00ff00"/></s:fill></s:Rect>
    <s:Rect height="10" width="10" alpha="0.3" x="{slider.x + slider.width * 0.6}" y="{slider.y + 10}" rotation="45"><s:fill><s:SolidColor color="#00ff00"/></s:fill></s:Rect>
    <s:Rect height="10" width="10" alpha="0.3" x="{slider.x + slider.width * 0.8}" y="{slider.y + 10}" rotation="45"><s:fill><s:SolidColor color="#00ff00"/></s:fill></s:Rect>

    <s:Label id="label" x="10" y="160"/>
</s:Application>

Valid begin and end states:
http://i.stack.imgur.com/6IpPP.png

Invalid state:
http://i.stack.imgur.com/eL1I1.png

Note the Slider scrubber/timeline position and diamond "markers". No transformation should occur before the first marker, after the last marker, or between the second and third markers.

I don't have a surefire way to create an invalid state, but clicking in the track at one of the extreme ends seems the most reliable means of recreating the problem.

Background: I am creating a presentation rendering application that takes XML data and produces animated "slides" (think PowerPoint) from it. For example, I want to have a sequence of images fading in at specific times relative to audio being played. This sequence can be accomplished easily with Adobe Flash Professional, resulting in a SWF, but I want to create Flex-based code that allows for data-driven timing and image source identification. The technique of setting the playheadTime on the Effect seemed to get me what I wanted. I can stream audio (which broadcasts time events) perfectly in synch with the animation. I can also allows the user to seek/scrub the "timeline" (via a Slider) and the animation behaves as if it has a true timeline based on key frames. The technique works almost, so I hope there is a simple solution to my problem.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.