Hello Guest it is April 25, 2024, 05:35:39 PM

Author Topic: how many times does screen load run on startup ?  (Read 1845 times)

0 Members and 1 Guest are viewing this topic.

how many times does screen load run on startup ?
« on: June 12, 2015, 09:03:00 AM »
i started with the 'stock'  mach4 mill
i put this line of code into the top of the startup screen load script just before the two functions

local x  = mc.mcGetInstance();
wx.wxMessageBox('screen load instance was '..tostring(x))

it always 'pops up'  6 times, instance 0 to 5 . .
whats up with that ! ?
« Last Edit: June 12, 2015, 09:05:38 AM by machiner »

Offline poppabear

*
  • *
  •  2,235 2,235
  • Briceville, TN, USA
    • View Profile
Re: how many times does screen load run on startup ?
« Reply #1 on: June 12, 2015, 09:11:08 AM »
Currently, (even though not functional yet), Mach4 can run 6 instances.
So, perhaps it is looping through the 6 possible instances, even though only instance 0 is currently supported.

Scott
fun times
Re: how many times does screen load run on startup ?
« Reply #2 on: June 12, 2015, 10:14:56 AM »
thanks again, man