Jump to content

Search the Community

Showing results for tags 'ie steam store'.

  • 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. I'm working on something that is more or less a list of my games from Steam and now I want to get their capabilities too. Yes I could just do some string crunching, but that's no fun! Example page: #include <IE.au3> $oIE = _IECreate("http://store.steampowered.com/app/22650/?l=english") Just to be clear what I want: Code for that list: <div class="details_block"> <div class="game_area_details_specs"> <div class="icon"> <img align="top" src="http://cdn.store.steampowered.com/public/images/ico/ico_singlePlayer.gif"> </div> <div class="name">Single-player</div> </div> <div class="game_area_details_specs"> <div class="icon"> <img align="top" src="http://cdn.store.steampowered.com/public/images/ico/ico_coop.gif"> </div> <div class="name">Co-op</div> </div> <div class="game_area_details_specs"> <div class="icon"> <img align="top" src="http://cdn.store.steampowered.com/public/images/ico/ico_achievements.gif"> </div> <div class="name">Steam Achievements</div> </div> <div class="game_area_details_specs"> <div class="icon"> <img align="top" src="http://cdn.store.steampowered.com/public/images/ico/ico_leaderboards.gif"> </div> <div class="name">Steam Leaderboards</div> </div> <div class="game_area_details_specs"> <div class="icon"> <img align="top" src="http://cdn.store.steampowered.com/public/images/ico/ico_stats.gif"> </div> <div class="name">Stats</div> </div> <div class="game_area_details_specs"> <div class="icon"> <img align="top" src="http://cdn.store.steampowered.com/public/images/ico/ico_controller.gif"> </div> <div class="name">Controller enabled</div> </div> </div> If I could just somehow get an array containing the names from the details_block... I don't know where to go from here
×
×
  • Create New...