macros:example:setchasespeed
Table of Contents
Example
Chase - Set chase speed
by: | Kim Wida, February 2018 |
---|---|
published: | http://forum.avolites.com/viewtopic.php?f=20&t=5577 |
description: | set some chases' speed |
remarks: |
functions
affected properties
Code
- 0.6sec.xml
<?xml version="1.0" encoding="utf-8"?> <avolites.macros> <macro id="Change_06_Speed"> <name>0.6 sec</name> <sequence> <step pause="0.01">ActionScript.SetProperty("Playbacks.Editor.SelectedPlayback", handle:"chaseHandleUN=17589")</step> <step pause="0.01">ActionScript.SetProperty("Playbacks.Editor.Times.PlaybackSpeed", 100.0)</step> <!-- add some more chase playbacks here --> <step pause="0.01">ActionScript.SetProperty("Playbacks.Editor.SelectedPlayback", handle:"chaseHandleUN=19159")</step> <step pause="0.01">ActionScript.SetProperty("Playbacks.Editor.Times.PlaybackSpeed", 100.0)</step> <step pause="0.01">Handles.SetSourceHandleFromHandle("chaseHandleUN=1049")</step> <step pause="0.01">ActionScript.SetProperty("Handles.PendingLegend", "Speed 200%")</step> <step pause="0.01">Handles.SetLegend()</step> <step pause="0.01">Handles.ClearSelection()</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(“Playbacks.Editor.SelectedPlayback”, handle:“chaseHandleUN=17589”)
selects distinct chase playbacks identified by their user numberActionScript.SetProperty(“Playbacks.Editor.Times.PlaybackSpeed”, 100.0)
sets a certain speed for the selected chase. It seems that the actual speed is calculated on a basis of 3,600 BPM: setting the chase speed property to 100 effectively sets it to 100 BPM = 0.6s, setting a chase speed to 50 sets it to 50 BPM = 1.2s.Handles.SetSourceHandleFromHandle(“chaseHandleUN=1049”)
selects another playback to set its legendActionScript.SetProperty(“Handles.PendingLegend”, “Speed 200%”)
sets this handle's legend as indicator for the current setting
Remarks by Gregory in the forum:
You may wish to consider using the Playbacks.Editor.Times.ChaseSpeedMultiplier property as this allows you to double (2) or half (0.5) the speed of whatever the BPM is set to. This means that if you had some chases that you wanted by default to run faster or slower you could set the BPM accordingly and then set the multiplier to double or half the speed.
How to use it
- maybe create some macros with various speed settings
- make sure your chases have the correct user numbers
- fire the macros to set specific speeds
You could leave a comment if you were logged in.
macros/example/setchasespeed.txt · Last modified: 2019/04/27 15:04 by 127.0.0.1