Difference between revisions of "LlSetObjectDesc"

From Second Life Wiki
Jump to navigation Jump to search
Line 9: Line 9:
|caveats=*The object description is limited to 127 bytes, any string longer then that will be truncated.
|caveats=*The object description is limited to 127 bytes, any string longer then that will be truncated.
*According to [http://jira.secondlife.com/browse/VWR-437 VWR-437] if you set the description to longer then 256 bytes the object may no longer be rezzable. Use caution if using this field to store data.
*According to [http://jira.secondlife.com/browse/VWR-437 VWR-437] if you set the description to longer then 256 bytes the object may no longer be rezzable. Use caution if using this field to store data.
*The pipe character is not legal in an object's description, it will be replaced by a '?'.
*The pipe character:'|' is not legal in an object's description, it will be replaced by a '?'.
|constants
|constants
|examples=<lsl>//store the owner's name in the prim description
|examples=<lsl>//store the owner's name in the prim description

Revision as of 08:53, 21 January 2009

Summary

Function: llSetObjectDesc( string desc );

Sets the prims description

• string desc

Caveats

  • The object description is limited to 127 bytes, any string longer then that will be truncated.
  • According to VWR-437 if you set the description to longer then 256 bytes the object may no longer be rezzable. Use caution if using this field to store data.
  • The pipe character:'
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>//store the owner's name in the prim description default {

   touch_start(integer total_number)
   {
       string temp;
       temp = llKey2Name(llGetOwner());
       llSetObjectDesc(temp);
   }
}</lsl>

See Also

Functions

•  llGetObjectDesc Gets the prim description.
•  llGetObjectName Gets the prim name.
•  llSetObjectName Sets the prim name.

Articles

•  Limits SL limits and constrictions
•  Prim Attribute Overloading

Deep Notes

Search JIRA for related Issues

Signature

function void llSetObjectDesc( string desc );