Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Thread: Curso Autolisp

  1. #1
    Member
    Join Date
    2010-02
    Posts
    32
    Login to Give a bone
    0

    Default Curso Autolisp

    Olá pessoal,

    Alguem conhece um curso bom, ou o proprio da autodesk de autolisp avançado?
    Ou de ObjectARX, eu prefiro!

    grato!

  2. #2
    Member
    Join Date
    2008-08
    Location
    Brazil.
    Posts
    41
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    AutoLISP você tem como estudar pelo livro http://www.fca.pt/livros-html/208_0.html, um ótimo livro, até mesmo pra quem já possui conhecimento. Existe um brasileiro de ELIA YATHIE MATSUMOTO, mas não encontrei o livro na net disponível.

    Em ObjectARX existe um site em inglês muito bom, mas não me lembro o link, aqui na empresa é bloqueado blogs.

    O que eu puder ajudar em LISP estou ai, particularmente eu prefiro LISP, mesmo as pessoas achando que é limitada, coisa que não creio que seja.

    Abraços.

  3. #3
    Member
    Join Date
    2010-02
    Posts
    32
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Opa, valeu Marangoni.

    Mais esse livro ja tenho, e cansei de estudar ele, só não estudei a parte de vba, e estou com um pouco de duvida nos Reactores,
    creio que o blog de object arx é o do Fernando.
    http://arxdummies.blogspot.com/

    Ja entrei em contato com ele para procurar cursos.

    as duvidas que tenho em autolisp é em questão dos uso de Reactores, creio que o resto não tenho mais dificuldades...






    Quote Originally Posted by marangoni View Post
    AutoLISP você tem como estudar pelo livro http://www.fca.pt/livros-html/208_0.html, um ótimo livro, até mesmo pra quem já possui conhecimento. Existe um brasileiro de ELIA YATHIE MATSUMOTO, mas não encontrei o livro na net disponível.

    Em ObjectARX existe um site em inglês muito bom, mas não me lembro o link, aqui na empresa é bloqueado blogs.

    O que eu puder ajudar em LISP estou ai, particularmente eu prefiro LISP, mesmo as pessoas achando que é limitada, coisa que não creio que seja.

    Abraços.

  4. #4
    Member
    Join Date
    2008-08
    Location
    Brazil.
    Posts
    41
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Pra ser sincero conheci agora os reactores.

    Vou tentar usar ele em algumas coisas, achei muito interessante, dúvidas e soluções encontradas vamos trocando aqui no forum. ( O pessoal aqui esta muito parado ).

    Achei algo bacana no link;
    http://www.kxcad.net/autodesk/autoca...b7ccc-68f9.htm

    Dentro possui umas orientações de comando reactor como;
    vlr-deepclone-reactor
    Constructs an editor reactor object that notifies of a deep clone event

    vlr-docmanager-reactor
    Constructs a reactor object that notifies of events relating to drawing documents

    vlr-dwg-reactor
    Constructs an editor reactor object that notifies of a drawing event (for example, opening or closing a drawing file)

    vlr-dxf-reactor
    Constructs an editor reactor object that notifies of an event related to reading or writing a DXF file

    vlr-editor-reactor
    Constructs an editor reactor object

    vlr-insert-reactor
    Constructs an editor reactor object that notifies of an event related to block insertion

    vlr-linker-reactor
    Constructs a reactor object that notifies your application every time an ObjectARX application is loaded or unloaded

    vlr-lisp-reactor
    Constructs an editor reactor object that notifies of a LISP event

    vlr-miscellaneous-reactor
    Constructs an editor reactor object that does not fall under any other editor reactor types

    vlr-mouse-reactor
    Constructs an editor reactor object that notifies of a mouse event (for example, a double-click)

    vlr-notification
    Determines whether or not a reactor will fire if its associated namespace is not active

    vlr-object-reactor
    Constructs a drawing object reactor object

  5. #5
    Active Member
    Join Date
    2009-04
    Location
    São Paulo - Brazil
    Posts
    63
    Login to Give a bone
    0

    Lightbulb Re: Curso Autolisp

    Pessoal,

    Faz tempo que estou procurando este livro que vc's mencionaram "Programação em AutoCAD - Curso completo autores Fernando Luís Ferreira / João Santos" e nos revendedores, sempre esta esgotado?

    Como vc's o conceguiram?

    Valew!

  6. #6
    Member
    Join Date
    2008-08
    Location
    Brazil.
    Posts
    41
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Quote Originally Posted by ed_cristian.dwg View Post
    Pessoal,
    Faz tempo que estou procurando este livro que vc's mencionaram "Programação em AutoCAD - Curso completo autores Fernando Luís Ferreira / João Santos" e nos revendedores, sempre esta esgotado?
    Como vc's o conceguiram?
    Valew!
    Envie um e-mail para depinternacional@lidel.pt pedindo maiores informações.
    Lá te dirão como adquirir.

    Abraços

  7. #7
    Member
    Join Date
    2010-02
    Posts
    32
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Estava consultando este site também, muito bom.

    Mais o que seria esse objeto data que pede nos nas funções vlr's?
    eu usei nil e foi beleza!

    vo te passar um aqui,



    (vl-load-com)

    (defun DoThisAfterLayoutSwitch (Caller CmdSet)
    (prompt (strcat "\nLayout tab switched to: " (getvar "ctab")))
    (if (= (getvar "userr1") 0.0)
    (setvar "userr1" (getvar "dimscale"))
    )
    (if (= (getvar "ctab") "Model")
    (progn
    (setvar "textsize" (* (getvar "dimtxt") (getvar "userr1")))
    (setvar "dimscale" (getvar "userr1"))
    (setvar "ltscale" (* 0.375 (getvar "userr1")))
    )
    (progn
    (setvar "textsize" (getvar "dimtxt"))
    (setvar "dimscale" 1)
    (setvar "ltscale" 0.375)
    )
    )
    (princ)
    )
    (setq MyReactor1
    (vlr-miscellaneous-reactor
    nil
    '((:vlr-layoutSwitched . DoThisAfterLayoutSwitch))
    )
    )
    (defun Clear_My_Reactors ()
    (if (and MyReactor1 (vlr-added-p MyReactor1))
    (vlr-remove MyReactor1)
    )
    )
    (defun Clear_All_Reactors ( / TMP)
    (vlr-remove-all :vlr-dwg-reactor)
    )


    ele monitora as mudanças de layout/model. fazendo determinada função.



    Quote Originally Posted by marangoni View Post
    Pra ser sincero conheci agora os reactores.

    Vou tentar usar ele em algumas coisas, achei muito interessante, dúvidas e soluções encontradas vamos trocando aqui no forum. ( O pessoal aqui esta muito parado ).

    Achei algo bacana no link;
    http://www.kxcad.net/autodesk/autoca...b7ccc-68f9.htm

    Dentro possui umas orientações de comando reactor como;
    vlr-deepclone-reactor
    Constructs an editor reactor object that notifies of a deep clone event

    vlr-docmanager-reactor
    Constructs a reactor object that notifies of events relating to drawing documents

    vlr-dwg-reactor
    Constructs an editor reactor object that notifies of a drawing event (for example, opening or closing a drawing file)

    vlr-dxf-reactor
    Constructs an editor reactor object that notifies of an event related to reading or writing a DXF file

    vlr-editor-reactor
    Constructs an editor reactor object

    vlr-insert-reactor
    Constructs an editor reactor object that notifies of an event related to block insertion

    vlr-linker-reactor
    Constructs a reactor object that notifies your application every time an ObjectARX application is loaded or unloaded

    vlr-lisp-reactor
    Constructs an editor reactor object that notifies of a LISP event

    vlr-miscellaneous-reactor
    Constructs an editor reactor object that does not fall under any other editor reactor types

    vlr-mouse-reactor
    Constructs an editor reactor object that notifies of a mouse event (for example, a double-click)

    vlr-notification
    Determines whether or not a reactor will fire if its associated namespace is not active

    vlr-object-reactor
    Constructs a drawing object reactor object

  8. #8
    Active Member
    Join Date
    2009-04
    Location
    São Paulo - Brazil
    Posts
    63
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Alan / Marangoni.

    Tenho um material chamado. "Visual Lisp BIBLE" (inglês)

    nele há alguma informações sobre Reactor.

    Espero que seja útil a vc's.
    Attached Files Attached Files

  9. #9
    Member
    Join Date
    2010-02
    Posts
    32
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Bastante informações! valeu!
    o problema é que sofro no inglês! ;p

    Uma pergunta off topic, para uma pessoa que só faz programas em autolisp, qual a profissão certa na hora de registrar?

    vlw!


    Quote Originally Posted by ed_cristian.dwg View Post
    Alan / Marangoni.

    Tenho um material chamado. "Visual Lisp BIBLE" (inglês)

    nele há alguma informações sobre Reactor.

    Espero que seja útil a vc's.

  10. #10
    Active Member
    Join Date
    2009-04
    Location
    São Paulo - Brazil
    Posts
    63
    Login to Give a bone
    0

    Default Re: Curso Autolisp

    Aqui onde trabalho, sou Projetista Mecânico e em paralelo, tento resolver as necessidades de customização que aparecem como o meu humilde conhecimento de VLISP.

    Mas... existe alguma empresa que recrute um profissional que apenas tenha conhecimento em AUTOLISP?

Page 1 of 2 12 LastLast

Similar Threads

  1. Curso AutoLISP básico ONLINE - (em português)
    By marangoni in forum AutoLISP
    Replies: 0
    Last Post: 2013-07-23, 05:56 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •