Jump to content
  • 0

Create an object containning a text


Lascot1
 Share

You are about to reply to a thread that has been inactive for 3262 days.

Please take a moment to consider if this thread is worth bumping.

Question

1 answer to this question

Recommended Posts

  • 0

I'm not sure what you mean.  An object cannot "contain" text. 

If you want to display text on an object, you can create a texture with a program like Photoshop or GIMP and then upload it to SL to apply on the surface of the object.  Upload with the menu in Edit >>> Upload >>> Image.  It ill cost you L$10 for the upload. Read more here >>> https://community.secondlife.com/t5/English-Knowledge-Base/Textures-and-alpha-channels/ta-p/700157

If you want to display text as a hovering message over the object, use a short LSL script like this one ...

 

default{    state_entry()    {        llSetText( "Put your message here",<1.0,1.0,1.0>,1.0 );    }}

 

If you want your object to give the text to someone else, put the text on a notecard (Read this >>>> https://community.secondlife.com/t5/English-Knowledge-Base/Creating-notecards/ta-p/700057 ). Then put the notecard and a script like this one into your object ..

 

default{    touch_start(integer num)    {        llGiveInventory( llGetInventoryName( INVENTORY_NOTECARD,0) ) );    }}

 

If you don't mean any one of those things, to provide extra information or to clarify your question, click on the Options link in the upper right corner of your question and select EDIT. Please do not start a new thread. Doing that makes it hard for us to see what other people have already suggested, and it pushes other residents' questions off the page.

 

 

  • Like 4
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3262 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...