-
Re: How to make 'O-SNAP' changes default?
A little hidden function that works in some command like line. You can change the osnap setting in the middle of the command. (defun c:1 ( / )(setvar 'osmode 1)) ; can use 1 as not used, note in next…1 -
Re: Fillet Multiple Polylines / lines
Try this option 1 only can do option2 by reversing one side list. ; Fillets multi lines in one go ;By Alan H (defun AH:Fmulti ( / ss fpts num num2 x y) (alert "pick outside-inside-outside")…1 -
Re: How to make 'O-SNAP' changes default?
This is one way to reset osnaps I have these in a custom lsp so it gets autoloaded on startup. (defun C:15 ()(setvar "osmode" 15359)) ; sets all snaps on (defun C:47 ()(setvar "osmode&…1 -
Re: Focus problem click twice
Pretty simple whilst the massprop is now on command line need to press Enter to execute the command. Try press enter or space bar rather than up arrow, worked for me1 -
Re: Cannot load linetype
Glad it worked, yes Bricscad support do respond and are very helpful, have helped me a couple of times.1
