It looks like you're new here. If you want to get involved, click one of these buttons!
I want starting BC without intial drawing template.
I try add "(command "CLOSE")" into on_doc_load.lsp, but it closing every opened file direct double click.
Is way how run BC without intial drawing template?
Comments
Using lisp this works:
You could also use a start up switch and a script:
"C:\Program Files\Bricsys\Bricscad V10\bricscad.exe" /b "close.scr"
Content of close.scr:
close
LISP works! Great! Thanks!
Thank You,
Joe Dunfee
[code](if (zerop (getvar "dwgtitled"))
(progn
(setvar "cmdecho" 0)
(command "_.close")
)
)[/code]
For V10 the solution with two files is required to avoid a command line message ('This command is available only when a drawing is open.').