how to load linetypes into autolisp

how to load linetypes into autolisp

lamvieira
Enthusiast Enthusiast
1,259 Views
3 Replies
Message 1 of 4

how to load linetypes into autolisp

lamvieira
Enthusiast
Enthusiast

I need a sense of how to load linetypes into autolisp
Type:-
(commamd "_linetype" "_load" "acadiso.lin " "center" ""
(commamd "_linetype" "_load" "acadiso.lin " hidden" ""
(commamd "_linetype" "_load" "acadiso.lin " "phanton" ""
(load "acadiso.lin")

I would be very grateful if the answer came by my email
lamvieira@yahoo.com.br with further details of the path.
Thank you

I need a sense of how to load linetypes into autolisp
Type:-
(commamd "_linetype" "_load" "acadiso.lin " "center" ""
(commamd "_linetype" "_load" "acadiso.lin " hidden" ""
(commamd "_linetype" "_load" "acadiso.lin " "phanton" ""
(load "acadiso.lin")

I would be very grateful if the answer came by my email
lamvieira@yahoo.com.br with further details of the path.
Thank you

 

***POST TITLE EDITED FOR CLARITY***

0 Likes
Accepted solutions (2)
1,260 Views
3 Replies
Replies (3)
Message 2 of 4

Valentin_CAD
Mentor
Mentor
Accepted solution

@lamvieira ,

 

Consider the Visual LISP, AutoLISP and General Customization.

 



Select the "Mark as Solution" if my post solves your issue or answers your question.

Seleccione "Marcar como solución" si mi publicación resuelve o responde a su pregunta.


Emilio Valentin

0 Likes
Message 3 of 4

Kent1Cooper
Consultant
Consultant

@lamvieira wrote:

I need a sense of how to load linetypes into autolisp
Type:-
(commamd "_linetype" "_load" "acadiso.lin " "center" ""....


You need to spell command and phantom correctly.  And the linetype(s) come before the file.  And you need a closing right parenthesis.  And you can do them all together with comma separators, in one command.

(commamd "_.linetype" "_load" "center,hidden,phantom" "acadiso.lin" "")

 

Kent Cooper, AIA
0 Likes
Message 4 of 4

Kent1Cooper
Consultant
Consultant
Accepted solution

... I corrected one of the misspellings but not the other....  Try:

(command "_.linetype" "_load" "center,hidden,phantom" "acadiso.lin" "")
Kent Cooper, AIA