blob: 9d6443b62ff3f3c1a72ea2b35a96469460da035e (
plain) (
tree)
|
|
global proc AEEventLocatorNodeTemplate( string $nodeName )
{
editorTemplate -beginScrollLayout;
editorTemplate -beginLayout "Locator Attributes" -collapse 0;
AElocatorCommon $nodeName;
editorTemplate -endLayout;
editorTemplate -beginLayout "Event Attributes" -collapse false;
editorTemplate -addControl "event";
editorTemplate -addControl "extraData";
editorTemplate -endLayout;
editorTemplate -beginLayout "Triggers" -collapse 0;
editorTemplate -callCustom "AEWBTriggerButtonNew"
"AEWBTriggerButtonReplace"
"message";
editorTemplate -endLayout;
editorTemplate -addExtraControls;
editorTemplate -endScrollLayout;
AEWBLocatorSuppress( $nodeName );
}
|