Modify ↓
Opened 12 years ago
Closed 12 years ago
#2639 closed Bug (Fixed)
Unable to Copy/Paste from Embedded IE object
| Reported by: | JLogan3o13 | Owned by: | Jon |
|---|---|---|---|
| Milestone: | 3.3.13.18 | Component: | AutoIt |
| Version: | 3.3.10.0 | Severity: | None |
| Keywords: | Embedded IE | Cc: |
Description
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
Attachments (0)
Change History (1)
comment:1 by , 12 years ago
| Milestone: | → 3.3.13.18 |
|---|---|
| Owner: | set to |
| Resolution: | → Fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Fixed by revision [10936] in version: 3.3.13.18