Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/04/2022 in all areas

  1. http://www.lee-mac.com/dynamicblockfunctions.html first you can get dynamic blocks properties list by lee mac's solution like this ; http://www.lee-mac.com/dynamicblockfunctions.html (vl-load-com) (defun c:getdynprops ( / ss ssl index ename obj dynblkprops) (setq ss (ssget)) (setq ssl (sslength ss)) (setq index 0) (repeat ssl (setq ename (ssname ss index)) (setq obj (vlax-ename->vla-object ename)) (setq dynblkprops (LM:getdynprops obj)) (princ dynblkprops) (setq index (+ index 1)) );end of repeat (princ) );end of defun ;; Get Dynamic Block Properties - Lee Mac ;; Returns an association list of Dynamic Block properties & values. ;; blk - [vla] VLA Dynamic Block Reference object ;; Returns: [lst] Association list of ((<prop> . <value>) ... ) (defun LM:getdynprops ( blk ) (mapcar '(lambda ( x ) (cons (vla-get-propertyname x) (vlax-get x 'value))) (vlax-invoke blk 'getdynamicblockproperties) ) ) and also get 1 property (your target value) and also set that by Lee mac's modules
    1 point
  2. Does the cursor appear to stick to objects? Try setting the ROLLOVERTIPS (System Variable) to 0 to shut them off. I added a macro to toggle them Off/On: Command Name Rollover Tooltips Description Rollover Tooltips toggle Macro ^P(ai_onoff "rollovertips") ^P After adding it to the ribbon add the display name: $(if,$(getvar,rollovertips),!.)Rollover Tooltips Then it will display highlighted when toggled on.
    1 point
  3. See here: https://blogs.autodesk.com/autocad/battman-tuesday-tips-with-frank/
    1 point
  4. Also google dynamic door block there are some good examples by regulars here.
    1 point
  5. If you add parametric constraints to the geometry, then it will become "smart" geometry that will update depending on how you apply them. I suggest you look in the help of AutoCAD on "Parametric Constraints". Here is a video explaining them:
    1 point
  6. Here is the Visual Studio 2013 solution file for anyone interested. STSC_TextToGeometry_v19.zip
    1 point
×
×
  • Create New...