Hello Guest it is April 27, 2024, 05:46:10 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

11
I have always found them to be very responsive if contacted directly.
support@warp9td.com

12
Mach4 General Discussion / Re: Yet Another Tool Change Script
« on: January 10, 2024, 02:51:05 PM »
Would love to see the code when you are done.

13
Also, it is not Newfangled you need to help.
Contact Warp9
https://warp9td.com/

14
You said you configured the firewall.
Try turning them off.
Also, you must cycle the power on the ESS after a failed attempt at communication.

15
Mach4 General Discussion / Re: Question reguarding Machsupport Forum
« on: January 04, 2024, 04:36:26 PM »
Go to your profile and select Show Posts

16
Others / Re: Handy thread chart Freeware very impressive
« on: January 03, 2024, 05:47:38 PM »
Zarzul,

This is very helpful.
Thank you.

What part of Wyo are you in?
I used to live in Sheridan

17
Mach4 General Discussion / Re: Convert millisecond to time
« on: December 21, 2023, 05:54:17 PM »
This might be what you want or at least get you started.

--Converts decimal seconds to an HH:MM:SS.xx format
function SecondsToTime(seconds)
   if seconds == 0 then
      return "00:00:00"
   else
      local hours = string.format("%02.f", math.floor(seconds/3600))
      local mins = string.format("%02.f", math.floor((seconds/60) - (hours*60)))
      --local secs = string.format("%04.2f",(seconds - (hours*3600) - (mins*60)))
      local secs = string.format("%02.0f",(seconds - (hours*3600) - (mins*60)))
      return hours .. ":" .. mins .. ":" .. secs
   end
end

18
Mach4 General Discussion / Re: Automatic reference travel
« on: December 18, 2023, 03:59:23 PM »
You would be better off doing it yourself.
Then you can make changes or modify other things.
Before making any changes make a copy of your Profiles and Screens folders.
Then if you make a mistake you can always go back to the original.

Here is a link for a document I made that will help you start.
https://www.machsupport.com/forum/index.php?topic=45397.msg289143#msg289143

In Mach4 go to Operator then Edit Screen
On the left select the top thing under Screen Tree Manager
Below the Screen Tree Manager is the Properties section
Select the middle icon ( Events)
The top line is Screen Load Script
Click to the right of Screen Load Script and click the button with 3 dots.
On the right side scroll down to the function CycleStart()
This is where you will make your changes.

19
Mach4 General Discussion / Re: Automatic reference travel
« on: December 18, 2023, 08:30:49 AM »
Edit the Cycle Start function in the Screen Load script.
It will take some coding but not a lot.

20
Mach4 General Discussion / Re: Screen Load Script
« on: December 15, 2023, 02:27:47 PM »
I am not a programmer and had problems starting also.
I made this and it might help you also.

https://www.machsupport.com/forum/index.php?topic=45397.msg289143#msg289143

Bill