Page 2 of 2

Re: New bug in 1.2041, or is it just my configuration?

PostPosted: Thu Jun 29, 2017 7:23 am
by dezsoe
If you want to save your jog feed rate, use this in M99999.txt:

Code: Select all
exec.Writekey("JogSettings", "JogFeedRate", AS3jog.Getfield(913));

and in M99998.txt:

Code: Select all
AS3jog.Setfieldtext(exec.Readkey("JogSettings", "JogFeedRate", "10"), 913);
AS3jog.Validatefield(913);

Re: New bug in 1.2041, or is it just my configuration?

PostPosted: Thu Jun 29, 2017 8:40 am
by A_Camera
dezsoe wrote:If you want to save your jog feed rate, use this in M99999.txt:

Code: Select all
exec.Writekey("JogSettings", "JogFeedRate", AS3jog.Getfield(913));

and in M99998.txt:

Code: Select all
AS3jog.Setfieldtext(exec.Readkey("JogSettings", "JogFeedRate", "10"), 913);
AS3jog.Validatefield(913);

Yes, thanks, that's another possibility I was thinking about also, but then I realized that I mostly set it 30% so by changing it in the screen file to 30% it will be OK without involving macro calls.

Re: New bug in 1.2041, or is it just my configuration?

PostPosted: Sat Sep 23, 2017 1:23 am
by Greolt
A_Camera wrote:Just solved it by changing this line in the Defaultscreenset.ssf:

AS3jog.Setfieldtext("10", 913);

Changed 10 to 30 and now it starts with 30%...


I made this change to 100, and now the "Jog Feed" DRO reads 100% upon startup.

However it still jogs at 10% untill I hit the + or - keys. After that it jogs at the rate shown on the DRO

EDIT: Added this line after the above,

AS3jog.Validatefield(913);

Now it works.