Hello Guest it is April 27, 2024, 05:16:49 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Bill_O

331
Mach4 General Discussion / luac files
« on: September 06, 2019, 05:21:19 PM »
How can I look at luac files?
I would like to look at the mctrace.luac to probably use some in my profile.
Specifically the align portion.

Bill

332
Mach4 General Discussion / Re: Variable in PLC script and m6 toolchange
« on: September 05, 2019, 01:36:26 PM »
Jelle,

What are you referring too as a variable?
The best thing to use is a register.
They can be seen and read from all parts of Mach4

Bill

333
Mach4 General Discussion / Re: How to make a Button ??
« on: August 26, 2019, 02:12:01 PM »
Go to Operator then Edit Screen

334
Mach4 General Discussion / Re: Pause Lua script mach4
« on: August 21, 2019, 07:39:49 AM »
Yes it does stop it all.
What exactly are you trying to do?

335
Mach4 General Discussion / Re: Pause Lua script mach4
« on: August 20, 2019, 05:57:03 PM »
        wx.wxSleep(seconds)
   wx.wxMilliSleep(milliseconds)
Example:
   wx.wxSleep(1)
   wx.wxMilliSleep(1000)

336
Mach4 General Discussion / Re: Jog Speed DRO
« on: August 19, 2019, 08:36:53 AM »
OK.
I figured I could do that but was hoping I would not need to.

Thanks,
Bill

337
Mach4 General Discussion / Re: Jog Speed DRO
« on: August 15, 2019, 10:12:20 AM »
mc.mcJogSetRate in the API is for single axis.
mc.mcJogSetRate(inst, axis, percentage)
How do I use it for all?

338
Mach4 General Discussion / Re: Jog Speed DRO
« on: August 15, 2019, 09:12:13 AM »
If I put in a slider and use the same code to adjust the slider it changes the slider and the dro and works.
I really do not want the slider.

Bill

339
Mach4 General Discussion / Re: Jog Speed DRO
« on: August 15, 2019, 08:15:41 AM »
Jog Rate % is the DRO Code for droJogSpeed

340
Mach4 General Discussion / Jog Speed DRO
« on: August 14, 2019, 04:57:12 PM »
I am having a little problem with the Lua on a couple of buttons I am making.
The script changes the value but does not change the actual speed.
If I type in the DRO the speed will actually change.

Bill