Re: Converting application classes to raw codes in chevrons
Re: Converting application classes to raw codes in chevrons
- Subject: Re: Converting application classes to raw codes in chevrons
- From: Yvan KOENIG <email@hidden>
- Date: Mon, 2 Oct 2006 18:49:36 +0200
Le 2 oct. 2006 à 17:11, T&B a écrit : …
But how can I find out what <<boundsClass>> and <<fillColorClass>> are really supposed to be?
Years ago I did this by deleting the target app, opening the script in Script Editor, and choosing SimpleText (which had no scripting dictionary), to force it to decompile the AppleScript code words. Does that still work? Is there a better way?
There are alternatives:
tell application "AppleWorks 6" activate tell document 1 select menu item 3 of menu 5 tell drawing area to set myProperties to properties of graphic object 1 end tell end tell
using terms from application "AppleWorks 6" set myBounds to bounds of myProperties set myFillColor to fill color of myProperties end using terms from log myBounds log myFillColor
tell application "AppleWorks 6" to tell document 1 to tell drawing area to set myBoundz to bounds of myProperties log myBoundz
tell application "AppleWorks 6" to tell document 1 to tell drawing area to set myFillKolor to fill color of myProperties log myFillKolor
Yvan KOENIG |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden