Update of /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20673
Added Files:
GetPreferredPlugins.scr SetPreferredPlugins.scr
Log Message:
First checkin
--- NEW FILE: SetPreferredPlugins.scr ---
-- File: "SetPreferredPlugins.scr"
-- Created: 2006-10-12 16:01:54
-- Author: Bernard Desgraupes <bde...@us...>
-- Sample AppleScript for Rezilla 1.1
tell application "Rezilla"
-- Assume the 'jpg ' and 'tiff' resource types can be edited by several
-- plugins and you want Rezilla to use the RezImagePlugin plugin for them
set preferred plugin to {Çclass tiffÈ:"RezImagePlugin.plugin", Çclass jpg È:"RezImagePlugin.plugin"}
end tell
--- NEW FILE: GetPreferredPlugins.scr ---
-- File: "GetPreferredPlugins.scr"
-- Created: 2006-10-12 16:01:53
-- Author: Bernard Desgraupes <bde...@us...>
-- Sample AppleScript for Rezilla 1.1
tell application "Rezilla"
get preferred plugins
end tell
|