Author Topic: AutoCAD 2020 freeze While working  (Read 2686 times)

0 Members and 1 Guest are viewing this topic.

HasanCAD

  • Swamp Rat
  • Posts: 1420
AutoCAD 2020 freeze While working
« 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

ribarm

  • Gator
  • Posts: 3225
  • Marko Ribar, architect
Re: AutoCAD 2020 freeze While working
« Reply #1 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)
Marko Ribar, d.i.a. (graduated engineer of architecture)

:)

M.R. on Youtube

HasanCAD

  • Swamp Rat
  • Posts: 1420
Re: AutoCAD 2020 freeze While working
« Reply #2 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)

tombu

  • Bull Frog
  • Posts: 288
  • ByLayer=>Not0
Re: AutoCAD 2020 freeze While working
« Reply #3 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
Tom Beauford P.S.M.
Leon County FL Public Works - Windows 7 64 bit AutoCAD Civil 3D

HasanCAD

  • Swamp Rat
  • Posts: 1420
Re: AutoCAD 2020 freeze While working
« Reply #4 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