Hi,
How is it possible to catch events inside dialogs (double clicks, press button ...)?
Thanks.
Hi,
How is it possible to catch events inside dialogs (double clicks, press button ...)?
Thanks.
Hi,
I only know how to get the button pressed:
iDialogTemplate1.PushButton(30, 442, 90, 20, "Standard", "buttonStandard");
this.buttonStandard_pressed = function(){
return true;
}
Thank you very much for your replay. I'm asking about Java Swing dialogs in Aris, not an Aris Dialogs.
Hello!
May be I have not tested all possibilities, but I haven't found a way to do this task using ARIS script only.
For some reason inheritance from java class to java script object is not working correctly.
So finally I decide to write custom dialogs in java (Eclipse), and then call them from aris script.
Hope, this helps.
It's weird. I can build dialog in Aris macro, but I could not caught events you mean? The Eclipse is possibility, but much complicated though. I need to create jar and so on.
Hi, also interested in custom dialogs using Java, and calling them from an ARIS script. Mostly, I just need to be able display a pop-up window with a graphic progress bar (series of PNG's switched out, or even some better animation, ie animated SVG) that can be controlled from a loop within the ARIS report at run-time.
Is Context.writeStatus ( String sText,int percentFinished ) not good enough for you?