
Stephen C. answered 08/07/19
SAT Math, Algebra, Trig, PreCalc Tutor
Yes, there are 2 ways for a script to add a "script label" to a page item, such as a rectangle.
Method 1: use insertLabel / extractLabel:
myRect.insertLabel( key: string, value:string );
myString = myRect.extractLabel( key:string );
Method 2:
myRect.label = myString;
myString = myRect.label;