TheSwamp

CAD Forums => CAD General => Topic started by: HasanCAD on December 12, 2020, 10:51:39 AM

Title: AutoCAD 2020 freeze While working
Post by: HasanCAD on December 12, 2020, 10:51:39 AM
Hi All
I am using AutoCAD 2020 at work.
- While working autocad freeze for seconds or more then comes back to work.
- When copy or move objects autocad make reactor, How to stop REACTOR in AutoCAD while copy or move objects? (Attached snapshot)

Thanks
Title: Re: AutoCAD 2020 freeze While working
Post by: ribarm on December 12, 2020, 01:30:55 PM
Use LISP for copy and move... Aquire points by (getpoint) and finally supply points as tokens to COPY or MOVE commands... For ex. (command "_.COPY" ss "" "_non" p1 "_non" p2)
Title: Re: AutoCAD 2020 freeze While working
Post by: HasanCAD on December 13, 2020, 07:06:34 AM
Thanks  Good solution
Use LISP for copy and move... Aquire points by (getpoint) and finally supply points as tokens to COPY or MOVE commands... For ex. (command "_.COPY" ss "" "_non" p1 "_non" p2)
Title: Re: AutoCAD 2020 freeze While working
Post by: tombu on December 29, 2020, 03:21:19 PM
If I was having those issues with Copy and Move I'd add a toggle for DRAGMODE (System Variable)
http://help.autodesk.com/view/ACD/2021/ENU/?guid=GUID-0690A755-3B81-44E7-9AB2-5DFED263642F
Title: Re: AutoCAD 2020 freeze While working
Post by: HasanCAD on December 30, 2020, 01:13:16 AM
If I was having those issues with Copy and Move I'd add a toggle for DRAGMODE (System Variable)
http://help.autodesk.com/view/ACD/2021/ENU/?guid=GUID-0690A755-3B81-44E7-9AB2-5DFED263642F

YES
This is what I am looking for
Thanks