Jump to content

stop automatically repeat select comand


sergiu_ciuhnenco

Recommended Posts

few days ago I tryied some lisp files , after those lisps I got a problem , It automatically repeating _select comand

"Command: _select

 

Select objects: !previousSelection"

 

after each comand , it begin to make me nervous :twisted::twisted:, how is it possible to stop it ????

Edited by sergiu_ciuhnenco
Link to comment
Share on other sites

  • Replies 25
  • Created
  • Last Reply

Top Posters In This Topic

  • rlx

    13

  • sergiu_ciuhnenco

    13

Popular Days

Top Posters In This Topic

Posted Images

few days ago I tryied some lisp files , after those lisps I got a problem , It automatically repeating _select comand

"Command: _select

 

Select objects: !previousSelection"

 

after each comand , it begin to make me nervous :twisted::twisted:, how is it possible to stop it ????

 

 

Obviously one of these lispfiles has an enter ("") to many in their routine. Disable them all and then load them one by one to see which one produces the problem.

 

 

gr. Rlx

Link to comment
Share on other sites

the problem is that I already deleted them , also forgot which one I used..

I tried to many to remember

 

 

maybe one of them has done something to your acad.lsp? Very difficult to see from here...:geek:

Link to comment
Share on other sites

I am not shure but probably I try this lisp

(defun c:dimobj (/ ent Minpt Maxpt cRds)   (if (setq ent (car (entsel "\nSelect Something to Dimension...")))     (progn       (vla-getBoundingBox     (vlax-ename->vla-object ent) 'Minpt 'Maxpt)       (setq cRds (mapcar 'vlax-safearray->list (list Minpt Maxpt))) [color=magenta]     (command "_dimlinear" [/color] [color=magenta]          (polar (cadr cRds) pi (- (caadr cRds) (caar cRds))) [/color] [color=magenta]          (cadr cRds)[/color] [color=magenta]          (polar (cadr cRds) (* 0.5 pi) (* 2 (getvar "DIMTXT"))))[/color] [color=magenta]     (command "_dimlinear"[/color] [color=magenta]          (cadr cRds)[/color] [color=magenta]          (polar (cadr cRds) (* 1.5 pi) (- (cadadr cRds) (cadar cRds)))[/color] [color=magenta]          (polar (cadr cRds) 0.0 (* 2 (getvar "DIMTXT")))))[/color]     (princ "\n<!> No Object Selected <!>"))   (princ))

http://www.cadtutor.net/forum/showthread.php?27634-Auto-dimesioning-polyline/page8

MSasu post

Link to comment
Share on other sites

I try to remlace it , I had a aditional copy of it , remplace it , same thing , still repeating " _select comand "

 

 

check your startup suite maybe? is there an .mnl loaded with your menu? or a arx file? I cant imagine that there would be a autocad setting to create this kind of behaviour.

 

 

maybe try (getvar "cmdnames") to see what command is active?.. quite strange...

Link to comment
Share on other sites

But you only have the problem when running this lisp?

 

 

Try to put the visual lisp editor in animation mode (pull down debug) and see what happens...

 

 

gr. R.

Link to comment
Share on other sites

The problem is always , also after shuting down the computer ,

Look an example I copy few lines , and what appear after finishing the comand

"Command: n COPY

Select objects: Specify opposite corner: 18 found

 

Select objects:

Current settings: Copy mode = Multiple

Specify base point or [Displacement/mOde] :

Specify second point or [Array] :

Specify second point or [Array/Exit/Undo] : *Cancel*

*Invalid*

 

Command: _select

 

Select objects: !previousSelection

18 found "

 

____________________

Textval "0"

Link to comment
Share on other sites

I think the problem is not in "System Variables dialog box" "SYSVDLG" I have instaled also autocad 2012 I compare the variables pickadd pickfirst also other variable , 2012 work fine 2013 always repeating "_select " comand

 

 

Command: COPYMODE

Enter new value for COPYMODE : 0

 

Command: PICKADD

Enter new value for PICKADD : 1

Command: TEXTEVAL

Enter new value for TEXTEVAL : 1

 

Command: n COPY

Select objects: Specify opposite corner: 4 found

 

Select objects:

Current settings: Copy mode = Multiple

Specify base point or [Displacement/mOde] :

Specify second point or [Array] :

Specify second point or [Array/Exit/Undo] : *Cancel*

*Invalid*

 

Command: _select

 

Select objects: !previousSelection

4 found

 

 

 

It works but, this comand is still here

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...