default { state_entry() { llSetTimerEvent(60.0); } on_rez(integer total_number) { string dynamicID=""; integer refreshRate = 600; string contentType="image"; string srcURL = "http://tgib.co.uk/announcement.png"; // URL string URLTexture=osSetDynamicTextureURL(dynamicID, contentType ,srcURL , "", refreshRate ); if (llStringLength(URLTexture)>0) { llSay(0,"URLTexture = "+URLTexture); llSetTexture(URLTexture, ALL_SIDES); } } timer() { string dynamicID=""; integer refreshRate = 600; string contentType="image"; string srcURL = "http://tgib.co.uk/announcement.png"; // URL string URLTexture=osSetDynamicTextureURL(dynamicID, contentType ,srcURL , "", refreshRate ); if (llStringLength(URLTexture)>0) { llSay(0,"URLTexture = "+URLTexture); llSetTexture(URLTexture, ALL_SIDES); } } touch_start(integer total_number) { llLoadURL(llDetectedKey(0), "More information about TGIB", "http://tgib.co.uk"); } }