<para>Hi
There appears somethin not right with setting the "ActiveFrame" or "ActiveFrameIndex".
I have several tiles with Frames on them which are hooked up to a 30 second timer and when the timer is
triggered it starts or stops the animations with the code below (for a nice effect and also so a user can disable anim).
However, I want the Frame to reset to Frame[0] when the animation stop is triggered, but it seems to make no difference
when I assign the ActiveFrame or ActiveFrameIndex to 0 as when it stops it seems dependant on the AnimationInterval
to stop where it feels like…
I believe this code should work, yet it doesnt…
You can see i have "remmed" out some lines which I have tried, but still nothin appears to set the Frame to 0…
Hope this makes sense…
>>>> clip >>>>
procedure <MyForm>.SetAnimations(DoEnable:Boolean);
var I:Integer;
begin fAnimationsStarted:= DoEnable;
with dxTile do begin
try BeginUpdate;
if DoEnable then
Controller.StartFramesAnimation
else begin
for I:= 0 to Items.Count-1 do begin
if Items[I].Frames.Count> 0 then begin
// Items[I].ActiveFrame:= Items[I].Frames[0]; // try this way ???
Items[I].ActiveFrameIndex:= 1;
// showmessage(items[i].Name+#13+items[i].frames[0].name);
// Items[I].Glyph.Image:= Items[I].Frames[0].Glyph.Image; // try copy image ???
end;
end;
Controller.StopFramesAnimation;
// LayoutChanged; // /refresh???
end;
finally EndUpdate; end;
end;
end;
>>>> clip >>>>
</para>
Hello,
Thank you for your report. I have reproduced the described behavior and it looks strange. There should be a way to show a certain frame when animation is stopped. I have forwarded this ticket to our developers for research.
Hi Paulo
Thanks for this, I thought it was strange and couldn't see in the source why this would not happen as the
Help specifically says that ActiveFrameIndex or ActiveFrame should refresh the tile to a certain frame image…
Hope you can find a solution to this, let me know your results…