Update of /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv21072
Added Files:
GetPluginProperties.scr GetPluginTypes.scr
Log Message:
First checkin
--- NEW FILE: GetPluginProperties.scr ---
-- File: "GetPluginProperties.scr"
-- Created: 2006-10-12 16:01:53
-- Author: Bernard Desgraupes <bde...@us...>
-- Sample AppleScript for Rezilla 1.1
tell application "Rezilla"
set a to name of plugin 1
set b to version of plugin 1
set c to typecode of plugin 1
set d to creator of plugin 1
set e to loaded of plugin 1
{a, b, c, d, e}
end tell
--- NEW FILE: GetPluginTypes.scr ---
-- File: "GetPluginTypes.scr"
-- Created: 2006-10-12 16:01:53
-- Author: Bernard Desgraupes <bde...@us...>
-- Sample AppleScript for Rezilla 1.1
tell application "Rezilla"
get supported types of plugin "RezImagePlugin.plugin"
end tell
|