Good morning,
I have some text on the tPlace layer (21) of a board that has the value
">DRAWING_NAME". In a ULP, the value of this element resolves to the
actual drawing name. How can I get it's unresolved value?
board(B) {
B.texts(T) {
if (T.layer == 21 && T.value == ">DRAWING_NAME") {
dlgMessagebox("Drawing name found in layer 21.");
}
}
}
The above code never presents a dialog box.
Ideas?
Thanks,
- Chuck