sperzieb00n Posted March 1, 2011 Posted March 1, 2011 After deleting an 3DS model imported into an open dxf project, autocad somehow switched on dynamic and commandline input for EVERYTING, including load/save operations. I know Acad can sometimes do some funky stuff by accidentally clicking something you did not notice, but this is by far the most annoiing thing i've encountered, because it appears to stay this way no matter wich (command)profile or template i open, or how many times i reboot. Quote
BlackBox Posted March 1, 2011 Posted March 1, 2011 Try setting your FILEDIA system variable to 1 (setvar 'filedia 1) Quote
sperzieb00n Posted March 2, 2011 Author Posted March 2, 2011 it worked, thanks! i wonder how i accidently switched it to 0.... but never mind, it works again Quote
ReMark Posted March 2, 2011 Posted March 2, 2011 Some poorly routine custom lisp routines will reset system variables for the sake of the program and neglect to return the values back to their original settings when finished. Although resetting FILEDIA=1 doesn't seem like one that would qualify for this type of manipulation. Ghosts in the machine? Quote
Patrick Hughes Posted March 2, 2011 Posted March 2, 2011 Although resetting FILEDIA=1 doesn't seem like one that would qualify for this type of manipulation. au contraire my friend FILEDIA is a prime candidate for manipulation by a lisp or script. By setting it to not show a dialog the program/script runs unattended. Quote
ReMark Posted March 2, 2011 Posted March 2, 2011 Ahhh...I sees the light. Thank you for opening my visual orbs. Quote
BlackBox Posted March 2, 2011 Posted March 2, 2011 (edited) it worked, thanks! i wonder how i accidently switched it to 0.... but never mind, it works again Unless you do a lot of variable manipulation for code testing, etc. it is far more likely that you executed a (poorly written) LISP routine which changes the variable, and perhaps failed to include the necessary error handling to reset the variable to its original value. Ahhh...I sees the light. Thank you for opening my visual orbs. Patrick hit the nail on the head. :wink: To the OP - glad you got the issue resolved. Cheers! Edited March 2, 2011 by BlackBox Typo Quote
alanjt Posted March 3, 2011 Posted March 3, 2011 au contraire my friend FILEDIA is a prime candidate for manipulation by a lisp or script. By setting it to not show a dialog the program/script runs unattended. Ahhh...I sees the light. Thank you for opening my visual orbs. In all my coding, I've NEVER even wanted to change that variable. Quote
Patrick Hughes Posted March 3, 2011 Posted March 3, 2011 In all my coding, I've NEVER even wanted to change that variable. It all hinges on what you are doing. If there are certain file operations you might want to (or need to), although there are ways around it. Particularly in a script if a saveas is issued, or performing a batch of files: Open...do stuff...save repeat. 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.