// // customText functions for attribute editor // (c) 2002 carsten kolve, www.kolve.com, carsten@kolve.com // // use this to display a custom text in your AETemplates // great for headings and the likes // // exmpl: // editorTemplate -callCustom "customTextNew" "customTextReplace" "putYourCustomTextHere"; // // note: // change the text command to format the text to your liking // // enjoy! global proc customTextNew(string $text) { // delete proceeding text string $token[]; int $numTokens = `tokenize $text "." $token`; string $textC = $token[$numTokens-1]; // print text text -l (" "+$textC) -al "left" -fn "boldLabelFont"; } global proc customTextReplace(string $text) { // do nothing }