Table of Contents

Example

Capture - Diagnostics

by: Alex del Bondio, April 2019
published: here
description: show Capture diagnostics
remarks:

Remarks

functions

affected properties

Code

capturediagnostics.xml
<?xml version="1.0" encoding="utf-8"?>
<avolites.macros>
 
  <!-- Diagnostics, Alex del Bondio - April 2019 -->
  <macro id="adb.Macros.Capture.showdiagnostics" name="Capture Show Diagnostics">
    <active binding="Visualiser.Capture.ShowDiagnostics" />
    <sequence>
      <step>ActionScript.SetProperty.Boolean("Visualiser.Capture.ShowDiagnostics", true)</step>
    </sequence>
  </macro>
 
  <macro id="adb.Macros.Capture.hidediagnostics" name="Capture Hide Diagnostics">
    <active binding="{propertyLink id='Visualiser.Capture.ShowDiagnostics' converter='Math.NotConverter'}" />
    <sequence>
      <step>ActionScript.SetProperty.Boolean("Visualiser.Capture.ShowDiagnostics", false)</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

How to use it