Jump to content

Search the Community

Showing results for tags 'ie11'.

  • Search By Tags

    • ie11 ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 7 results

  1. i am trying to get number from string using this code : #include <IE.au3> $oIE = _IEAttach ("Edu.corner") Local $aName = "Student name & Code:", $iaName = "0" Local $oTds = _IETagNameGetCollection($oIE, "td") For $oTd In $oTds If $oTd.InnerText = $aName Then $iaName = $oTd.NextElemen...
  2. I am trying to click on td items using this code : #include <IE.au3> #include <MsgBoxConstants.au3> $oIE = _IEAttach ("Webpage") $sMName = "Akshay Vora" Local $oTDs = _IETagNameGetCollection($oIE, "td")   For $oTD in $oTDs   If String($oTD.InnerText) = $sMName Then MsgBox(0, "", $sMName & @CRLF...
  3. It seems that MS changed something in IE11 and the bellow code doesnt work anymore: $test=ObjEvent($oIE,"IEEvent_","DWebBrowserEvents") $test2=ObjEvent($oIE,"IEEvent_","DWebBrowserEvents2") Func IEEvent_($event) msgbox .... End Func Any idea how to fix that ? Thanks.
  4. Hi. I'm trying to do a teletext viewer. Here is my code: #include <GUIConstantsEx.au3> #include <EditConstants.au3> #include <ButtonConstants.au3> Local $sURL = "http://www.ndr.de/public/teletext/100_01.htm" Local $oIE = ObjCreate("Shell.Explorer.2") GUICreate("NDR Text", 494, 601) GUICtrl...
  5. Internet Explorer 11, AutoIt 3.3.14.2 I want to download many files which are published with hyperlink on a web page. I use AutoIt and when there is a few files, it works even if It's on a website with secured links. I have a script to download link items with the object method (I gave a p...
  6. Yet another IE UDF, but this time I "covered all angels" to make it as close to "embedded" as possible, the biggest inspiration came from Dale Anyway, one of the issues with the other "snipplets\UDF's" is that $WS_POPUP style will cause other Windows to overlap, even though you clicked on the G...
  7. For a while I thought this was caused by a security restriction in IE so I did not think much of it. But I was able to reproductive the problem using the help file scripts. Basically, Using IE property get screenx, or screeny for IE 11 in windows 8 seem off a bit in the controls. See the attached Pi...
×
×
  • Create New...