time table : @1:08 ssget function @3:33 sslength function to know the number of entities selected @4:52 how to filter a certain type of the entities when using ssget @7:06 to find the name f an entity using ssname @8:25 a program to find text entities with special character and change there coloers
Hi Sir, thanks for the video that is very useful for the cadd operaters and one more thing if their is any lisp for we have the polyline has 50 meter for that we need to offset the line on either side that means LEFT & RIGHT Side with different offset for every 5 meter this 5 meter is to be defined by the user. is their is any possibilities..
thank u for a helpful video i have a question can attribute be selected and managed via lisp like text direction and color since it required to be selected one by one...... and can blocks made outside the current drawing be selected by name
Hello Sir, I am searching for a Lisp that can arrange in order multiple polylines with different lengths where above each polyline a text that should follow the polyline in order to be able to use the data extraction and have them by order
Consider making those symbols local so they don't pollute the namespace. (defun c:ct (/ sset1 sslen counter txt txtData txtCont) ... ) Also stylistically - is preferred in Lisp to seperate symbol parts. So symbols like txt-data would be preferred to txtData. The while loop could be transformed into a repeat loop since you know the number of times you need to loop sslen. It also happens that sslength may return NIL so that should also be accounted for. Just some thoughts. :) It was helpful thank you.
@@amnoorulaman brother when u Export cad data to excel through file handling program that time your data's are printing reverse way. So that situation if u use this reverse function u will get your cad same type order to excel. Example in cad u mentioned below names Ram Rajesh Rakesh While doing file handling functions like write-line through while condition Your excel result should be Rakesh Rajesh Ram See the cad order and excel order both are in reciprocal way.. If u want same order to excel u should use reverse function then it wil be same order. 👍
Hi sir (defun c:cl() (setq ss (ssget "x" '((0. "INSERT") (2. "Lighting fixture")))) (setq count (sslength ss)) (alert (strcat "total no of lights: " (itoa count))) (princ) ) When I try to run this code I am getting ssget badlist error can you please help me
You are doing a great job, I know you must be too busy but please please don't ignore email. please help if someone approached you and contacted by email. Thanks & much appreciated for your tutorial videos.
First save your file as DXF formate Open that DXF file in cad Again save as dwg format Now open the DWG file your educational version stamp will be removed. (Note: actually once your trial expired u will get this issue or fake license u will get educational Verizon)
Hello, I have contacted by email can you please reply back. I do really need your help in creating a program for exporting data from AutoCAD into excel. Also can I have your contact number please?
time table :
@1:08 ssget function
@3:33 sslength function to know the number of entities selected
@4:52 how to filter a certain type of the entities when using ssget
@7:06 to find the name f an entity using ssname
@8:25 a program to find text entities with special character and change there coloers
Sir you are best teacher.aur bhi video bna do auto cadd se related
I enjoy these videos. Learned Scheme, which is a Lisp kind language, and never used it anywhere yet in real world. So these are inspiring videos!
Thank you. Please share to your friends.
Dear Master, As our previous telephone conversation, I understand clearly through this session. Thank you! Expecting more videos....
Thank you. Please share to your friends.
Very clear explanations! Well Done!
Thank you. Please share.
can you please teach how to change attribute values from a given block? great videos, thank you.
love from utcn, with you we pass our exam!!!!
:)
Thank you. Please share.
Can we use this to copy paste text
Hi Sir, thanks for the video that is very useful for the cadd operaters
and one more thing if their is any lisp for we have the polyline has 50 meter for that we need to offset the line on either side that means LEFT & RIGHT Side with different offset for every 5 meter this 5 meter is to be defined by the user. is their is any possibilities..
Need to develop a program.
Thank you. Please share to your friends.
Thank you a lot for these tutorials. they were so helpful
Thank you. Please share to your friends.
Very useful!!! 👍👍
Thank you. Please share to your friends and colleagues.
why you have to use list function if cons function already creating a dotted pair?
Excellent Illustration Sir
Thank you. Please share to your friends.
thank u for a helpful video i have a question can attribute be selected and managed via lisp like text direction and color since it required to be selected one by one...... and can blocks made outside the current drawing be selected by name
Attributes can be processed using advanced LISP functions. Study on ENTNEXT function.
Please share my video.
Sir could you provide "LISP" to filter polyline having area from 1 units to 3 units and similarly having area 2 sq units to 4.5 sq units .thanks
How can i select multiple object by creared using lisp program...
Hello Sir,
I am searching for a Lisp that can arrange in order multiple polylines with different lengths where above each polyline a text that should follow the polyline in order to be able to use the data extraction and have them by order
Nice tutorial
Thank you. Please share.
sir, thanks a lot for giving this lisp lesson. we are waiting for your next video, pls post it.
Dear Sir making a videos for how to draw 2d, 90degree elbows ,40degree elbow ,bend development &cone development
any prog about dcl?
Not yet my friend. Will do soon.
@@cyberCADsolutions can you give me your email id?
Can u shares, the autocad lisp programming course book
Useful
Hello
please how do I use AutoLISP to select object snap?
Consider making those symbols local so they don't pollute the namespace. (defun c:ct (/ sset1 sslen counter txt txtData txtCont) ... )
Also stylistically - is preferred in Lisp to seperate symbol parts. So symbols like txt-data would be preferred to txtData. The while loop could be transformed into a repeat loop since you know the number of times you need to loop sslen. It also happens that sslength may return NIL so that should also be accounted for. Just some thoughts. :) It was helpful thank you.
Thank you bro. This is a basic tutorial. In advance level I shall try to explain all these important things.
Hope new vedios
Dear Master,
can you help me, whats the use of "reverse" function in lisp? and where it is used?
(reverse (list 1 2 3)) results (3 2 1)
@@cyberCADsolutions Dear Master,
Ok. Thanks. But what is the purpose of "reverse" function. Can you give example?
@@amnoorulaman brother when u Export cad data to excel through file handling program that time your data's are printing reverse way. So that situation if u use this reverse function u will get your cad same type order to excel.
Example in cad u mentioned below names
Ram
Rajesh
Rakesh
While doing file handling functions like write-line through while condition
Your excel result should be
Rakesh
Rajesh
Ram
See the cad order and excel order both are in reciprocal way..
If u want same order to excel u should use reverse function then it wil be same order. 👍
Hi Sir its nice to see great knowing, if I want to pick a particular colour and delete that how to write that
and if need to create a layer and give a new color to it
Use this in ssget filter list. (cons 62 ColorCode).
color codes Red=1, Yellow=2, Green=3, Cyan=4...
Dear Master,
Need your help,
My block name is: TUBE_RHS 80x40x3.2_3GG32_
How to get string as: RHS 80x40x3.2 by selecting the block?
How to select multiple files from folder and process
Nice Video
Thank you. Please share to your friends.
I love this video but sir please upload videos in hindi also.thank you
Thank you. Please share with your colleagues.
Hi sir
(defun c:cl()
(setq ss (ssget "x" '((0. "INSERT") (2. "Lighting fixture"))))
(setq count (sslength ss))
(alert (strcat "total no of lights: " (itoa count)))
(princ)
)
When I try to run this code I am getting ssget badlist error can you please help me
(cons 0 "insert") (cons 2 "xxx")
thank you sir its working@@cyberCADsolutions
You are doing a great job, I know you must be too busy but please please don't ignore email. please help if someone approached you and contacted by email. Thanks & much appreciated for your tutorial videos.
Hi.can you make lsp AutoCAD for me .how to lock or unlock object by password ?
Sir student stump how to remove pea aek video banao sir please Auto Cad 2019 version please
First save your file as DXF formate
Open that DXF file in cad
Again save as dwg format
Now open the DWG file your educational version stamp will be removed.
(Note: actually once your trial expired u will get this issue or fake license u will get educational Verizon)
Hello, I have contacted by email can you please reply back. I do really need your help in creating a program for exporting data from AutoCAD into excel. Also can I have your contact number please?