|
EDA365欢迎您!
您需要 登录 才可以下载或查看,没有帐号?注册
x
关键是我一年前在家里的电脑上面这样加载成功了,现在也可以用的,我想在办公室也加下,就加不上呢??
加skill时,都显示成功了,可是菜单栏还是没有skill这栏呢??
显示成功信息如下:
function _saveSelSet redefined
function _restoreSelSet redefined
"skill load_ok"
Loading axlcore.cxt
Opening existing drawing...
Strokes now enabled in Allegro 16.3 base release
allegro.men这个文件里面我已经把skill的菜单栏加入了啊,加在help的前面,如下:
POPUP "S&kill"
BEGIN
MENUITEM "2D 3D drawing", "dxfout"
MENUITEM "Board File Compare", "component_changes"
MENUITEM "Create Route keep out area", "rouko"
MENUITEM "DRC Check", "drc walk"
MENUITEM "DRC Review", "find drc"
MENUITEM "Delete Cline Segs", "find_stubs"
MENUITEM "Line to Shape", "l2s"
MENUITEM "Plug Via hole", "viaplug"
MENUITEM "Remove XD DRC", "rmxdrc"
MENUITEM "Silkscreen Check", "text_chk"
MENUITEM "Test Point Check", "hl_ntp"
MENUITEM "Update Symbols", "upds"
MENUITEM "Unit Transfer", "conv"
MENUITEM "Width Change", "cwidth"
MENUITEM "Width Check", "checkwidth"
END
POPUP "&Help"
BEGIN
MENUITEM "&Documentation", "cdsdoc allegro allegrolaunch"
MENUITEM "&What's New", "cdsdoc allegro AllegroPN"
MENUITEM "&Message Detail", "smi_message_detail"
POPUP "&Web Resources"
BEGIN
MENUITEM "&Community", "http http://www.cadence.com/community"
MENUITEM "&Online Support", "http http://support.cadence.com"
MENUITEM "&Web Collaboration", "http http://collaboration.cadence.com"
MENUITEM "&Education Services", "http http://www.cadence.com/education"
#ifndef _ALLEGRO_ORCAD
MENUITEM "Software &Updates", "http http://downloads.cadence.com"
#endif
MENUITEM SEPARATOR
MENUITEM "&PCB Forum", "http http://www.cadence.com/community/pcb"
END
MENUITEM SEPARATOR
MENUITEM "&About...", "about"
END
END
调入命令也加入到了allegro.ilint 里面了:
skillDir = (simplifyFilename "D:/PRO/pcbenv/skill")
(setSkillPath (append (list "./" skillDir) (getSkillPath)))
(load "component_changes.il")
(load "drc_walk.il")
(load "Find_DRC.il")
(load "mot_find_stubs.il")
(load "killallxdrc.il")
(load "hl_ntp.il")
(load "conv.il")
(load "cwidth.il")
(load "checkwidth.il")
println("skill load_ok")
; DstCAM350() is the CAM350 Cross Probe Startup
load( "C:\\PRO\\pcbenv\\DstCxi.il")
procedure(stroke_fix_163(t_open)
axlShell("strokefile allegro")
axlMsgPut("Strokes now enabled in Allegro 16.3 base release")
)
axlTriggerSet('open 'stroke_fix_163) |
|