OsMakeNotecard

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Realized osMakeNotecard taking a string does work! (unexpectedly))
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{|  width="100%" style="border: thin solid black"
+
{{osslfunc
| colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}'''
+
|threat_level=High
|- valign="top"
+
|function_syntax=void osMakeNotecard(string notecardName, list contents)
|'''Threat Level''' || <Threat Level goes here>
+
  
|- valign="top"
+
void osMakeNotecard(string notecardName, string contents)
|'''Function Syntax''' || <source lang="lsl">
+
|ossl_example=<source lang="lsl">
osMakeNotecard(key id,string contents)
+
</source>
+
|- valign="top"
+
|'''Example(s)||<source lang="lsl">
+
 
//
 
//
 
//osMakeNotecard example
 
//osMakeNotecard example
Line 20: Line 15:
 
         key id = llDetectedKey(0);
 
         key id = llDetectedKey(0);
 
         string name = llKey2Name(id);
 
         string name = llKey2Name(id);
         string contents; //The variable we are going to use for the contents of the notecard.
+
         list contents; //The variable we are going to use for the contents of the notecard.
         contents += "Name: "+name+"\n";
+
         contents += ["Name: "+name+"\n"];
         contents += "Key: "+(string)id+"\n";
+
         contents += ["Key: "+(string)id+"\n"];
         contents += "Pos: "+(string)llDetectedPos(0)+"\n";
+
         contents += ["Pos: "+(string)llDetectedPos(0)+"\n"];
         contents += "Rotation: "+(string)llDetectedRot(0)+"\n";
+
         contents += ["Rotation: "+(string)llDetectedRot(0)+"\n"];
 
          
 
          
 
         osMakeNotecard(name,contents); //Makes the notecard.
 
         osMakeNotecard(name,contents); //Makes the notecard.
Line 33: Line 28:
 
}
 
}
 
</source>
 
</source>
 
+
|description=Creates a notecard with text in the prim that contains the script. Contents can be either a list or a string.
 
+
|
|}
+
}}
 
+
[[Category:OSSL Functions]]
+
 
+
 
+
 
+
 
+
 
+
[[Category:OSSL]]
+
[[Category:OSSL functions without threat level]]
+

Revision as of 13:27, 15 May 2013

void osMakeNotecard(string notecardName, list contents)

void osMakeNotecard(string notecardName, string contents)

Creates a notecard with text in the prim that contains the script. Contents can be either a list or a string.
Threat Level High
Permissions No permissions specified
Extra Delay No function delay specified
Example(s)
//
//osMakeNotecard example
//By Tom Earth
 
default
{
    touch_start(integer n)
    {
        key id = llDetectedKey(0);
        string name = llKey2Name(id);
        list contents; //The variable we are going to use for the contents of the notecard.
        contents += ["Name: "+name+"\n"];
        contents += ["Key: "+(string)id+"\n"];
        contents += ["Pos: "+(string)llDetectedPos(0)+"\n"];
        contents += ["Rotation: "+(string)llDetectedRot(0)+"\n"];
 
        osMakeNotecard(name,contents); //Makes the notecard.
 
        llGiveInventory(id,name); //Gives the notecard to the person.
        llRemoveInventory(name);
    }
}
Personal tools
General
About This Wiki