Sets the transparency of a window.
WinSetTrans ( "title", "text", transparency )
Screen color must be greater or equal to 16-bit.
Example()
Func Example()
; Run Notepad
Run ("notepad.exe")
; Wait 10 seconds for the Notepad window to appear.
Local $hWnd= WinWait ("[CLASS:Notepad]","",10)
; Set the transparency of the Notepad window to 170.
WinSetTrans ($hWnd,"",170)
; Wait for 2 seconds to display the Notepad window.
Sleep (2000)
; Close the Notepad window using the handle returned by WinWait.
WinClose ($hWnd)
EndFunc ;==>Example