setAsset

JavaScript API reference for Video Viewer.

setAsset( *asset*)

asset

{ String } new asset id or explicit image set with optional Image Serving modifiers appended after ? .

Images which use IR (Image Rendering) or UGC (User-Generated Content) are not supported by this viewer.

Sets a new asset. You can call this parameter at any time, either before or after init(). If it is called after init(), the viewer swaps the asset at runtime.

See also init.

Returns

None.

Example

Single reference to an image set that is defined in a catalog:

 <instance>.setAsset("Viewers/Pluralist")

Explicit image set, with pre-combined pages:

 <instance>.setAsset("Scene7SharedAssets/Backpack_B,Scene7SharedAssets/Backpack_C,Scene7SharedAssets/Backpack_H,Scene7SharedAssets/Backpack_J")

Explicit image set, with individual page images:

 <instance>.setAsset("Scene7SharedAssets/AdobeScene7_Overview_US-1,Scene7SharedAssets/AdobeScene7_Overview_US-2:AdobeScene7_Overview_US-3,Scene7SharedAssets/AdobeScene7_Overview_US-4")

Sharpening modifier added to all images in the set:

 <instance>.setAsset("Viewers/Pluralist?op_sharpen=1")

On this page