Hello Guest it is May 17, 2024, 03:47:22 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 - Brian Barker

2641
LazyCam (Beta) / Re: lazycam
« on: July 06, 2006, 08:34:01 AM »
There will be a release out today :) I just sent it to Art...
Thanks
Brian

2642
There is no good way to add fonts to the Write wizard :( Every letter in the Write wizard is scalable gcode in an Mcode... So if you wanted to add a font you would have to make every letter into Gcode (at X0 Y0) so as you can see this is no small job... :(

2643
LazyCam (Beta) / Re: lazycam
« on: July 05, 2006, 10:24:26 PM »
It is fixed for the next rev... :)

2644
If you can find the pin out I will setup the XML for you :)

2645
LazyCam (Beta) / Re: Cut order
« on: July 05, 2006, 09:25:27 PM »
mmmmmmmm.... Not at this time... I will try to add it in the next rev :)

2646
Sorry i missed the End sub... It is hard to go from C++ to VB :(  I know this is not as simple as you would like but this gives you the most power...

Sub Main()

if (GetLED(4)) Then'This is where the Macro is told not to run if there is a job running
MsgBox("Could Not load there is a Job running")
Exit Sub
End if

'TODO add Macro code here
End Sub
Main

2647
Thank you for the input! You are going to save many people from pulling out there hair ;)

2648
VB and the development of wizards / Re: File selection dialog
« on: July 05, 2006, 09:10:53 PM »
There is no way to get the text form a label... :( and there is no way to browse for a file... I spent two nights trying to get that to work about a year ago :)

Sorry Brian

2649
LazyCam (Beta) / Re: Cut order
« on: July 04, 2006, 09:31:47 PM »
You can change the cut order of the layers in the Layer Dialog.
hope that helps
Brian

2650
Afer talking to Art we think it is best that you put code in your macro to see IF the macro should be run. It is very easy to add code that looks at the state of an LED and figure out if the macro should run. so lets say that your macro loads a Gcode file and runs it SO at the start of tha mcaro you should look and see if there is a job running. Here is an example:

Sub Main()

if (GetLED(4)) Then'This is where the Macro is told not to run if there is a job running
MsgBox("Could Not load there is a Job running")
Exit Sub
End if

'TODO add Macro code here

Main

This is more work but gives you more power in the end...