Brunello19 Posted August 9, 2006 Posted August 9, 2006 Hey everyone, I am currently using AutoCAD Architectural Desktop 2.0 at the office. ADT 2.0 is using a Profile (.ARG) file that correctly loads the display without scroll bars for normal setup. The problem is that I have AutoCAD configured to start in fullscreen and due to some glitch, the scroll bars always show up again. Super Member, rkmcswain, added that (setenv Quote
Brunello19 Posted August 10, 2006 Author Posted August 10, 2006 Thank you for the reply. I had tried your suggestion by typing it into the command line and it had not worked, but then I put it into the acad.lsp file and it works like a charm. Thanks again ! Quote
jamesfear Posted September 2, 2010 Posted September 2, 2010 don't know if this will help anyone else but I've attached the following lisp so you can just type scroll to toggle bewteen turning the scrollbar on or off; (defun c:scroll () (cond ((setq STR (not STR)) (setenv "Scrollbars" "0")) (t (setenv "Scrollbars" "1"))) (princ) ) scroll.LSP Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.