I just made a GUI opening youtube I want to make clicks only inside GUI(let's say if i have a photo on full screen and the GUI is behind that photo I still want a video from GUI browser to be clicked without clicking the photo) Hope you guys will understand because I cant explain so good.... Here is the code: HotKeySet("{ESC}", "Quit")
Example()
Func Example()
$oIE = ObjCreate("Shell.Explorer.2")
GUICreate("",800, 600, 0 , 0)
$GUIActiveX = GUICtrlCreateObj ($oIE, 0, 0, 800, 600)
$oIE.navigate("https://www.youtube.com")
GUISetState()
While 1
sleep(1000)
WEnd
GUIDelete()
EndFunc
Func Quit()
Exit
EndFunc