Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/13/2018 in all areas

  1. Oh wow Grrr , that's really original! Only thing I don't like is I didn't come up with this brilliant idea haha. Cool! Certainly a great way to narrow down a list of choices! Gonna play with it tomorrow...time to hit my bed...
    1 point
  2. This one will set all viewports shade plot to hidden, it even works with multiple layouts. (defun c:test (/) (vl-load-com) (setq doc (vlax-get-object "AutoCad.Application") adoc (vla-get-ActiveDocument doc) lao (vla-get-Layouts adoc) cnt (vla-get-Count lao) inc 0 ) (repeat cnt (setq cvprt (vla-item lao inc) inc (+ inc 1) blk (vla-get-Block cvprt) ) (vlax-for itm blk (if (vlax-property-available-p itm 'ShadePlot) (progn (vla-put-ShadePlot itm acShadePlotHidden) (vla-update itm) ) ) ) ) (princ) )
    1 point
  3. Wow! It's actually starting to look like a professional 3D program without all the frustrating interface weirdness of previous versions.
    1 point
×
×
  • Create New...