Mike Buess
USA
3037 Posts |
Posted - 06/20/2003 : 11:03:44 AM
|
R. (Object Edit works on one layer at a time.)
But you can duplicate most of Object Edit's functions with LabTalk scripts that can operate on multiple layers. For example, if you have two text labels, label1 in layer 1 and label2 in layer 2 you can space them vertically like this...
lay -s 1; // activate layer 1 yy=label1.top; lay -s 2; // activate layer 2 label2.top=yy+200;
You can find out how to get/set object properties in the Programming Guide... LabTalk Language Reference->Object Reference->Internal Object Overview->User-created Visual Objects
Most of that can also be done in Origin C.
Mike Buess Origin WebRing Member |
 |
|