Re: Rephrased print question
Re: Rephrased print question
- Subject: Re: Rephrased print question
- From: JJ <email@hidden>
- Date: Mon, 19 Mar 2001 10:24:08 +0100
>
What I actually need to find out, is whether there is anything out there
>
that allows printing DIRECLTY from AS. That is from lists or records -
>
without opening a file, and without having the system's print dialog pop up
>
and wait for user import. (The second criterion is more important than the
>
first.)
>
>
I am trying to develop some automation for a disabled user.
>
The fast way.
Prefab Player (
http://www.prefab.com/). It's a little extension that allows
a syntax like:
--YOUR SCRIPT & print document 1
tell app "Prefab Player"
disable user input
if exists button "OK" then
click button "OK"
end
enable user input
end
--END SCRIPT
You called "Prefab" when a print dialog appeared with buttons "OK",
"Cancel", etc.
The very fast way, Akua Sweets SA (
http://www.akua.com/)
automate alerts after (integer) -- The number of seconds after which
alerts are automatically 3OK29d.
[preferring button small integer] -- Prefer this button when
trying to first dismiss a dialog.
[pointer jumping boolean] -- Move the mouse to the default button?
[vertical bars boolean] -- Position the timer bars vertically?
[opposite bars boolean] -- Position time bars on the opposite side
(right or bottom) of dialogs.
[movables boolean] -- Handle movable modals as well as modals.
[shortcuts boolean] -- Enable keyboard shortcuts (letters activate
button with letter closest to start).
[log boolean] -- Used to disable the default logging of alert
text.
[persistent log boolean] -- Log to the 3Alertia Log2 file?
Result: string -- The accumulated alert text.
With this command you can dismiss EVERY DIALOG "after x seconds" in your
system until you restart.
JJ