autohotkey display image without a background code example

Example: autohotkey display image without a background

#SingleInstance, Force
#NoEnv
#KeyHistory, 0
ListLines, Off
Process, Priority,, High
SetDefaultMouseSpeed, 0
SetControlDelay, -1
SetBatchLines, -1
SetMouseDelay, -1
SetKeyDelay, -1
SetWinDelay, -1
PW = 650
PH = 367
WX := A_ScreenWidth - PW
WY := (A_ScreenHeight - (A_ScreenHeight / 27)) - PH + 1
Gui, Color, E8E8E8
Gui, Add, Picture, x0 y0 w%PW% h%PH% vEWDA, Asus ROG logo.png
Gui, Show, x%WX% y%WY% w%PW% h%PH%, ROG Logo
Gui, -Caption +LastFound +AlwaysOnTop
WinSet, TransColor, E8E8E8
Gui, +E0x20
return

F10::
ExitApp

Tags:

Php Example