Difference between revisions of "LlGetObjectDesc/it"

From Second Life Wiki
Jump to navigation Jump to search
Line 18: Line 18:
|helpers
|helpers
|also_functions=
|also_functions=
{{LSL DefineRow||[[llSetObjectDesc]]|Sets the prim description.}}
{{LSL DefineRow||[[llSetObjectDesc]]|Imposta la descrizione del prim in cui sta lo script.}}
{{LSL DefineRow||[[llGetObjectName]]|Gets the prim name.}}
{{LSL DefineRow||[[llGetObjectName]]|Ottiene il nome del prim.}}
{{LSL DefineRow||[[llSetObjectName]]|Sets the prim name.}}
{{LSL DefineRow||[[llSetObjectName]]|Imposta il nome del prim.}}
{{LSL DefineRow||[[llGetObjectDetails]]}}
{{LSL DefineRow||[[llGetObjectDetails]]|Restituisce una serie di dati sul prim in cui sta lo script.}}
|also_events
|also_events
|also_articles=
|also_articles=

Revision as of 11:34, 12 January 2012

Summary

Function: string llGetObjectDesc( );

Returns a string che è la descrizione del prim in cui sta lo script.

Caveats

  • The prim description is limited to 127 bytes; any string longer then that will be truncated. This truncation does not always happen when the attribute is set or read.
  • The pipe character '|' and the newline character '\n' are not legal in a prim's description. They will be replaced with '?'.[1]
  • Note that when people have "Hover Tips on All Objects" selected in the viewer's "View" menu, they'll see the object description pop-up for any object under their mouse pointer. For that reason, it is good practice to only set human-friendly information in the description, e.g. keys and such.
  • When an attached object is detached, changes made by script to the name and description (of the root prim) of the attachment will be lost. While the object is attached the name and description can be changed but it will not be reflected in inventory. This caveat does not apply to child prims.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>default {

   state_entry()
   {
       llSay(PUBLIC_CHANNEL, llGetObjectDesc() );
   }
}</lsl>

See Also

Functions

•  llSetObjectDesc Imposta la descrizione del prim in cui sta lo script.
•  llGetObjectName Ottiene il nome del prim.
•  llSetObjectName Imposta il nome del prim.
•  llGetObjectDetails Restituisce una serie di dati sul prim in cui sta lo script.

Articles

•  Limits SL limits and constrictions
•  Prim Attribute Overloading

Deep Notes

Search JIRA for related Issues

Footnotes

  1. ^ The pipe character historically has been used to separate fields in the serialized version of inventory. The field is not multi-line so the newline character holds no meaning in this context.

Signature

function string llGetObjectDesc();