- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I use a global attribute "VERSION" which is set for example to "1.0" (in the board file), and dynamically insert it as text in a specific layer in the board file using ">VERSION". This is working as expected.
Now i want to write a check routine to test if the user has set the dynamical text in the board file. But while trying to access all texts in the board file by
project.board(B){
B.texts(T){
// access to T.value
}
}
i only get the replaced/evaluated string (now "1.0") and not the string ">VERSION" for T.value.
I also tried accessing the text from a board context (replaced "project.board" by "board") and started the ulp from the board editor window with no success.
How can I access the ">VERSION" entry of the text in the board file?
Solved! Go to Solution.