Jump to content

Some beginner help


Thu
 Share

Recommended Posts

I've been playing around with trying to make a script to retrieve some data from websites, but getting blocked immediately. WinGetText does not seem to be what I am looking for, or maybe I'm just using it wrong. Let's say I want to get the daily movie quote from www.imdb.com, what functions should I look into?

Link to comment
Share on other sites

Search in Helpfile for IE UDF

Big thanks, Zedna, I truly didn't know where to begin.

The following 7 lines took me only an hour to write. :)

It's not pretty, it's absolutely nothing special, but it's mine!

Now I guess I know how it feels like to be a parent...

CODE
#include <IE.au3>

$oIE = _IECreate ("http://www.imdb.com")

$sText = _IEBodyReadText ($oIE)

$Start = StringInStr($sText, "Movie/TV Quote of the Day")

$End = StringInStr($sText, "From which TV show/Movie?")

$Quote = StringMid($sText,$Start,$End-$Start)

MsgBox(0, "The IMDB quote of the day:", $Quote)

Please be my guest if anyone wants to point out what I can do more effectively. I know I will be back with more retarded questions soon enough. :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...