Table of Contents

URL Query Parameters

You can control a number of aspects pf the editor as well as during playback using parameters embedded in the URL. These are formally known as search parameters, but are often referred to as query parameters. Such parameters follow the path in the URL used in a web browser, separated by a question mark:

http://pixi.guide/spot?mobile=Visitor

This shows a single parameter named mobile with the value Visitor added to a Blocks URL used for playback (as indicated by the spot path).

To add multiple parameters, append them separated by an ampersand:

http://pixi.guide/spot?mobile=Visitor&tags=t1,t2

This adds a tags parameter with the value t1,t2.

:!: NOTE: Do not type spaces in a path. if you need to enter a space, type %20 instead of the space.

Spot Parameters

The following parameters can be added to a spot URL (as shown in the examples above).

Editor Parameters

The following parameters can be added to an edit URL used to open the Blocks user interface. They are sometimes combined with an extended path, providing direct access to a particular block (or child block). To obtain such an extended path, first navigate in the Blocks editor into the desired block (or child block), then copy the URL from your web browser. The URL will look something like this:

http://pixi.guide/edit/index.ftl#/Display/BlockList/Information/Main

This opens the block named Main in the group named Information for editing. If you want to directly target a nested (child) block, those can be targeted either by index (order in a block list, with the first being numbered 0) or by their name. For example, assuming that the root block above is a Composition, which in its turn contains a Slideshow named "Slideshow", which then contains two slides named "Page1" and "Page2", you can navigate into Page2 of that nested Slideshow like this:

http://pixi.guide/edit/index.ftl#/Display/BlockList/Information/Main/Slideshow/Page2

The advantage of using child block names instead of their index is that the name is more reliable if child blocks are added or removed (e.g., a new slide is added at the beginning of the Slideshow in the example above).

:!: IMPORTANT: Make sure to put query parameters before any # sign in the URL, as shown below.

sandbox

The sandbox parameter confines users with a role below Manager to the specified block only, preventing such users from exiting to the editor's top level. This is useful when you want to provide a direct link into a block to be edited by a user, such as the location inside a block of a frequently edited text.

http://pixi.guide/edit/index.ftl?sandbox=block#/Display/BlockList/Information/Main/Slideshow/Page2

:!: IMPORTANT: While this feature will prevent the user from accidentally clicking out of the designated block, this is not a security feature. The user can still access the top level of the editor, as well as other blocks, by modifying the URL in the browser.

block-group

The block-group parameter confines the user to the block group specified by the parameter's value (i.e., "Stephen" in the example shown below). The user will see and access all blocks in this group, but will not be able to switch to another group. This also prevents the user from moving blocks to another block group.

http://pixi.guide/edit/index.ftl?block-group=Stephen

:!: IMPORTANT: This parameter prevents the user from accidentally leaving the designated group or creating blocks in other groups. Just like the sandbox parameter, this is not a security feature. By deliberately modifying the URL in the browser, a user can still access other groups.