Is is possible get a callback from another button than the buttons added from my j-link application? I would like to see which button the user presses when responding to my message string.
Sorry if I misunderstood you!
As I said I haven't worked anything with macros and I just assumed that you need to send some modelparameters in to your macro...
This script just gives you handles to all models in session.
//matte
Hi!
I don't know anything about Macros but this is one way to get all the models in session ...
public void runMacros(Session proeSession) {
Model md;
Models mds;
try{
mds = proeSession.ListModels();
for (int i=0;i<mds.getarraysize();i++){
md =...
Hello!
I'm trying to run the full asynchronous j-link example that comes with Proe2001, but I get this errormessage while compiling...
FATAL ERROR in native method: UNKNOWN EXCEPTION: TEMPORARILY FATAL
at com.ptc.pfc.pfcAsyncConnection.AsyncActionListener_u.AsyncActionListener_u_ctor(Native...
Hi everybody!
Is it possible to access COM-objects from a J-Link application?
I've made a sample javaapplication that accessed COM-objects and that worked fine, but when I tried to do the same in j-link the JVM crashed...
Can someone please help me with this problem?
//matte