harmor Posted October 20, 2010 Posted October 20, 2010 (edited) #include <String.au3> #include <array.au3> #include <INet.au3> local $user $user = InputBox("Steam Username", "What is your Steam username?", "", "") local $display local $array local $sHTML = _INetGetSource ("http://steamcommunity.com/id/"&$user&"/games?tab=all") $array = _StringBetween($sHTML, "<h4>", "</h4>") $display = _ArrayDisplay($array, "") Update: Changed code to use _INetGetSource() instead of _IE* since non-Windows operating systems do not have Internet Explorer installed. Edited October 21, 2010 by harmor
harmor Posted October 21, 2010 Author Posted October 21, 2010 (edited) _INetGetSource()I did not know about that function.That function would be the better choice as Linux and Macs don't have Internet Explorer. Edited October 21, 2010 by harmor
Suirad Posted October 21, 2010 Posted October 21, 2010 Linux and Macs don't have Internet Explorer.why should that matter? autoit is only for Windows
harmor Posted October 21, 2010 Author Posted October 21, 2010 why should that matter? autoit is only for WindowsCall me an idiot. I wasn't thinking about that.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now