The WindowEx.AnimateWindow function Animates specified window
boolean WindowEx.AnimateWindow(
number hWnd, --handle of window to animate
number dUrarion, --Duration in Ms. (1000 ms = 1 second)
string aNiType, --Animation Type
);
Parameters
hWnd
handle of window to animate
dUrarion
Duration in Ms. (1000 ms = 1 second)
aNiType
Specifies the animation type. This parameter can be one or a combination of the animation types listed in the following section.
For Example :
AW_FADEIN
AW_FADEIN.."|"..AW_SLIDEIN_LEFT"
AW_FADEIN
fade-in
AW_FADEOUT
fade-out
AW_SLIDEIN_LEFT
slide in from left
AW_SLIDEOUT_LEFT
slide out to left
AW_SLIDEIN_RIGHT
slide in from right
AW_SLIDEOUT_RIGHT
slide out to right
AW_SLIDEIN_TOP
slide-in from top
AW_SLIDEOUT_TOP
slide-out to top
AW_SLIDEIN_BOTTOM
slide-in from bottom
AW_SLIDEOUT_BOTTOM
slide-out to bottom
AW_SLIDEIN_TOPLEFT
diagonal slide-in from Top-left
AW_SLIDEOUT_TOPLEFT
diagonal slide-out to Top-left
AW_SLIDEIN_TOPRIGHT
diagonal slide-in from Top-Right
AW_SLIDEOUT_TOPRIGHT
diagonal slide-out to Top-Right
AW_SLIDEIN_BOTTOMLEFT
diagonal slide-in from Bottom-left
AW_SLIDEOUT_BOTTOMLEFT
diagonal slide-out to Bottom-left
AW_SLIDEIN_BOTTOMRIGHT
diagonal slide-in from Bottom-right
AW_SLIDEOUT_BOTTOMRIGHT
diagonal slide-out to Bottom-right
AW_EXPLODE
explode
AW_IMPLODE
implode
Return Values
If the function succeeds, the return value is TRUE.
If the function fails, the return value is FALSE.
Remarks
Not Working under Window Xp