// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // // // Creation Date: 28 June 1996 // // Description: // This procedure adds property sheet controls for // a new attribute of undetermined type. This is for internal // use only. // // Input Arguments: // The name of the plug for the attribute // The name of the attribute // // Return Value: // The name of the newly-created control. // global proc string AEnewOther ( string $plugName, string $attrName, string $changedCommand ) { string $createdControl = `rowLayout -nc 3`; text -al "right" -l $attrName nameTxt; separator sep; setParent ..; return $createdControl; }