Jump to content

Item purchase sign?


Ilamoon
 Share

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

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

Recommended Posts

Hello,

I hope this is the right forum for this.

I am trying to sell art and want a sign that you cick on to purchase the art.  Hpw do I make the sign that would link to the art? Is this scriped within the sign?

Thank you,

Sarah

Link to comment
Share on other sites

The Merchants forum is likely a better spot for this, LSL scripting is excluviely for people looking for help with scripts.

It depends where the art is:-

  • if you're trying to sell Second Life textures then you can do this using vendors, or by setting objects with the textures (either on or inside) for sale. This is significantly easier and would not require any scripting. (Dora covers this, below)

 

  • If you're linking to an external site to sell the art - firstly it's important to check you're advertising in a place that's happy for you to do this - and then you can use the following LSL call to link to a website outside of Second Life- llLoadURL

You could use this in a script like so...

string sDEST = "http://www.google.com";string sMSG = "Please check out my art!";default{    touch_start(integer num_det)    {         llLoadURL(llDetectedKey(0),sMSG,sDEST);    }}

 

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3348 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...