// =========================================================================== // 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: July 14, 1997 // // Procedure Name: // AEupdateString // // Description Name; // Updates the textFieldGrp to reflect a new selection // // Input Value: // The control name and the plug name // // Output Value: // none // global proc AEupdateString( string $controlName, string $plugName ) { string $value = `getAttr $plugName`; textFieldGrp -e -tx $value $controlName; }