Hi
I think! I got this with the spiders now. Here is a imdb spider WITH coverart if anybody is interested
//----------------begin spider----------
url=http://us.imdb.com/find?s=all&q=%searchstring%
results=<a href="(?<url>/title/.*?/).*?">(?<display>.*?)</a>
// Now goto that new url that stores all info on imdb
lasse= http://www.imdb.com%url%
// title and year
//<title>(?<title>.*?)</title>
//<a name="poster" href="photogallery" title="(?<title>.*?)">
//titletemp=<a name="poster" href="photogallery" title="(?<title>.*?)">
//<a href=".">(?<year>.*?)</a>
<strong>\(more\)(?<title>.*?) <small>\(<a href="/Sections/Years/.*?">(?<year>.*?)</a>
//Plot
<b>Plot Outline:</b> (?<plot>.*?)?. <a href="
// Coverart
// title="Miami Vice" src="http://ia.imdb.com/media/imdb/01/I/38/26/90/10m.jpg"
// <a name="poster" href="photogallery" title="Miami Vice"><img border="0" alt="Miami Vice" title="Miami Vice" src="http://ia.imdb.com/media/imdb/01/I/38/26/90/10m.jpg" height="140" width="95"></a>
<a name="poster" href="photogallery" title=".*?" src="(?<coverart>.*?)"
// ------------end spider---------------------------