[Rezilla-commits] RezillaExtras/AppleScript/Scripts GetHexWindowProperty.scr, 1.1, 1.2 ListTypes.sc
Brought to you by:
bdesgraupes
|
From: Bernard D. <bde...@us...> - 2006-11-18 07:12:18
|
Update of /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20218 Modified Files: GetHexWindowProperty.scr ListTypes.scr OpenDocInFork.scr OpenInterfaceEditor.scr Log Message: Finalizing 1.1 Index: ListTypes.scr =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts/ListTypes.scr,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ListTypes.scr 15 Jun 2005 05:17:33 -0000 1.2 +++ ListTypes.scr 18 Nov 2006 07:12:15 -0000 1.3 @@ -1,7 +1,7 @@ -- File: "ListTypes.scr" --- Created: 2005-06-14 07:34:56 +-- Created: 2006-10-12 16:01:54 -- Author: Bernard Desgraupes <bde...@us...> --- Sample AppleScript for Rezilla 1.0.6b +-- Sample AppleScript for Rezilla 1.1 tell application "Rezilla" set theMap to the map of map document 1 Index: OpenInterfaceEditor.scr =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts/OpenInterfaceEditor.scr,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- OpenInterfaceEditor.scr 15 Jun 2005 05:17:33 -0000 1.2 +++ OpenInterfaceEditor.scr 18 Nov 2006 07:12:15 -0000 1.3 @@ -1,7 +1,7 @@ -- File: "OpenInterfaceEditor.scr" --- Created: 2005-06-14 07:34:56 +-- Created: 2006-10-12 16:01:54 -- Author: Bernard Desgraupes <bde...@us...> --- Sample AppleScript for Rezilla 1.0.6b +-- Sample AppleScript for Rezilla 1.1 tell application "Rezilla" edit resource {"MENU", 128} of map 1 using interface Index: OpenDocInFork.scr =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts/OpenDocInFork.scr,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- OpenDocInFork.scr 15 Jun 2005 05:17:33 -0000 1.2 +++ OpenDocInFork.scr 18 Nov 2006 07:12:15 -0000 1.3 @@ -1,7 +1,7 @@ -- File: "OpenDocInFork.scr" --- Created: 2005-06-14 07:34:56 +-- Created: 2006-10-12 16:01:54 -- Author: Bernard Desgraupes <bde...@us...> --- Sample AppleScript for Rezilla 1.0.6b +-- Sample AppleScript for Rezilla 1.1 tell application "Rezilla" open "HD:foo:bar:somefile.rsrc" as alias from data fork Index: GetHexWindowProperty.scr =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/AppleScript/Scripts/GetHexWindowProperty.scr,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- GetHexWindowProperty.scr 15 Jun 2005 16:46:31 -0000 1.1 +++ GetHexWindowProperty.scr 18 Nov 2006 07:12:15 -0000 1.2 @@ -1,15 +1,16 @@ --- File: "ChooseDoc.scr" --- Created: 2005-06-15 12:07:19 +-- File: "GetHexWindowProperty.scr" +-- Created: 2006-10-12 16:01:53 -- Author: Bernard Desgraupes <bde...@us...> --- Sample AppleScript for Rezilla 1.0.6b +-- Sample AppleScript for Rezilla 1.1 tell application "Rezilla" - edit resource {"TEXT",128} of map document 1 using hexadecimal - set theWin to hexadecimal window 1 of map document 1 - set a to the startPos of theWin - set b to the endPos of theWin - set c to the maxPos of theWin - set d to the hex selection of theWin - set e to the text selection of theWin - {a, b, c, d, e} +edit resource {"TEXT",128} of map document 1 using hexadecimal +set theWin to hexadecimal window 1 of map document 1 +set a to the startPos of theWin +set b to the endPos of theWin +set c to the maxPos of theWin +set d to the hex selection of theWin +set e to the text selection of theWin +{a, b, c, d, e} + end tell |