Search found 3653 matches

by Les Newell
Mon Jan 26, 2015 2:57 pm
Forum: Problems and questions
Topic: Drill Bank
Replies: 7
Views: 2400

Do the movement coordinates need to be offset or do you just need to select an offset using a G or M-code?
by Les Newell
Sat Jan 24, 2015 10:09 am
Forum: Problems and questions
Topic: offset on wrong side of line
Replies: 3
Views: 2339

You need to fix the breaks or overlaps in CAD.
by Les Newell
Fri Jan 23, 2015 8:24 pm
Forum: Problems and questions
Topic: offset on wrong side of line
Replies: 3
Views: 2339

Open paths are shapes that don't join up. In other words you have a break in our outline or the lines are overlapping. Turn on View-> show path ends and turn off View->show segment ends. You should see some white dots on your outline. If you zoom into the dots you will probably see the problem.
by Les Newell
Thu Jan 22, 2015 3:49 pm
Forum: Problems and questions
Topic: Tabbing issues
Replies: 7
Views: 3544

I found the problem. Thanks. It is a rather obscure one and only shows up if you have a leadin but no leadout. It is fixed for the next release.
by Les Newell
Thu Jan 22, 2015 3:05 pm
Forum: Problems and questions
Topic: Tabbing issues
Replies: 7
Views: 3544

I tried auto tabbing here and it worked correctly. Could you send me the job file with everything set up just before you try auto placing tabs. I'll try running your job and see if I can get it to crash.
by Les Newell
Thu Jan 22, 2015 2:28 pm
Forum: Problems and questions
Topic: Tabbing issues
Replies: 7
Views: 3544

To place tabs manually switch to tab mode (Mode->edit tabs). Now you should be able to place tabs by simply clicking on the outline. Note that if you have more than one operation you have to have the correct operation selected before you can edit it's tabs.
by Les Newell
Wed Jan 21, 2015 6:23 pm
Forum: Problems and questions
Topic: cant get the text to show up in sheetcam
Replies: 17
Views: 7767

I just tried your job here and it worked. I have a suspicion you may have a corrupted license. Do you have a license? Go to Help->about. Does it say if SheetCam is licensed?
by Les Newell
Wed Jan 21, 2015 6:07 pm
Forum: Problems and questions
Topic: cant get the text to show up in sheetcam
Replies: 17
Views: 7767

Could you post the job file so I can try it here.
by Les Newell
Wed Jan 21, 2015 5:59 pm
Forum: Problems and questions
Topic: cant get the text to show up in sheetcam
Replies: 17
Views: 7767

Edit your tool and check the plunge rate. You will get that error if the plunge rate is 0.
by Les Newell
Wed Jan 21, 2015 5:52 pm
Forum: Problems and questions
Topic: cant get the text to show up in sheetcam
Replies: 17
Views: 7767

Double click on your operation (where it says No offset, Default...) to open it.
You can set the feed rate in there.

By the way in simulation click the setup button and set the machine type to 'jet' rather than 'mill'
by Les Newell
Wed Jan 21, 2015 5:45 pm
Forum: Problems and questions
Topic: cant get the text to show up in sheetcam
Replies: 17
Views: 7767

That all looks correct. As Art suggested, have you tried running simulation (mode->simulation)?

If the simulation runs correctly you should get correct g-code.
by Les Newell
Wed Jan 21, 2015 5:38 pm
Forum: Problems and questions
Topic: Tiny G CNC Plasma
Replies: 2
Views: 1682

I just looked at the specs for TinyG and it appears that they try to conform to the LinuxCNC g-code dialect so try the EMC plasma post. That should be pretty close to what you need.
by Les Newell
Wed Jan 21, 2015 2:59 pm
Forum: Problems and questions
Topic: Post variables
Replies: 5
Views: 1972

There isn't an easy way of doing that. It is possible but it gets very complicated.
by Les Newell
Tue Jan 20, 2015 7:02 pm
Forum: Problems and questions
Topic: Fagor post
Replies: 2
Views: 882

In function OnInit, remove this line:

Code: Select all

   post.ShowCustomOptions()
This will stop the dialog from showing
by Les Newell
Tue Jan 20, 2015 6:59 pm
Forum: Problems and questions
Topic: Post variables
Replies: 5
Views: 1972

this code should work: post.Text(" SET XSHIFT= ") post.Number((materialX2 - materialX1) * scale, "0.0##") post.Eol() post.Text(" SET ZSHIFT= ") post.Number(materialThick * scale, &qu...