alanjt Posted May 2, 2011 Author Posted May 2, 2011 Admittedly, it was just a guesstimate, but given what I do know about you personally (as little as that may be) I thought for sure you were in your (early?) thirties. If in fact you are only in your twenties, I owe you a legitimate apology, and a compliment... you're one of the single, most responsible, and mature twenty-somethings I've every met. For me, that's saying something; being a US Army Officer I've known Soldiers that possessed such a *rare* set of qualities. No matter your age; you're a man of character, and that is always appreciated. Well, I suppose you aren't too far off, I'm 28, so late twenties. You have my permission to remove the compliments. Quote
BlackBox Posted May 2, 2011 Posted May 2, 2011 Well, I suppose you aren't too far off, I'm 28, so late twenties. Alan, brotha' - good for you. It's not often I am so appreciative, and have truly learned so much from someone !@$% years my junior. :wink: You have my permission to remove the compliments. I don't often pay someone a compliment such as this. So when I do, how about you just be humble, and graciously accept. Quote
alanjt Posted May 2, 2011 Author Posted May 2, 2011 Alan, brotha' - good for you. It's not often I am so appreciative, and have truly learned so much from someone !@$% years my junior. :wink: I don't often pay someone a compliment such as this. So when I do, how about you just be humble, and graciously accept. Done and done. Quote
mikitari Posted May 7, 2012 Posted May 7, 2012 Dear alanjt, is your lisp attached anywhere here in this Thread? I can not find it and give it a try. Quote
alanjt Posted May 7, 2012 Author Posted May 7, 2012 Dear alanjt,is your lisp attached anywhere here in this Thread? I can not find it and give it a try. Code reattached. Quote
mikitari Posted May 7, 2012 Posted May 7, 2012 That was quick! Thank you, I will use your lisp tomorrow at work and see what it can do for me Best regards, Quote
alanjt Posted May 7, 2012 Author Posted May 7, 2012 That was quick! Thank you, I will use your lisp tomorrow at work and see what it can do for me Best regards, You're welcome. Quote
guitarguy1685 Posted July 19, 2012 Posted July 19, 2012 It's rediculously awesome LISP. Only missing one thing. The ability to change text of an attribute in miltileader block. I could really really use that! Still awesome Quote
Dadgad Posted July 20, 2012 Posted July 20, 2012 It's rediculously awesome LISP. Only missing one thing. The ability to change text of an attribute in miltileader block. I could really really use that! Still awesome If you are enamored of AWESOMENESS? Do yourself a big favor http://www.lee-mac.com/programs.html Thanks Lee! Quote
MKERUNNER Posted July 20, 2012 Posted July 20, 2012 Is there any way to incorporate a specification to select a window instead of an object? I am using this lisp in a script of mine to select lines of text from the same point to copy and paste into a title block. The problem lies where the point I select might be the empty part of the letter "L" or it might actually select the block. This make the selection inconsistent and the script faults too often. I am only an intern, and I don't have enough time to dive into the AutoLISP language in order to rewrite the selection routine to enable a window to be used. Thanks for the help! Quote
funkkybebel Posted November 13, 2015 Posted November 13, 2015 Hello Lee, and thank you for this lisp. Do you think it is easy to disable the copy of the text when the Destination is a text, mtext or whatelse inside a block (except attribute). The lisp in the first post had this feature, sadly it does not support mtext formatting like yours. Thank you. Quote
Lee Mac Posted November 13, 2015 Posted November 13, 2015 Hello Lee, and thank you for this lisp. You're welcome! Do you think it is easy to disable the copy of the text when the Destination is a text, mtext or whatelse inside a block (except attribute).The lisp in the first post had this feature, sadly it does not support mtext formatting like yours. Do you mean to restrict the user from selecting nested destination objects? Quote
funkybebel83 Posted November 13, 2015 Posted November 13, 2015 I meant that the other lisp wouldn't let me replace texts or mtexts or else witch are inside a block since they are not an attribute. And i think it's a great thing, because it's so dangerous to replace a text in a block (thus you only see that you mistaken once having regen your drawing !!! Drama inside ) By the way the lisp i'm talking is situated in the poste #6 of this thread. See the code when it says : "Can't paste to block's DText or MText " This would be a setting if you like, but personally i never change (the hard way) a text of a bloc (too dangerous) i prefer creating another block with another text. If ever i want to change the text or else witch is not an attribute i edit the block the normal way (bedit). Thank you. Quote
Lee Mac Posted November 14, 2015 Posted November 14, 2015 I meant that the other lisp wouldn't let me replace texts or mtexts or else witch are inside a block since they are not an attribute. In my CopySwapTextV1-4.lsp program here, add the following on a new line after line 189: ( (= 4 (length sel)) (princ "\nNested objects are not permitted.") ) Quote
funkybebel83 Posted November 14, 2015 Posted November 14, 2015 (edited) Lee, the addon is good for one way from Text to nested text into a block. But now it does not permitt to copy a text from nested block to another simple text. If you know what to change ? Thank you really. Edited November 14, 2015 by funkybebel83 Quote
Lee Mac Posted November 14, 2015 Posted November 14, 2015 Use the following hack in place of my last suggestion: ( (and (= ini "Multiple Settings Exit") (= 4 (length sel))) (princ "\nNested objects are not permitted.") ) Quote
funkybebel83 Posted November 14, 2015 Posted November 14, 2015 Use the following hack in place of my last suggestion: ( (and (= ini "Multiple Settings Exit") (= 4 (length sel))) (princ "\nNested objects are not permitted.") ) You're just amazing man ! Thank you so much ! It's really impressive, i hope some day to understand just a single line lol ! Greetings from France ! Quote
Lee Mac Posted November 14, 2015 Posted November 14, 2015 Thank you for your kind compliments - you're most welcome. Quote
broncos15 Posted March 9, 2016 Posted March 9, 2016 Lee, thank you so much for the copy swap text LISP routine. It has saved me so much time. I was curious, is there any way to edit it so that you can copy from a dimension to another dimension. I know that you can do it from the dimension to text, mtext, mleader, etc. but not to another dimension. For example, let's say that the dimension read 5.0' min. If you look at the actual text it is min because the is the dimension. It would be nice to be able to copy this to another dimension like 12.0'. Then I could copy it so that it would be 12.0' min, but the is kept for both dimensions. Would something like this be possible, or is it to complex to retain the field for the dimension? 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.