Recent Posts

Pages: 1 ... 7 8 [9] 10
81
CAD General / Re: *Cancel* during startup of first document in session.
« Last post by 57gmc on April 22, 2024, 10:40:52 AM »
Hi Kerry. I've wondered the same thing...every time I'm troubleshooting a startup issue. But then I forget about it. :-) If you're not an ADN member, I can ask for you.
82
Look at this area, specifically line 1537

Code - Auto/Visual Lisp: [Select]
  1. ;;-------------------------------------------------------------------------------;;
  2. ;;                          --=={  Setup Defaults  }==--                         ;;
  3. ;;-------------------------------------------------------------------------------;;
  4.  
  5.   (setq SymList '(*BFind_lst* *BFind_pat* *BFind_cur* *BFind_opn* *BFind_sub* *BFind_opt* *BFind_ser* *BFind_whr*)
  6.         ValList  (list 'nil cdir "0" "1" "1" (+ 1 8 16 32 64 128 256 512) "0" "0")) ;; Change 4th list item to "1" to set default to "Open Drawings"
  7. ;;                                    ^ HERE!
  8.  
84
AutoLISP (Vanilla / Visual) / Re: how can i keep settings
« Last post by masao on April 22, 2024, 09:03:13 AM »
   (mapcar 'setvar (cdr vars) '("1" "CENTER" 0.06))

   add "(vl-cmdf "_.ucs" "_world")"
 
   (while (setq ent (_Nentsel "\nSelect Circles or Arcs / PolyArcs: "))

i found must be add "(vl-cmdf "_.ucs" "_world")".

if not add and UCS not world "polyline object" get wrong center line points,but "polyline on block object" is ok.

add "(vl-cmdf "_.ucs" "_world")" is much easier.(other function is too much , i can't fix it.)
85
- Clear saved list.
Thanks
Line 1539
from
Code: [Select]
(or (findfile cfgfname)to
Code: [Select]
(or ;(findfile cfgfname)Is it correct?
87
AutoLISP (Vanilla / Visual) / Re: Is there DynDraw.arx for autocad2014?
« Last post by kruuger on April 22, 2024, 04:49:24 AM »
Where can i find DynDraw.arx for autocad2014 version ?
thanks a lot. :|
As usually last version of DynDraw can be downloaded from http://www.maestrogroup.com.ua/support/dyndraw.zip
DynDraw2013x32.arx and DynDraw2013x64.arx have to work with AutoCAD 2014.
Hello,


Any updates for 2025 arx?
Link to page doesn't work.


Thanks
88
AutoLISP (Vanilla / Visual) / Re: Align Multiple Text Objects to Curve
« Last post by reyas1123 on April 22, 2024, 03:56:27 AM »
Thank you so much


Quote

Dear Sir,
i downloaded the file and save to lsp file but has an error. tnx
ReyAs

Have you downloaded the API compressed package at https://github.com/xdcad/XDrx-API, decompressed it, and installed the files inside?
During installation, check all of them. After installation, start ACAD and check with F2. There will be a prompt whether the API is loaded.

=======

┌───────────────────────────────────┐
│  ≡ XDRX_API For AutoCAD Build 2024.04.28 ≡  │
│  http://www.xdcad.net  Mail:7598165@qq.com  │
└───────────────────────────────────┘

========


If normal,

It is possible to run the forum LISP
89
AutoLISP (Vanilla / Visual) / Re: Ssget filter for mirrored multileader
« Last post by dexus on April 22, 2024, 02:31:46 AM »
This works for me on your sample drawing.
Code - Auto/Visual Lisp: [Select]
  1. (sssetfirst nil (ssget "_X" '((0 . "MULTILEADER") (13 -1.0 0.0 0.0))))
Thanks ronjonp! This does work on my version of AutoCAD.
So switching to 13 instead of 11 does the trick, I guess since there is only one occurrence of this number it doesn't have any problems.

And ribarm, thanks for your input as well :-D
90
CAD General / *Cancel* during startup of first document in session.
« Last post by kdub_nz on April 22, 2024, 02:25:23 AM »
After 40+ years  I thought I'd try to discover why we get a ( or some ) *Cancel* messages during the startup of the initial drawing in a session.

attached are some images of the Console,  LoadedApps and Options.

The message 'AutoCAD menu utilities loaded' originate from the Acad2025doc.lsp ;

Line 574:            (princ "\nAutoCAD menu utilities ")
and line 1093:     (princ "loaded.")

So, sometime after Acad2025doc.lsp is loaded there are several issues that cause the *Cancel* message to display.
It appears that the issue 'MAY' ( assumption ) be related to menus,  ribbons and toolpalettes.

Firstly:   Does anyone know why this happens ?
Second: Is there anyone who hasn't seen these messages ?

Regards,

added: also posted at https://forums.autodesk.com/t5/autocad-forum/cancel-during-startup-of-first-document-in-session/m-p/12724323#M1129390

Pages: 1 ... 7 8 [9] 10