simulate enter key being pressed

Discussion in 'AutoCAD' started by swu, Feb 26, 2005.

  1. swu

    swu Guest

    type (ssget) at the command line

    what command can I issue from list to terminate selecting objects

    (command "") does not seem to work.

    Any suggestions? Thank you in advance.

    swu
     
    swu, Feb 26, 2005
    #1
  2. swu

    devitg Guest

    it shall be " " with a space between double quotes, better ";"
    so there is no doubt
    the [;] means ENTER
     
    devitg, Feb 26, 2005
    #2
  3. swu

    Tom Smith Guest

    I don't think you can terminate a plain (ssget) in that manner through lisp. You should use a different selection method, such as forcing single object selection or by points. Look at all the ssget options in help.
     
    Tom Smith, Feb 26, 2005
    #3
  4. Don't understand the need. Simply press enter or right click and (ssget) will terminate and the lisp will continue.

    Jesse
     
    Jesse_Pickrum, Feb 27, 2005
    #4
  5. swu

    Rodney Estep Guest

    I am not sure what you are trying to do.
    But it sounds like you have not tryed (ssget "X" or "W" or "CP" or "F"....
    Apparently you want to get a selection set with user input..
    Look in the help file and this will explain.
    For Example:
    (setq ss (ssget "X" (list (cons 0 "cirlce")))) will create a selection set
    of all circles in the drawing. No user input required.
     
    Rodney Estep, Feb 27, 2005
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.