Inactive Tutor answered 08/07/19
Tutor
New to Wyzant
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;