Jump to content

maiux

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by maiux

  1. I'm trying to automate some controls in a webpage in IE 11: the tipical scenario is a multi-tab session in IE (not embedded). I'm using both IE functions bundled with AutoIT and IEEx library (here) I just can't figure out how I can get current active tab... Can you help me? Thanks
  2. this works like a charm in 3.3.12.0 thank you
  3. Thank you John, let's wait for the bugfix...
  4. 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?
×
×
  • Create New...