select objects first then move them

select objects first then move them

Anonymous
Not applicable
3,530 Views
11 Replies
Message 1 of 12

select objects first then move them

Anonymous
Not applicable

I select the objects I want to move first and them type the move command. All items are de-selected and the move command is active, wanting me to select items to move. 

 

 

The Noun/Verb selection is checked in the selections tab under options and the pickfirst command is set to 1.

 

Does anyone know how to fix this?

3,531 Views
11 Replies
Replies (11)
Message 2 of 12

Kent1Cooper
Consultant
Consultant

Might you possibly have an undefined-and-newly-defined Move command that for some reason cancels any existing selection first?  Try typing in .move [with the decimal-point prefix] to force it to use the native command, and see whether it works that way.

Kent Cooper, AIA
0 Likes
Message 3 of 12

Anonymous
Not applicable

That works. How do I get it to work normally now without having to type .move?

 

0 Likes
Message 4 of 12

M_Hensley
Advisor
Advisor

Use the REDEFINE command to set it back to default.

0 Likes
Message 5 of 12

Anonymous
Not applicable

This seems to work if I type out the move command, but if I just use "m" for the move command it still does the same thing. 

0 Likes
Message 6 of 12

Patchy
Mentor
Mentor

Probably time to reset your autocad back to default.

 

0 Likes
Message 7 of 12

dmfrazier
Advisor
Advisor

There might be an entry in your PGP file (command aliases) that is causing this. (Tools menu, Customize...)

 

Or there may be a LISP function defined somewhere...

 

When did this unexpected behavior begin? Are you in a new work environment? Are you the administrator of your AutoCAD seat? Did you install an AutoCAD add-on of some sort?  More background information would be helpful for a complete resolution and/or prevention of a recurrence.

0 Likes
Message 8 of 12

pendean
Community Legend
Community Legend
Sounds like you all have M defined to do something else: start going through all the PGP files and perhaps unload any add-ons in full AutoCAD that changed these items for you all.
0 Likes
Message 9 of 12

Kent1Cooper
Consultant
Consultant

@pendean wrote:
Sounds like you all have M defined to do something else: .....

And if that something else isn't just a refinement on or alteration of how the MOVE command works, but something entirely different, you can tell easily enough by calling for it and going ahead with the object selection it prompts for, and seeing what it then asks of you.  If that's not the usual MOVE prompts, then clearly there's a (defun) or PGP entry or some such thing that's determining what M does, overriding AutoCAD's default alias.  I would be a little reluctant to just take M_Hensley's suggestion of REDEFINE until you find out what the cause is, because you might thereby lose some functionality in an overlay program, or something.  If you do find a cause of a new definition or changed alias assignment, and can eliminate it, then Redefining won't be necessary [except in any drawings you may already have open at the time].

Kent Cooper, AIA
0 Likes
Message 10 of 12

carlos_al15
Community Visitor
Community Visitor
Causes:
  • The PICKFIRST system variable is set to 0 (zero).

Note: The PICKFIRST system variable controls whether objects can be selected before (noun-verb selection) or after (verb-noun) issuing a command.

  • The QAFLAGS variable is set to 0.
  • The installation of AutoCAD or the AutoCAD user profile is corrupted.
Solution:
Do one or more of the following:
  • On the command line in AutoCAD, type PICKFIRST and set the value to 1.
  • On the command line in AutoCAD, type QAFLAGS and set the value to 0 (zero).
  • Reset AutoCAD to defaults.
0 Likes
Message 11 of 12

pendean
Community Legend
Community Legend

@carlos_al15 You forgot to mention the equally important PICKADD variable

https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-47C2A568-30EE-4F07-916F-884CDE25CBCA 

 

 

Message 12 of 12

asolache2PLE5
Community Visitor
Community Visitor

AND... THIS IS THE ANSWER...

 

THANKS A LOT.... 

 

 

__________________________________________________________

Causes:
  • The PICKFIRST system variable is set to 0 (zero).

Note: The PICKFIRST system variable controls whether objects can be selected before (noun-verb selection) or after (verb-noun) issuing a command.

  • The QAFLAGS variable is set to 0.
  • The installation of AutoCAD or the AutoCAD user profile is corrupted.
Solution:
Do one or more of the following:
  • On the command line in AutoCAD, type PICKFIRST and set the value to 1.
  • On the command line in AutoCAD, type QAFLAGS and set the value to 0 (zero).
  • Reset AutoCAD to defaults.

 

 

0 Likes