Results 1 to 2 of 2

Thread: Help with entmake syntax

  1. #1
    Member
    Join Date
    2002-12
    Posts
    28
    Login to Give a bone
    0

    Default Help with entmake syntax

    What is the correct syntax, using entmake, to create a text string with the following description:
    location(x,y,z): 10.30, 12.00, 0.00
    Justification: right
    Text style: simplex
    Text width: 0.70
    Text height: 0.30
    Text string: sample sting

    Thanks in advance,

    Mac

  2. #2
    I could stop if I wanted to
    Join Date
    2007-08
    Posts
    202
    Login to Give a bone
    0

    Default Re: Help with entmake syntax

    Hi,

    You can try this.
    Note: Simplex is a font not a Text Style. You have to specify a Text Style so I set Standard (DXF code 7).

    Code:
    (entmake
      '((0 . "TEXT")
        (10 0.0 0.0 0.0)
        (40 . 0.3)
        (1 . "sample string")
        (41 . 0.7)
        (7 . "Standard")
        (72 . 2)
        (11 10.3 12.0 0.0)
        (73 . 0)
       )
    )

Similar Threads

  1. entmake
    By gagage in forum AutoLISP
    Replies: 12
    Last Post: 2010-08-12, 06:39 PM
  2. Example of EntMake
    By ccowgill in forum AutoLISP
    Replies: 8
    Last Post: 2009-08-24, 08:37 PM
  3. Entmake UCS
    By Takuwind in forum AutoLISP
    Replies: 6
    Last Post: 2006-08-04, 08:01 PM
  4. entmake problems
    By jjacoby in forum AutoLISP
    Replies: 1
    Last Post: 2006-01-04, 01:13 PM
  5. UCS vs entmake
    By scwegner in forum AutoLISP
    Replies: 5
    Last Post: 2005-08-26, 04:04 AM

Posting Permissions

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