Jump to content

printing script?


Recommended Posts

Im kinda fishing here -but is it possible to write a scrip (macro?) to automate the printing process. This would be a matter of recording keystrokes and timing. I dont know if this is the right forum for this but I thought Ide ask and see what response I got.

Thanks

Link to comment

I need to clarify a few things-

I use VW 10

PC

I need to print layers and toggle to layers like pages

----

I found this post under vectorscripts -so I think Im on to something-----

-----------

I found this post ---

dkv

VectorWorks User

Member # 1572

posted 11-05-2001 06:09 AM

--------------------------------------------------------------------------------

hello,

we use VW 8.5.2 and a script to print layers, but if you want to print more layers you must hit the enter key for every layer. Is there a way to disable that whitout thirt party software ??

this is the script we use :

procedure printlayers;

var

i,j : Integer;

myH : Handle;

aStr : String;

begin

i := 0;

DoMenuText('Active only');

myH := FLayer;

while myH <> NIL do begin

i := i + 1;

aStr := GetLName(myH);

Layer(aStr);

Redraw;

DoMenuText('Print?');

myH := NextLayer(myH);

end;

end;

Run(printlayers);

Thanks..

I use VW10 and this script is obsolete

This would be perfect -almost- I also use layers-

and I also need an automated routine to enable printing between layers.

any help would be greatly appreciated.

Link to comment

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
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...