Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
CAD General / Autocad alternative
« Last post by Cr00kedM0nk on April 22, 2024, 11:12:42 AM »
Hello not sure if this is the correct forum for this question, but here goes. We have been using Autocad forever to design/redesign Flexible Circuits or (FCB's), these circuits vary from a single copper layer up to 6 copper layers. We are now actively looking for a better/more efficient software. Any suggestions would be appreciated
32
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.
33
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.  
35
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.)
36
- Clear saved list.
Thanks
Line 1539
from
Code: [Select]
(or (findfile cfgfname)to
Code: [Select]
(or ;(findfile cfgfname)Is it correct?
38
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
39
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
40
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
Pages: 1 2 3 [4] 5 6 ... 10