Nice thing about this is in Flash we can display bar graphics or images to display amount completed and invoke scripts once at any point.
Here is the standard Mach3 1024.set modified with a page that has a large toolpath and DRO displaying amount completed.
Also included is the Macropump file, remember to turn on your macropump in the config page.
Code:
filesize = GetOEMDRO(1200)
filecurrent = GetOEMDRO(816)
'=== Get percent ===
completed = ((filecurrent / filesize) * 100)
Call setuserDro(1201,completed )
filecurrent = GetOEMDRO(816)
'=== Get percent ===
completed = ((filecurrent / filesize) * 100)
Call setuserDro(1201,completed )








that is a live Flash screen so you can click the menu buttons...and they all work.
I didn't think any one would find that.
)