ahazen Posted June 16, 2015 Posted June 16, 2015 I have hyperlinks to attach with names like 360-001.html or http://www.website.com/360-001. I was wondering if I could get help automating the hyperlinking process for these blocks. So block with attribute "001" would automatically be hyperlinked with http://www.website.com/360-001 when the command is run. Quote
BIGAL Posted June 17, 2015 Posted June 17, 2015 You can get at a blocks attribute value pretty easy using block name, tag name or pick a block and tag name, lots of example code here. In a lisp use -hyperlink and answer prompts. (setq obj (car (entsel "Pick block"))) (foreach att (vlax-invoke (vlax-ename->vla-object obj) 'getattributes) (if (= "PROJ_NO" (strcase (vla-get-tagstring att))) ; change to your tag name (setq val (vla-get-textstring att )) ) ; end if ) Quote
ahazen Posted June 17, 2015 Author Posted June 17, 2015 Thanks! RonJon helped me out. Learning from what he did now Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.