prevpacdescript.ulp
来自「老外的PCB设计软件,是免费的.可以上网更新.」· ULP 代码 · 共 44 行
ULP
44 行
#usage "<b>Edit previous package description</b>\n"
"<p>"
"<author>Author: support@cadsoft.de</author>"
// THIS PROGRAM IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED
string cmd = "";
string pac[];
string edit = "";
int count = 0;
int n = 0;
if (library) library(L) {
L.packages(P) {
count++;
pac[count] = P.name;
cmd += P.name + "\n";
}
}
if (package) package(P) {
edit = P.name;
}
for (n = 1; n < count; n++) {
if (edit == pac[n]) {
break;
}
}
if (n > 1) {
cmd = "EDIT " + pac[n - 1] + ".pac;\n DESCRIPT\n" ;
// **************************************************
// a ";" must not follow DESCRIPT
// otherwise the description is overwritten
// with an empty string
// **************************************************
}
else
cmd = "EDIT " + pac[0] + ".pac;\n DESCRIPT\n" ;
exit(cmd);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?