Scroll dynamic content with Crawler
1) Text and Image Crawler v1.5
2) http://www.dynamicdrive.com/dynamici...wler/index.htm
3) configuring Crawler to scroll dynamically generated content
I'm trying to configure Crawler to scroll dynamically generated content which is printed on page inside the divs tag <div id="nowplaying"></div>. The Now playing data is fetched via the API.TrackHistory API, and updates automatically. API script: http://www.di.fm/assets/pages/channe...c37fba2b409.js
I want also that Crawler use internal css on page, not an existing external CSS from a remote site.
Sample:
Code:
<!doctype html>
<html lang="en">
<head>
<title>Vocal Chillout Radio</title>
<meta charset="utf-8">
<link href="http://www.di.fm/assets/pages/channels-ebbd11f02478ee3ff9b606cd2a858afc.css" media="screen" rel="stylesheet" type="text/css" />
<script src="http://www.di.fm/assets/modernizr-2f0c525027ca1ae88a69b5315a71aa63.js" type="text/javascript"></script>
</head>
<body>
<div id="nowplaying">
<h2>Now Playing</h2>
<p class="track">Loading…</p>
</div>
<div id="history">
<h2>Track History</h2>
<ol class="list"></ol>
</div>
<script src="http://www.di.fm/assets/platform/base-86d34655702e3523fcdbd83e3415bef4.js" type="text/javascript"></script>
<script>
NS('AudioAddict.API').Config = {
url: 'http://api.v2.audioaddict.com/v1', // 'http://api.v2.audioaddict.com/v1',
listenUrl: 'http://listen.di.fm',
network: 'di',
networkName: 'Digitally Imported',
networkUrl: 'http://www.di.fm/',
channelBase: '/',
calendarEventBase: '/calendar/event/',
member: null
};
</script>
<script src="http://www.di.fm/assets/pages/channels-b7d8e25e114f1efee1838c37fba2b409.js" type="text/javascript"></script>
<script>
var CurrentChannel = {"channel":{"ad_channels":"","asset_id":1591,"asset_url":"http://static.audioaddict.com/a5b0bd27de43d04e1da9acf5b8883e85.png","channel_director":"Solarsoul","created_at":"2012-04-18T17:16:47-04:00","description":"Enjoy the relaxing vocal sounds of Ibiza chillout","forum_id":null,"id":142,"key":"vocalchillout","name":"Vocal Chillout","network_id":1,"old_id":138,"premium_id":null,"tracklist_server_id":8591,"updated_at":"2012-04-18T22:38:54-04:00"}}.channel;
</script>
</body>
</html>
How to adjust Crawler for this task?