Get 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]: getobjectmediadata Description[wiki]: The getobjectmediadata command can be used to retrieve the set media data from an object. Permissions[wiki]: interact Parameters[wiki]: group, password, item, data Last Changes[wiki]: Release 8.44 - added. </data>

The getobjectmediadata command can be used to retrieve the set media data from an object.

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

The command queries the MediaEntry structure of a primitive and returns the media data for all the faces of the primitive.

Notes