Why does this...

Discussion in 'AutoCAD' started by ffejgreb, Mar 4, 2004.

  1. ffejgreb

    ffejgreb Guest

    give me a message of too few arguments when I run it?

    (defun tds (h1)
    (if
    (<= 1 (getvar "DIMSCALE"))
    (setq h1 (getdist "\nText height: "))
    (setq h1 (* (getvar "DIMSCALE") 0.25))
    )
    )

    Thanks in advance,

    Jeff
     
    ffejgreb, Mar 4, 2004
    #1
  2. ffejgreb

    Adesu Guest

    Hi ffejgreb,or you can try this

    (defun tds ()
    (if
    (<= 1 (getvar "DIMSCALE"))
    (setq h1 (getdist "\nText height: "))
    (setq h1 (* (getvar "DIMSCALE") 0.25))
    )
    )
     
    Adesu, Sep 29, 2004
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.