How would I go about changing the status of all hidden air wires to shown? Thanks.
How would I go about changing the status of all hidden air wires to shown? Thanks.
rickford66 wrote:
How would I go about changing the status of all hidden air wires to
shown? Thanks.
I wrote the following ulp to be able to unhide selected nets from the
schematic
#usage "<b>unhide airwires for nets grouped in schematic</b><p>"
"intended usage: run from command line or assign to hotkey<p>"
"THIS PROGRAM IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED<p>"
"<table cellspacing=0 cellpadding=5 border=1>"
"<tr><td align=center>Version</td>"
"<td align=center>Date</td>"
"<td align=center>Author</td>"
"<td align=center>Comment</td></tr>"
"<tr><td align=center>1.0</td>"
"<td align=center>2012-11-22</td>"
"<td align=center>lorenznl@yahoo.com</td>"
"<td>initial version</td></tr>"
"</table>"
if (schematic) {
string s = "";
schematic(SCH)
SCH.sheets(SHE)
SHE.nets(NET) {
if (ingroup(NET))
s += " " + NET.name;
}
if (s != "") {
exit("edit .brd; ratsnest" + s + ";");
}
}
--
Lorenz
rickford66 wrote:
How would I go about changing the status of all hidden air wires to
shown? Thanks.
I wrote the following ulp to be able to unhide selected nets from the
schematic
#usage "<b>unhide airwires for nets grouped in schematic</b><p>"
"intended usage: run from command line or assign to hotkey<p>"
"THIS PROGRAM IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED<p>"
"<table cellspacing=0 cellpadding=5 border=1>"
"<tr><td align=center>Version</td>"
"<td align=center>Date</td>"
"<td align=center>Author</td>"
"<td align=center>Comment</td></tr>"
"<tr><td align=center>1.0</td>"
"<td align=center>2012-11-22</td>"
"<td align=center>lorenznl@yahoo.com</td>"
"<td>initial version</td></tr>"
"</table>"
if (schematic) {
string s = "";
schematic(SCH)
SCH.sheets(SHE)
SHE.nets(NET) {
if (ingroup(NET))
s += " " + NET.name;
}
if (s != "") {
exit("edit .brd; ratsnest" + s + ";");
}
}
--
Lorenz
I'm referring to air wires on the PCB.