Modify ↓
Opened 11 years ago
Closed 10 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 Changed 10 years ago by Jon
- Milestone set to 3.3.13.18
- Owner set to Jon
- Resolution set to Fixed
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
Fixed by revision [10936] in version: 3.3.13.18