LlSetObjectName
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Contents |
Summary
Function: llSetObjectName( string name );| 203 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Sets the prim's name according to the name parameter.
| • string | name |
If this function is called from a child prim in a linked set, it will change the name of the child prim and not the root prim.
Caveats
- The name is limited to 63 characters. Longer prim names appeared cut short.
- The LL client did not reliably show the current name. Misleadingly old names sometimes appeared at Edit > General > Name until you closed and reopened the Edit dialog of the prim.
Examples
default { state_entry() { string yyyy1mm1dd = llGetDate(); string name = yyyy1mm1dd + " " + llGetObjectName(); llOwnerSay("llSetObjectName(\"" + name + "\")"); llSetObjectName(name); } }
See Also
Functions
| • | llGetObjectName | – | Get the prims name | |
| • | llGetLinkName | – | Get a linked prims name | |
| • | llGetObjectDesc | – | Get the prims description | |
| • | llSetObjectDesc | – | Set the prims description | |
| • | llGetObjectDetails | – | Get a list of object details |
Articles
| • | Limits | – | SL limits and constrictions |
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

