OsSetParcelMusicURL
From OpenSimulator
(Difference between revisions)
(Add script etc ...) |
m (PUBLIC_CHANNEL) |
||
Line 29: | Line 29: | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay( | + | llSay(PUBLIC_CHANNEL, "Touch to see how osSetParcelMusicURL works"); |
} | } | ||
touch_start(integer num) | touch_start(integer num) |
Revision as of 23:00, 7 September 2020
osSetParcelMusicURL(string url)
| |
Sets the Music URL for the parcel the scripted object is in. | |
Threat Level | VeryLow |
Permissions | ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// ---------------------------------------------------------------- // Example / Sample Script to show function use. // // Script Title: osSetParcelMusicURL.lsl // Script Author: // Threat Level: VeryLow // Script Source: SUPPLEMENTAL http://opensimulator.org/wiki/osSetParcelMediaURL // // Notes: See Script Source reference for more detailed information // This sample is full opensource and available to use as you see fit and desire. // Threat Levels only apply to OSSL & AA Functions // See http://opensimulator.org/wiki/Threat_level // ================================================================ // C# Source Line: public void osSetParcelMusicURL(string url) // Inworld Script Line: osSetParcelMusicURL(string url); // // Example of osSetParcelMusicURL // string sURL = "https://archive.org/download/CncdVsFairlightCeasefire/ceasefire_all_fall_down.320k.mp3"; // The URL we are setting to the parcel. // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see how osSetParcelMusicURL works"); } touch_start(integer num) { llSay(PUBLIC_CHANNEL, "Media URL being set to : " + sURL); osSetParcelMusicURL(sURL); } } |