Visual LISP, AutoLISP and General Customization
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Publish through vlisp
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
432 Views, 2 Replies
02-01-2007 10:34 AM
Can you programmatically access the publish function? I couln't find it. Is it not similar to (vla-PlotTofile (vla-get-activedocument (vla-get-acad-object)) "c:\\myfilename.dwf")?
Any help would be great, thanks.
Any help would be great, thanks.
*CADDee.com
Re: Publish through vlisp
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-01-2007 01:34 PM in reply to:
masa10789
What I have done is use VBA to write a DDS file and then...
(command "-publish" (strcat (getvar "dwgprefix") "\PublishJob.DSD"))
The DDS file, as you may know, is the file format for a publish "job", it's
very much like an INI file. This file could also be written by lisp but
probably easier with VB or VBA.
Jim Dee
www.caddee.com
wrote in message news:5471890@discussion.autodesk.com...
Can you programmatically access the publish function? I couln't find it. Is
it not similar to (vla-PlotTofile (vla-get-activedocument
(vla-get-acad-object)) "c:\\myfilename.dwf")?
Any help would be great, thanks.
(command "-publish" (strcat (getvar "dwgprefix") "\PublishJob.DSD"))
The DDS file, as you may know, is the file format for a publish "job", it's
very much like an INI file. This file could also be written by lisp but
probably easier with VB or VBA.
Jim Dee
www.caddee.com
Can you programmatically access the publish function? I couln't find it. Is
it not similar to (vla-PlotTofile (vla-get-activedocument
(vla-get-acad-object)) "c:\\myfilename.dwf")?
Any help would be great, thanks.
Re: Publish through vlisp
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
02-02-2007 07:28 AM in reply to:
masa10789
Thanks for the help. Seems easy enough to do.
