TA的每日心情 | 难过 2024-5-26 18:39 |
---|
签到天数: 2 天 [LV.1]初来乍到
管理员
- 积分
- 2495
|
*解决 win7 下 allegro 16.3 stroke editor 不能使用
a、查看HOME变量的值
我的电脑右键 > 更改设置 > 高级 > ??用户的变量 > HOME变量 > 值(例如:D:\SPB_Data)
b、把《allegro.strokes》和《allegro.ilinit》文件放在HOME变量的值的路径下的pcbenv文件夹中(例如:D:\SPB_Data\pcbenv)
c、导入.strokes 文件
Tool > Utilities > Stroke Editor > open 导入D:\SPB_Data\pcbenv中的.strokes 文件:
d、设置SETUP > User Preferences... > UI > input > 勾选no_drapopup这项就可以了.
《allegro.ilinit》文件内容为:(下面红字部分为Allegro16.3比16.2增添的内容)
;
; This example file shows how to load Skill files (those with the
; extension ".il" in the current directory.
; To use copy to allegro.ilinit if to be used by all Allegro based programs
; or .ilinit if intended for only one program
;
; Setting Allegro environment variable, LoadSkillFilesDebug will turn
; on printing the name of each file as it is loaded.
unless(boundp('LoadSkillFilesDebug)
LoadSkillFilesDebug = axlGetVariable("LoadSkillFilesDebug"))
when(LoadSkillFilesDebug printf("\n"))
(foreach file (rexMatchList "\\.il$" (getDirFiles "."))
when(LoadSkillFilesDebug printf("Loading Skill file: %s\n" file))
(load strcat("./" file))
)
; Load any ini files (containing axlCmdRegister)
(foreach file (rexMatchList "\\.ini$" (getDirFiles "."))
when(LoadSkillFilesDebug printf("Loading Skill file: %s\n" file))
(load strcat("./" file))
)
when(LoadSkillFilesDebug printf("\n"))
procedure(stroke_fix_163(t_open)
axlShell("strokefile allegro")
axlMsgPut("Strokes now enabled in Allegro 16.3 base release") )
axlTriggerSet('open 'stroke_fix_163) |
|