Difference between revisions of "LlGetParcelMusicURL/ja"

From Second Life Wiki
Jump to navigation Jump to search
(copy from english(Todo: need translate to japanese))
 
m
Line 1: Line 1:
{{LSL_Function|func_id=
{{LSL_Function/ja|func_id=
|func_sleep|func_energy
|func_sleep|func_energy
|func=llGetParcelMusicURL|sort=GetParcelMusicURL
|func=llGetParcelMusicURL|sort=GetParcelMusicURL

Revision as of 13:08, 2 November 2023

要約

関数: string llGetParcelMusicURL( );

containing the parcel streaming audio URL.を string で返します。

The object owner must also be the land owner. If the land is deeded to a group the object will need to be deeded to the same group for this function to work.

サンプル

string parcel_music_url()
{
    string parcelMusicURL = llGetParcelMusicURL();

    if (parcelMusicURL != "")
        return parcelMusicURL;
//  else
        return "Sorry, could not retrieve parcel's music URL.\n"
            + "You'll either need to be the land owner or able to deed me.";

}

default
{
    touch_start(integer num_detected)
    {
        // PUBLIC_CHANNEL has the integer value 0
        llSay(PUBLIC_CHANNEL, parcel_music_url() );
    }
}

関連項目

関数

•  llSetParcelMusicURL Sets the music stream URL for the parcel object is on

特記事項

  • With this function, music display boards can learn the URL that the parcel is tuned to.

経緯

  • Suggested: SCR-31
  • Server release notes for 11.12.03.246118 on the main channel indicate that this function was added. Testing on the main release on 19-Dec-2011 has this function compiling without error but the output is empty.
  • Tests OK on main channel as of January 22 2012

Search JIRA for related Issues

Signature

function string llGetParcelMusicURL();
この翻訳は 原文 と比べて古いですか?間違いがありますか?読みにくいですか?みんなで 修正 していきましょう! (手順はこちら)
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。