文档介绍:# May use function keys F2-F12, most Alpha-numberic keys with control # modifier (although Control - C,V and X are reserved for copy, paste and cut) # and Navigation Keys (Home, Up arrow, Esc, etc.) These items may be modifed # by the following: # Modifier Indicator Example # Shift S SF2 # Control C (function keys) CF2 # Control ~ (alpha-numeric) ~N # Meta A AF2 # Modifiers may bined. Some examples: # CSF2 Control-Shift F2 # ASF2 Meta-Shift F2 # CAF2 Control-Meta F2 # CASF2 Control-Meta-Shift F2 # ~SZ Control-Shift Z # SUp Shift-Up Arrow # CUp Control-Up Arrow ## funckey # use the funckey when you wish to have alphanumeric keys operate # like the Function keys when the cursor is in the Allegro canvas. ## Example -- following starts the mand without a Enter key # funckey m move #-------------------------------------------------------------------- # Bind incremental pick by grid unit functions to ctrl and shift--arrow keys alias Up "ipick 0; ipick_to_gridunit 0 +1" alias Down "ipick 0; ipick_to_gridunit 0 -1" alias Left "ipick 0; ipick_to_gridunit -1" alias Right "ipick 0; ipick_to_gridunit +1" alias CUp "move; ipick_to_gridunit 0 +1" alias CDown "move; ipick_to_gridunit 0 -1" alias CLeft "move; ipick_to_gridunit -1" alias CRight "move; ipick_to_gridunit +1" # F1 is normally reserved by the system for Help so we don't use it alias F2 save alias F3 show measure # 测量 alias F4 COLOR