graydwarf Posted April 3, 2015 Posted April 3, 2015 (edited) I'm also seeing the popup disappear when it reaches the top. It's real simple though. This variable ($IncTrans*$i) is increasing past 255 to 256.xxxxx. 256+ must be considered invalid and therefore 0. While 1 if $Showing Then ConsoleWrite($IncTrans*$i & @CRLF) WinSetTrans($Title, "", $IncTrans*$i) Else WinSetTrans($Title, "", 255 - $IncTrans*$i) EndIf WinMove($Title,"", $Pxy[0]+$Incx*$i, $Pxy[1]+$Incy*$i) Sleep(15) if abs($Incx*$i) >= Abs($Dx) and Abs($Incy*$i) >= Abs($Dy) then ExitLoop $i += 1 WEnd Edited April 3, 2015 by graydwarf
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now