Bug Report Q372286
Visible to All Users

Changing a tile item's ActiveFrameIndex property does not display a specified frame

created 12 years ago (modified 12 years ago)

<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>

Comments (2)
DevExpress Support Team 12 years ago

    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…

      Answers approved by DevExpress Support

      created 12 years ago (modified 12 years ago)

      We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

      Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

        Show previous comments (3)
        DevExpress Support Team 12 years ago

          Hello,
          Attached is a small sample project that works perfectly on my side with this fix. To apply a fix open the dxAnimation.Pas file, change its code according to HotFix and run our installer (Setup.exe) in recompile mode. This should help you solve the problem.

            Hi Paulo
            I realised (from your code) where I went wrong:
            In my timer event (every 20 seconds) when the flag was disabled, I was doing:
            >>> clip
               Items[I].ActiveFrameIndex:= 0;
               Controller.StopAnimations;
            >>> clip
            Stopping the animations LAST was the problem, as of course the frames would continue to cycle!..
            So, this now works fine ,called in the timer event, to go through all animated tiles…
            procedure <MyForm>.SetAnimations(DoEnable:Boolean);
              var I,Ict,Fct:Integer;
            begin fAnimationsStarted:= not DoEnable;
             with dxTile do begin
              try BeginUpdate;
                  if DoEnable then
                     Controller.StartAnimations
                   else begin
                     Controller.StopAnimations;
                     Ict:= Items.Count;
                     for I:= 0 to Ict-1 do begin
                       Fct:= Items[I].Frames.Count;
                       if Fct> 0 then Items[I].ActiveFrameIndex:= 0;
                     end;
                   end;
               finally EndUpdate; end;
             end;
            end;
            Thanks :)

            DevExpress Support Team 12 years ago

              Thank you for informing us that the problem is now resolved. I am glad to hear that you have found our assistance helpful.

              Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

              Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.