Icon View Incident Report

Minor Minor
Reported By: Matthew Jones
Reported On: 2/18/2014
For: Version 1.03 Build 4
# 4028 Control Animation Not Possible in All Directions

Am I right in thinking that the asMove animation won't work in all directions? I'd like a panel to "fly down" from the top, like the Apple installer confirmation does. So I set the panel to above the form, which is negative, and ask for an animation,
and then animate it, but it never moves. If I set it below, then it moves up just fine.

procedure TfrmAccount.ShowEditor;
begin
   pnlEdit.Top := - pnlEdit.Height; // NEGATIVE HERE
   pnlEdit.Left := (ClientWidth - pnlEdit.Width) div 2;

   pnlEdit.Visible := true;
   pnlEdit.Animate(asMove, 20, 4, true, false, false, false, 
       20, NO_CHANGE, NO_CHANGE, NO_CHANGE);
end;



Comments Comments
The animation code now figures out the correct direction by the ending top/left values, and animates accordingly.


Resolution Resolution
Fixed Problem on 2/23/2014 in version 1.03 build 5


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image