I cant open more than 1 tab inside the GUI .... anyone know how to do that? I want to open a video in a new tab but I cant... It always open in a new window which is also outside of GUI I uploaded a photo also Thanks in Advance 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("http://www.youtube.com")
    SoundSetWaveVolume(0)
    GUISetState()
    While 1
        sleep(1000)
    WEnd
    GUIDelete()
 EndFunc
Func Quit()
    Exit
EndFunc