key http_id; default { touch_start(integer total_number) { llSetText("Finding a Library 2 idea for "+llDetectedName(0)+"...",<1,1,0>,1); string url = "http://www.daveyp.com/cgi-bin/l2/l24blog.pl?plain"; http_id = llHTTPRequest(url,[],""); } http_response(key request_id, integer status, list metadata, string body) { if(request_id == http_id) { if(status == 200) { llSetText(body,<0,1,1>,1); llSay(0,body); } } } }