Jump to content

Turn off line dialogue box


peterg

Recommended Posts

It may be selection cycling.

 

Set the system variable SELECTIONCYCLING to zero (0). Or you can simply ignore it. Once you shift the cursor a bit, it goes away and lets you have whatever you clicked on.

 

The day will come when you will miss it. How else will you select the line under the line, under the line, under the line, when you really need it?

Link to comment
Share on other sites

I never use SelectionCycling and rarely use quick properties. From my acaddoc.lsp:

(if (/= (getvar 'qpmode) -2)(progn(setvar 'qpmode -2)(princ "\nQPMODE to -2.  When toggled on only for selected objects supported in the CUI for display with quick properties.")))
(if (> (getvar 'selectioncycling) 0)(progn(setvar 'selectioncycling (- (getvar 'selectioncycling)))(princ "\nTurn \"selectioncycling\" off. SELECTIONCYCLING")))
(princ "\nTo Select Objects Close Together: Hover+Shift+Spacebar to Cycle then pick to select visable object.")
(princ)

I keep my Properties palettes anchored and auto-hidden to the right, no need for a partial version.

I heard that SelectionCycling may be useful when working in 3D, but have not come across a use for it so far while using Civil 3D. Easily toggled from the Hamburger icon should the need ever arise.

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...