dgemily, I know u are a specialist but I would gladely take halp from anybody
Trying to modify my spider that uses imdb and takes thoose movies that only have one result. example Saw III
If one goes to
http://us.imdb.com/find?s=all&q=Saw III;tt=1
U should come to the web page directly not a search result. So here's the code. What happens is that XL presents Saw III but nothing happens when I click the result in the spider setup(using F2 database-spider) for testing
please help me out
//------------------------------------------------------------
url=http://us.imdb.com/find?s=all&q=%searchstring%;tt=1
results=<title>(?<display>.*?)\(.*?\)</title>
<meta name="title" content="(?<title>.*?)\(.*?\)"><meta
//Plot
<b class="ch">Plot Outline:</b> (?<plot>.*?)?. <a href="
// Coverart
<a name="poster" .*? title=".*?" src="(?<coverart>.*?)"
<a href="/Sections/Genres/.*?">(?<genre>.*?)</a>
<a href="/mpaa">MPAA</a>:</b>(?<rating>.*?)<br>
<b class="ch">Runtime:</b>(?<runtime>.*?)<br>
//Actors
// <table cellpadding="1" cellspacing="0"><tr><td colspan="4" align="left"><b class="blackcatheader">Cast overview, first billed only:
first billed only: </b></td></tr> (?<variable><tr>.*?</tr><tr>.*?</tr><tr>.*?</tr><tr>.*?</tr><tr>.*?</tr>)
<td valign="top"><a href="/name/.*?">(?<actors>.*?)</a></td>
//------------------------------------------------------------