Set Object Media Data

31 July 2019

  • C10 - added the selection parameter.

20 August 2015

  • Release 8.44 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: setobjectmediadata Description[wiki]: The setobjectmediadata command can be used to set the media data from an object given a face to change. Permissions[wiki]: interact Parameters[wiki]: group, password, item, data, face Last Changes[wiki]: Release 8.44 - added. </data>

The setobjectmediadata command can be used to set the media data from an object given a face to change.

Command Required Parameters Required Corrade Permissions Example
setobjectmediadata group, password, item, data, face interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // get the media data from a primitive
            // in a 5 meter range named "TV Screen 1.0"
            "command", "setobjectmediadata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "item", wasURLEscape("TV Screen 1.0"),
            "range", 5,
            // set the data on face 0
            "face", 0,
            "data", wasURLEscape(
                wasListToCSV(
                    [
                        "CurrentURL",
                        "http://www.grimore.org",
                        "AutoPlay",
                        "True"
                    ]
                )
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);
Optional Parameters Possible Value Description
range A distance in meters. The spherical radius from Corrade to search the primitive in.

The command takes parameters in data from the MediaEntry structure.

Notes