|
Tarl Bristol
Registered User
Join date: 12 Mar 2007
Posts: 111
|
06-11-2008 19:17
I need some help with llSetText. I have build a small house and floating over it is some text that seems to have been put there by a script using the llSetText command. The object is gone, not sure where it came from actually. In fact if I delete all objects on the parcel, the text remains.
How can I get rid of the text?
I have done some scripting, and know how the llSetText command works. I didn't write anything using llSetText on this parcel of land, and wouldn't write this message anyway.
Any help would be appreciated. TIA.
|
|
RichD Tomsen
Photographer / Builder
Join date: 18 Nov 2007
Posts: 24
|
Look for Hidden Prims
06-11-2008 20:30
If you have tried Re-Logging on and clearing cache... Try pressing CTRL+ALT+T and see if there is an invisible prim someplace that you can remove.
If you simply want to remove the test that hovers over a prim try this script
default { state_entry() { llSetText("",<0,0,0>,1.0); } }
That will blank it out.... Simply removing the script that created it will not remove the text.
|
|
Hewee Zetkin
Registered User
Join date: 20 Jul 2006
Posts: 2,702
|
06-11-2008 20:52
And note that you will have to find the actual prim that has the text; you can't just drop it on the object (unless it happens to be the root prim that has the text on it). The 'Edit linked parts' checkbox in the edit window may be used (before clicking on a prim) to try each child prim.
|