titech Posted March 20, 2007 Posted March 20, 2007 Please help me, I am now using AutoCAD 2007 and I am a new AutoCAD user. How can I draw a vector or a line with one or two arrow ends in AutoCAD ? It is really simple to do that in MS Word ! Thanks! Quote
Guest Alan Cullen Posted March 20, 2007 Posted March 20, 2007 You could have arrow heads as a block and insert them....or you could draw a LEADER. Quote
titech Posted March 22, 2007 Author Posted March 22, 2007 Thank you Alan Cullen, now I can use the LEADER command. Still I have another question, I will post a new thread! Quote
Gar Posted March 26, 2007 Posted March 26, 2007 You could draw a line of the correct length you want, then make a short dimension line, explode that small dimension, move the arrows of the exploded dimension line to where you want, and then delete the left-overs of that exploded dimension line... Quote
Rockford Posted March 27, 2007 Posted March 27, 2007 A dbl arrowed Dynamic Block with a Stretch and Rotation feature would be easy to create and use. You can then assign it to a tool palette from which you can drag it into your current drawing. Easy... Quote
lrding Posted October 15, 2009 Posted October 15, 2009 Rockford, that sounds perfect... how might one create such a tool? Quote
ReMark Posted October 15, 2009 Posted October 15, 2009 Irding: The post you are inquiring about is over two years old. I notice you are using AutoCAD 2000. If that is correct then you will not be able to use Dynamic Blocks since they were not a feature that release. Quote
Tankman Posted October 15, 2009 Posted October 15, 2009 tichech, welcome to the forums, where are you posting from? Use the "leader" command; properties set what you want! Quote
ReMark Posted October 15, 2009 Posted October 15, 2009 Not you too Tankman. titech posted in 2007. With just 3 posts I'm pretty sure he's been busy doing something else. Quote
alanjt Posted October 15, 2009 Posted October 15, 2009 Here's something quick and simple: (defun c:DblArw (/ #Pnt1 #Pnt2) (and (setq #Pnt1 (getpoint "\nSpecify leader start point: ")) (setq #Pnt2 (getpoint #Pnt1 "\nSpecify next point: ")) (not (command "_.leader" "_non" #Pnt1 "_non" #Pnt2 "" "" "_none")) (command "_.leader" "_non" #Pnt2 "_non" #Pnt1 "" "" "_none") ) ;_ and (princ) ) ;_ defun Quote
kgp43 Posted October 25, 2012 Posted October 25, 2012 Here's something quick and simple: (defun c:DblArw (/ #Pnt1 #Pnt2) (and (setq #Pnt1 (getpoint "\nSpecify leader start point: ")) (setq #Pnt2 (getpoint #Pnt1 "\nSpecify next point: ")) (not (command "_.leader" "_non" #Pnt1 "_non" #Pnt2 "" "" "_none")) (command "_.leader" "_non" #Pnt2 "_non" #Pnt1 "" "" "_none") ) ;_ and (princ) ) ;_ defun How do you use that? Quote
ReMark Posted October 25, 2012 Posted October 25, 2012 It's a lisp routine. Load it with the APPLOAD command. Run it by typing DBLARW at the command line and follow the prompts. First though you'll have to copy and paste it into Notepad and save it with the .lsp file extension. Name it anything you like. You do know how to do all this right? Quote
kgp43 Posted October 25, 2012 Posted October 25, 2012 Going to give it a try, don't think I will break anything Quote
ReMark Posted October 25, 2012 Posted October 25, 2012 If you do, my name is Dadgad. Good luck. Seriously. Quote
kgp43 Posted October 25, 2012 Posted October 25, 2012 Worked perfectly, thanks a lot. Is it possible to create a button, that activate the DWLARW command? 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.