macros:example:setplaybackpagingnever
Table of Contents
Example
Playback - Set Paging to Never Hold
by: | Sebastian Beutel with help by Gregory Haynes, Sep. 2016 |
---|---|
published: | http://forum.avolites.com/viewtopic.php?f=20&t=4834 |
description: | change user setting 'Playback Paging' to 'Never Hold' |
functions
affected properties
Code
- SetPlaybackPagingNever.xml
<avolites.macros xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Avolites.Menus.xsd"> <!-- Macro to set PlaybackPaging to never. Sebastian Beutel with help by Gregory Haynes 05/09/2016 --> <macro id="Avolites.Macros.PagingNeverHold" name="Set PbPaging to NeverHold"> <description>Sets PlaybackPaging to NeverHold.</description> <sequence> <step>ActionScript.SetProperty.Enum("Handles.HandlesHeldover", "NeverHold")</step> </sequence> </macro> </avolites.macros>
Explanation
This explains the functional steps within the sequence. For all the other XML details please refer to Formats and syntax
ActionScript.SetProperty.Enum(“Handles.HandlesHeldover”, “NeverHold”)
simply sets the Titan Property Handles.HandlesHeldover
to the required value. You may use this in order to quickly apply your preferred setting.
How to use it
Make this macro available.
Instead of going to User Settings/Handles, you can now fire this macro to set Titan to Playback Paging: Never Hold.
macros/example/setplaybackpagingnever.txt · Last modified: 2019/04/27 15:10 by sideshowbond
Discussion
Tested in 10.1 - works as intended.