Hello,   I have a problem with an embedded IE and AutoIt in last version: I recently upgraded to AutoIt version 3.3.10.2 and since it's impossible to "copy" the content of an embedded IE. (It works fine with autoit 3.3.8.1)   Example with this code : #include <GUIConstantsEx.au3> Opt("GUIOnEventMode", 1) GUICreate("Embedded IE Test", 640, 480, -1, -1) GUISetOnEvent($GUI_EVENT_CLOSE, "Close") Global $oIE = ObjCreate("Shell.Explorer.2") GUICtrlCreateObj($oIE, 0, 0, 640, 480) GUISetState(@