Hi, I'm new and need some help. I've learn how to create script button at jrn and manage to automate t test comparison manually. However, I already had addin Data Comparison which is much more easier for me. Somehow I want to make the script button to open the addin selection. my current jrn button script is like this,
it open from origin path of addin (view -> home folder jsl)
I read somewhere in forum that I need to include this line:
include( "$ADDIN_HOME(com.xxx.xxx)\Continuous\Sample Comparison.jsl" );
but it seems not working in my jrn. NEED HELPP how to automatically run the jsl from addin through jrn.
so I try to do something like this:
Names Default To Here( 1 );
dt=Open("$ADDIN_HOME(com.xxx.xxx)\Continuous\Sample Comparison.jsl");
it can open but cannot run the script. Does anyone know why? NEED HELP