when I load the following script file I get the message "2D POINT or
OPTION KEYWORD REQUIRED";
LIMITS OFF
POINT 0,0
LINE 0,0 1,0
PLINE
0.0000000,0.0000000
0.1111111,0.0324002
0.2222222,0.0389878
0.3333333,0.0398501
0.4444444,0.0373921
0.5555556,0.0327428
0.6666667,0.0265355
0.7777778,0.0191065
0.8888889,0.0105679
1.0000000,0.0008400
PLINE
0.0000000,0.0000000
0.1111111,-.0324002
0.2222222,-.0389878
0.3333333,-.0398501
0.4444444,-.0373921
0.5555556,-.0327428
0.6666667,-.0265355
0.7777778,-.0191065
0.8888889,-.0105679
1.0000000,-.0008400
LIMITS ON
appreciate any assistance
tia
dan
> > ...... I get the message "2D POINT or
> OPTION KEYWORD REQUIRED";
Both the LINE and PLINE command require a carriage return (null entry)
to terminate. This is accomplished in a script file by using either a
space after the command (difficult to see in an ordinary text editor) or
a blank line in the script (prefered (by me, anyway, as being easier to
debug and read).
Thus, try modifying your script to:
>
>
> LIMITS OFF
> POINT 0,0
> LINE 0,0 1,0
<this line intentionally left blank to function as carriage return to
terminate line command>
> PLINE
> 0.0000000,0.0000000
> 0.1111111,0.0324002
> 0.2222222,0.0389878
> 0.3333333,0.0398501
> 0.4444444,0.0373921
> 0.5555556,0.0327428
> 0.6666667,0.0265355
> 0.7777778,0.0191065
> 0.8888889,0.0105679
> 1.0000000,0.0008400
<this line intentionally left blank to function as carriage return to
terminate pline command>
> PLINE
> 0.0000000,0.0000000
> 0.1111111,-.0324002
> 0.2222222,-.0389878
> 0.3333333,-.0398501
> 0.4444444,-.0373921
> 0.5555556,-.0327428
> 0.6666667,-.0265355
> 0.7777778,-.0191065
> 0.8888889,-.0105679
> 1.0000000,-.0008400
<this line intentionally left blank to function as carriage return to
terminate pline command>
LIMITS ON