创建用于更改图形设置的脚本的步骤

此脚本将打开栅格,将全局线型比例因子设定为 3.0,将图层 0(零)设定为当前图层且颜色为红色。

  1. 启动以 ASCII 格式保存的文字编辑器(例如,Windows 上的记事本或 Mac OS 上的 TextEdit)。
  2. 在文字编辑器中,输入 grid on
  3. 在下一行中输入 ltscale 3.0
  4. 在下一行中输入 layer set 0 color red 0
  5. 添加一个空行。
  6. 将文件保存为 ASCII 文本格式(TXT 文件),文件扩展名为 .scr

    脚本文件可能包含下列注释:

; Turn grid on
grid on
; Set scale for linetypes
ltscale 3.0
; Set current layer and its color
layer set 0 color red 0

; Blank line above to end the LAYER command