Need Automator action to set print settings urgently
Its kind of urgent.
Neerav
MacBook 5,1, Mac OS X (10.6.3), iPhone OS 3.1.3
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
MacBook 5,1, Mac OS X (10.6.3), iPhone OS 3.1.3
on open these_items
repeat with i from 1 to the count of these_items
set this_item to item i of these_items
--enter code that prints this_item
end repeat
end open
You run an on open handler that takes what is dropped on it (ie these_items). You then iterate through each item (ie this_item) and process it as you wish.and ((this_filetype is in the type_list) or (this_extension is in the extension_list) or (this_typeID is in typeIDs_list))
from
if (folder of the item_info is false) and (alias of the item_info is false) and ((this_filetype is in the type_list) or (this_extension is in the extension_list) or (this_typeID is in typeIDs_list)) then
repeat with i from 1 to the count of input
set this_item to item i of input
set the item_info to info for this_item
if (folder of the item_info is false) and (alias of the item_info is false) then
--do your print script on this_item
end if
end repeat
Need Automator action to set print settings urgently