﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2639	Unable to Copy/Paste from Embedded IE object	JLogan3o13	Jon	"This issue was reported in the Help and Support forum. Since an upgrade from 3.3.8.1, OP is unable to copy and paste from an embedded IE object. This has been verified by several members and MVPs; it works in 3.3.8.1, stops working in 3.3.10.0, and does not work in latest Beta 3.3.11.3. Reproducer is below.


{{{
#include <misc.au3>
#include <Array.au3>
#include <IE.au3>

HotKeySet(""{ESC}"", ""Close"")

Local $TOOLS[10]
Global Enum $output1,$output2,$output3,$output4
$TOOLS[1] = ""one""
$TOOLS[2] = ""two""
#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(@SW_SHOW)
$oIE.navigate(""http://www.autoitscript.com"")

While 1
    sleep(100)
WEnd

Func Close()
    ControlClick(""Embedded IE Test"", """", ""[CLASS:Internet Explorer_Server; INSTANCE:1]"")
    Sleep(200)
    Send(""^a"")
    Sleep(200)
    Send(""^c"")
    Run(""Notepad.exe"")
    WinWait(""Untitled - Notepad"")
    WinActivate(""Untitled - Notepad"")
    Sleep(200)
    Send(""^v"")
    Exit
EndFunc
}}}
"	Bug	closed	3.3.13.18	AutoIt	3.3.10.0	None	Fixed	Embedded IE	
