Jump to content

Recommended Posts

Posted (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 by graydwarf
  • Replies 40
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...