Quantcast
Channel: AutoIt v3 - General Help and Support
Viewing all articles
Browse latest Browse all 12506

Input box over image doesn't work!

$
0
0
I can't input text on the inputbox!

[ autoit ]         
#include #include #include $hGUI = GUICreate("Test", 500, 500, -1, -1, $WS_POPUP, $WS_EX_LAYERED) GUISetBkColor(0x0AFFFFFF) ; Set GUI back colour $hButton = GUICtrlCreatePic("C:\Users\TheWebs\Pictures\20120525_183742_g.jpg", 88, 56, 313, 337) GuiCtrlSetState($hButton,$GUI_DISABLE) $Button1 = GUICtrlCreateButton("Download", 160, 140, 65, 65) $Button1 = GUICtrlCreateButton("Play", 250, 140, 65, 65) $Input1 = GUICtrlCreateInput("Video link", 152, 230, 169, 21) GuiCtrlSetState($Input1, $GUI_ENABLE) _WinAPI_SetLayeredWindowAttributes($hGUI, 0x0AFFFFFF, 250) ; Make that colour virtually transparent GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd

Viewing all articles
Browse latest Browse all 12506

Trending Articles