Hello, I made this script to create an embedded IE in GUI:
#include <IE.au3>
#include <Clipboard.au3>
#include <GUIConstants.au3>
#include <GUIConstantsEx.au3>
#include <WinAPI.au3>
$hGUI=GUICreate("dummy",700,300)
$oIE = _IECreateEmbedded()
GUICtrlCreateObj($oIE,5,5,690,290)
GUISetState(@SW_SHOW)
_IENavigate($oIE,"index.html")
Do
$msg=GUIGetMsg()
if $msg=$GUI_EVENT_CLOSE Then ExitLoop
Sleep(1)
Until False
index.html has a working form with a textarea in it. During script execution I CAN PASTE but I CAN'T COPY or CUT from the textarea: this simply does not work. For company reasons I must run only IE8.
Any suggestion to make copy and cut work?