I'm struggling to understand why I can not move and rotate the layout of the group from my macro.
I've written the following simple macro:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<avolites.macros xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Avolites.Menus.xsd">
<macro id="Avolites.Macros.TestRotate" name="TEST ROTATE">
<description>Test of macros</description>
<sequence>
<step>ActionScript.SetProperty.Integer("Group.Editor.Layout.PositionY",5)</step>
<step>ActionScript.SetProperty.Integer("Group.Editor.Layout.PositionX",10)</step>
<step>ActionScript.SetProperty.Integer("Group.Editor.Layout.Rotation",180)</step>
</sequence>
</macro>
</avolites.macros>
I'm using the macro like this:
* Open Group layout editor of my group
* Select group
* Activate macro
I can see in the programmer display that Position Jumps to X = 3, Y = 11 and Rotation = 180° like I specified in the macro, but the view in the layout editor does not change. If I move the wheels it updates.
Am I forgetting anything or is this a bug?
Observed with a Titan Mobile and Titan v17.
Best Regards