Re: Intercepting 'set the script..." in the IDE editor

2012-05-04 Thread Bill Vlahos
Dar, Alas no. I wish there were. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. On May 4, 2012, at 3:03 PM, Dar Scott wrote: > Thanks! Are there object and script parameters or will I have

Re: Intercepting 'set the script..." in the IDE editor

2012-05-04 Thread Dar Scott
Thanks! Are there object and script parameters or will I have to get those another way? Dar On May 4, 2012, at 2:27 PM, Bill Vlahos wrote: > Dar, > > ActionCompile is called when you click the Apply (compile) button in the IDE. > I believe it is called before the actual compile. If you don't

Re: Intercepting 'set the script..." in the IDE editor

2012-05-04 Thread Bill Vlahos
Dar, ActionCompile is called when you click the Apply (compile) button in the IDE. I believe it is called before the actual compile. If you don't have the "pass actionCompile" statement it doesn't compile. on actionCompile --your code here pass actionCompile end actionCompile Bill Vlahos

Re: Intercepting 'set the script..." in the IDE editor

2012-05-02 Thread Dar Scott
I like the idea of a plugin setting up a front script. However, don't I need to catch the click on the apply button rather than closefield? Maybe, I'm trying to do the wrong thing. Maybe I just need a plugin button to make the transformation on the edit field itself, perhaps with comments s

Re: Intercepting 'set the script..." in the IDE editor

2012-05-02 Thread J. Landman Gay
On 5/2/12 11:02 AM, Dar Scott wrote: I want to make a plugin that makes some tweaks to a script just before it is applied. I want the user to see and edit his version, but what is saved is a slightly different version. I don't know if any messages are sent, but you could possibly trap closefi

Re: Intercepting 'set the script..." in the IDE editor

2012-05-02 Thread Bob Sneidar
You may want to get ahold of GLX2 and see what Jerry did to do this. Since it's open source now (thanks a million Jerry) you can get into the code and see what is happening. Bob On May 2, 2012, at 9:02 AM, Dar Scott wrote: > I want to make a plugin that makes some tweaks to a script just bef

Intercepting 'set the script..." in the IDE editor

2012-05-02 Thread Dar Scott
I want to make a plugin that makes some tweaks to a script just before it is applied. I want the user to see and edit his version, but what is saved is a slightly different version. In some ideas, both are valid scripts, that shown in the editor and that put into the script property. In som