Jump to content
Search Community

alin.besnea

Members
  • Posts

    2
  • Joined

  • Last visited

alin.besnea's Achievements

0

Reputation

  1. Hi berilac, First of all thanks for your response. The actual code is more complex, but I've tried to replicate the methods used and flow of the actual application. This is why I've added the calls for "addInitialTweens()" and "onInitialTweenComplete()". Same for "appendMultiple()" - in the actual project there are multiple tweens that are added at that point. As for using Tracer to "slow-down" the application: this was the easiest way to reproduce the issue, but the same thing has happened even if the Tracer wasn't running, or if the antivirus performed a scan, or even if I was in debug mode (I'm using FlashDevelop IDE). From what I could figure out, the issue only appears if the first tween takes more to complete than the updated total expected duration of the timeline (the value for this is 0.5 seconds - the sum of the durations for the two tweens). If this happens the renderTime method takes a different flow, as described in the first post. Also the fact that I'm adding the second tween when the totalProgress of the timeline is already set to 1, may have something to do with it (although the value of totalProgress is updated after "appendMultiple()" call). I'll post another message as soon as I make any progress. Alin.
  2. Hello, I have some problems appending a tween, at the end of the timeline. This issue appears only after some heavy calculations take place. In order to simulate this I used the Tracer plugin for Firefox, and added a lot of traces. As you can see in the code below, I have a timeline with two tweens. The initial tween is added immediately after the timeline is created, while the second tween is added after the first one is complete. If a lot of traces are displayed in the Tracer plugin, the second animation dosen't play. In the example below, the red rectangle should first move horizontally to x = 450, and, after that, move vertically to y=450. When the issue appears, the second animation is not played. I've tried to use the debugger and see what happens, and, as far as I can tell, the problem appears in TimelineMax::renderTime method, in the first call after the second tween is appened. The _rawPrevTime variable does not seem to be updated after the second tween is added, and its value is grater than the value of totalDur, failing the following if clause: if (_rawPrevTime <= totalDur && _rawPrevTime != time). Going further down the execution path, the cachedTotalDuration of the timeline doesn't seem to be updated as well (cachedTotalDuration is still 0.25, rather than 0.5), providing an early quit for the method. This happens in the following if clause: if (this.cachedTotalTime == prevTotalTime && !force). Is is something that I am doing wrong, or is it a Timeline issue? Does anyone have a workarround, maybe? I know it's kind of a strange way to test this by using traces, but on a low performance machine, this issue could appear without those traces. Here is the sample code: <?xml version="1.0" encoding="utf-8"?> xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:local="*" frameRate="60" initialize="init()" width="800" height="600">
×
×
  • Create New...