
Opens the Export dialog box and enables you to export viewpoints. Opens the Export dialog box and enables you to export the current TimeLiner schedule. Opens the Export dialog box and enables you to export search sets. Opens the Export Rendered Image dialog box. Opens the Export dialog box and enables you to export current search. Toggles the Quantification Workbook window.ĭollies and pans the camera so that the entire model is in view. Toggles the docking window for the currently active graphics system (i.e.

This feature is available for Autodesk Navisworks Manage users only. Reverses the last operation performed by the Undo command. Saves the currently open Autodesk Navisworks file. Resets the program, closes the currently open Autodesk Navisworks file, and creates a new file. You must be in appropriate navigation mode (that is, Walk or Fly) for this keyboard shortcut to work.ĭisplays the Insert From File dialog box. Used to modify the middle mouse button actions.Ĭloses the currently active dockable window when it is undocked, or exits the application if the main application window is active. This means it will only work when this window has focus. This keyboard shortcut only applies to the Scene View windows. Zooms to magnify all selected objects in the Scene View. If I've used one of these shortcuts the UNDO is not broken, so I can't figure out why the reactor should do so.Zooms to view all objects in the Scene View. Each of these call the OSnapShow defun after setting the OSMODE accordingly.
#Modify undo command in acad 2016 code
I've then got some custom code to toggle them on/off using keyboard shortcuts. (OSnapShow)This is simply something to indicate which OSnaps are set at present, by displaying them on the status bar each time a command is started. (VLR-Reaction-Set (vlr-editor-reactor "OSnaps") :vlr-commandWillStart 'React_OSnapShow) (defun React_OSnapShow (calling-reactor commandInfo /) (setvar "MODEMACRO" (vl-string-trim "| " str)) (if (> (logand os 8192) 0) (setq str (strcat str " Par |"))) (if (> (logand os 4096) 0) (setq str (strcat str " Ext |"))) (if (> (logand os 2048) 0) (setq str (strcat str " App |"))) (if (> (logand os 512) 0) (setq str (strcat str " Nea |"))) (if (> (logand os 256) 0) (setq str (strcat str " Tan |"))) (if (> (logand os 128) 0) (setq str (strcat str " Per |"))) (if (> (logand os 64) 0) (setq str (strcat str " Ins |"))) (if (> (logand os 32) 0) (setq str (strcat str " Int |"))) (if (> (logand os 16) 0) (setq str (strcat str " Qua |"))) (if (> (logand os 8) 0) (setq str (strcat str " Nod |"))) (if (> (logand os 4) 0) (setq str (strcat str " Cen |")))

(if (> (logand os 2) 0) (setq str (strcat str " Mid |"))) (if (> (logand os 1) 0) (setq str (strcat str " End |")))
#Modify undo command in acad 2016 Pc
I'm totally stumped, this happens on all DWG's (new or old) on one PC only - ACad 2008 Vanilla.

Still undo does not work as before - there's no error (or other message) displayed in the command line when I use the U (or UNDO 1) command. If there was a Begin in effect there should be an 8 (A group is currently active) also part of this variable, but it's not. Which means 16 (Combine Zoom & Pan) + 4 (Auto turned ON) + 1 (UNDO turned on). The only time the UNDOMARKS is changed is if I manually type UNDO Mark.Īnd looking at the read-only UNDOCTL sysvar, mine's now set at 21. Whether I've entered UNDO End manually or not, the UNDOMARKS sysvar stays zero, no matter how many edits I've done since. It's as if UNDO does not automatically set the points at which it stops. The only thing which works is UNDO Back, but that undoes up to the point of opening the DWG (or the last UNDO Mark I've set). Then I thought about some lisp starting a Begin but not ending it. Even setting these to their other options (and thus trying all permutations) has no effect. I've tried changing all of undo's settings - I originally had it set to Auto=On, Control=All, Combine=Yes. If I type U (or Undo 1) nothing appears to happen. Sorry to resurrect this thread, but I've suddenly got the same type of problem.
