Jump to content

Search the Community

Showing results for tags 'ieobject'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hi, I'm trying to get the state of a button in a website at work. The state is made visible for the user by showing him a green V or a red X. This however, is done by an image in the button itself. Is there anyway to get the BACKGROUND-IMAGE url from the _IEobject ? <INPUT name=ctl00$cph$CustomerDataGrid$ctl05$Month1Button class=MonthButton id=ctl00_cph_CustomerDataGrid_ctl05_Month1Button style="HEIGHT: 24px; WIDTH: 26px; BACKGROUND-IMAGE: url(../../Css/Icons/check_16.gif); BACKGROUND-REPEAT: no-repeat; BACKGROUND-POSITION: center 50%" type=submit value=" "> The code below is working when I want to click the button. But how to get the Image returned?? check_16.gif = V close_16.gif = X #include <Array.au3> #include <IE.au3> #include <MsgBoxConstants.au3> Local $xnr, $oIE, $oDiv, $cRowCount, $cArtNum_IE, $oButton ; Maak verbinding met de website $oIE = _IEAttach("http://intranet/CustomerBonus/Pages/Admin/ManageCustomergroupMemberships.aspx", "url") ; Verkrijg de DataGrid aantal regels $oDiv = _IEGetObjById($oIE, "ctl00_cph_CustomerDataGrid") $oButton = _IEGetObjByName($oIE, "ctl00_cph_CustomerDataGrid_ctl05_Month1Button") _IEAction($oButton, "click")
×
×
  • Create New...