I'm writing some code that will create a new window that contains several Button Boxes. Each Button Box will execute some jsl code located in some directory. I've tried many different ways to call these jsl files but can't get them to work. Any suggestions on how to accomplish this would be appreciated.
regress = "C:\script_a.jsl";
ov1 = "C:\script_b.jsl";
dlg1 = New Window ( "Title",
Lineup Box( Spacing ( 10, 10 ),
Button Box ( " Plot Data ", ov1 ),
Button Box ( " Regress Selected Data ", regress ),
Button Box ( " Close Dialog ", dlg1 << Close Window ),
)
);