Player
Cool Uses
Photoshop
-- batch convert a folder full of images to GIF
-- the files must be indexed color or grayscale
set batchFolder to choose folder
tell application "Finder" to set listOfFiles to (get every file of folder batchFolder) as list
tell application "Adobe Photoshopª 3.0" to activate
repeat with imageFile in listOfFiles
tell application "Finder" to open imageFile using application file id "8BIM"
-- the above specifies Photoshop's creator code so that it can open non-Photoshop files
tell application "PreFab Playerª"
do menu menu item "Save As" of menu "File"
do menu popup item "CompuServe GIF" of popup "Format"
type {down arrow, ".GIF", enter} -- add suffix
do menu menu item "Close" of menu "File"
end tell
end repeat
MacUser Example (for 1.1)
Copyright 1993-97, PreFab Software, Inc. All Rights Reserved.
This site built and maintained using Stage Three, a set of custom Frontier scripts.