Jump to content

How to call textmask command in Lisp


prakashreddy

Recommended Posts

Hi,

I am facing problem to call Textmask command in lisp. It is telling unknown command when i am loading. Can anyone help...

Link to comment
Share on other sites

TextMask is an Express Tools command and is a LISP function, not a registered command.

 

You will hence need to call it as a LISP function:

 

(c:textmask)

Or, you can study the textmask.lsp file in th Express folder of the AutoCAD Program Files and call the various TextMask subfunctions separately.

Link to comment
Share on other sites

Thanks Mr Lee

I used to call like this, But it is telling "error: too many arguments"

(c:textmask "l" 0.25)

(c:textmask (entlast) 0.25)

Link to comment
Share on other sites

The 'c:textmask' function definition cannot accept arguments, you will need to study the textmask.lsp file in the Express folder of the AutoCAD Program Files directory to find the relevant subfunction to call.

Link to comment
Share on other sites

Thanks Mr Lee

 

I got the solution. I am proceeding like this...

 

(acet-textmask-make-wipeout (entlast) 0)

 

it is working fine.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...