//www.sldnug.net basic llHTTPRequest sample //associated file llHTTPRequest.aspx //apply this to any object to view text from webpage inworld key http_request_id; default { state_entry() { http_request_id = llHTTPRequest("http://www.sldnug.net/Downloads/llHTTPRequest.aspx", [], ""); } http_response(key request_id, integer status, list metadata, string body) { if (request_id == http_request_id) { llSetText(body, <0,0,1>, 1); } } }