Copy and paste the script:
list urls;
default
{
state_entry()
{
urls+= ["http://www.sciencemuseum.org.uk/images/I030/10297676.aspx"];
urls+= ["http://www.sciencemuseum.org.uk/images/I032/10303265.aspx"];
urls+= ["http://www.sciencemuseum.org.uk/images/I032/10303266.aspx"];
'
urls+= ["http://www.youtube.com/profile_videos?user=BenjaKepler" ];
}
touch_start(integer total_number)
{
integer entry;
string webPage;
for(entry = 0;
entry < llGetListLength(urls);
entry++)
{
webPage = llList2String(urls,entry);
llParcelMediaCommandList([PARCEL_MEDIA_COMMAND_URL,
webPage]);
llSleep(5);
}
}
}
0 responses so far ↓
There are no comments yet...Kick things off by filling out the form below.