Mike Buess
USA
3037 Posts |
Posted - 07/08/2004 : 07:35:47 AM
|
Hi Tenna,
Position, size and color of the circle can be controlled in the normal fashion through right-click -> Properties. Object properties can also be controlled by LabTalk script...
// Select the circle first select -g A; // get name of selected object %A.fillcolor=color(red); // set object's fill color to red %A.color=color(red); // set object's border color to red %A.dx=1; %A.dy=1; // set width and height to 1 (axis unit) %A.x=1.5; %A.y=3; // position center at (x,y)=(1.5,3)
Mike Buess Origin WebRing Member |
|
|