rb-scpt 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGES +497 -0
  3. data/doc/aem-manual/01_introduction.html +60 -0
  4. data/doc/aem-manual/02_apioverview.html +107 -0
  5. data/doc/aem-manual/03_packingandunpackingdata.html +135 -0
  6. data/doc/aem-manual/04_references.html +409 -0
  7. data/doc/aem-manual/05_targetingapplications.html +164 -0
  8. data/doc/aem-manual/06_buildingandsendingevents.html +229 -0
  9. data/doc/aem-manual/07_findapp.html +63 -0
  10. data/doc/aem-manual/08_examples.html +94 -0
  11. data/doc/aem-manual/aemreferenceinheritance.gif +0 -0
  12. data/doc/aem-manual/index.html +56 -0
  13. data/doc/appscript-manual/01_introduction.html +94 -0
  14. data/doc/appscript-manual/02_aboutappscripting.html +247 -0
  15. data/doc/appscript-manual/03_quicktutorial.html +167 -0
  16. data/doc/appscript-manual/04_gettinghelp.html +188 -0
  17. data/doc/appscript-manual/05_keywordconversion.html +106 -0
  18. data/doc/appscript-manual/06_classesandenums.html +192 -0
  19. data/doc/appscript-manual/07_applicationobjects.html +211 -0
  20. data/doc/appscript-manual/08_realvsgenericreferences.html +96 -0
  21. data/doc/appscript-manual/09_referenceforms.html +241 -0
  22. data/doc/appscript-manual/10_referenceexamples.html +154 -0
  23. data/doc/appscript-manual/11_applicationcommands.html +245 -0
  24. data/doc/appscript-manual/12_commandexamples.html +138 -0
  25. data/doc/appscript-manual/13_performanceissues.html +142 -0
  26. data/doc/appscript-manual/14_notes.html +80 -0
  27. data/doc/appscript-manual/application_architecture.gif +0 -0
  28. data/doc/appscript-manual/application_architecture2.gif +0 -0
  29. data/doc/appscript-manual/finder_to_textedit_event.gif +0 -0
  30. data/doc/appscript-manual/index.html +62 -0
  31. data/doc/appscript-manual/relationships_example.gif +0 -0
  32. data/doc/appscript-manual/ruby_to_itunes_event.gif +0 -0
  33. data/doc/full.css +106 -0
  34. data/doc/index.html +45 -0
  35. data/doc/mactypes-manual/01_introduction.html +54 -0
  36. data/doc/mactypes-manual/02_aliasclass.html +124 -0
  37. data/doc/mactypes-manual/03_fileurlclass.html +126 -0
  38. data/doc/mactypes-manual/04_unitsclass.html +100 -0
  39. data/doc/mactypes-manual/index.html +53 -0
  40. data/doc/osax-manual/01_introduction.html +67 -0
  41. data/doc/osax-manual/02_interface.html +147 -0
  42. data/doc/osax-manual/03_examples.html +73 -0
  43. data/doc/osax-manual/04_notes.html +61 -0
  44. data/doc/osax-manual/index.html +53 -0
  45. data/doc/rb-appscript-logo.png +0 -0
  46. data/extconf.rb +65 -0
  47. data/rb-scpt.gemspec +14 -0
  48. data/sample/AB_export_vcard.rb +31 -0
  49. data/sample/AB_list_people_with_emails.rb +13 -0
  50. data/sample/Add_iCal_event.rb +21 -0
  51. data/sample/Create_daily_iCal_todos.rb +75 -0
  52. data/sample/Export_Address_Book_phone_numbers.rb +59 -0
  53. data/sample/Hello_world.rb +21 -0
  54. data/sample/List_iTunes_playlist_names.rb +11 -0
  55. data/sample/Make_Mail_message.rb +33 -0
  56. data/sample/Open_file_in_TextEdit.rb +13 -0
  57. data/sample/Organize_Mail_messages.rb +61 -0
  58. data/sample/Print_folder_tree.rb +16 -0
  59. data/sample/Select_all_HTML_files.rb +14 -0
  60. data/sample/Set_iChat_status.rb +24 -0
  61. data/sample/Simple_Finder_GUI_Scripting.rb +18 -0
  62. data/sample/Stagger_Finder_windows.rb +25 -0
  63. data/sample/TextEdit_demo.rb +130 -0
  64. data/sample/iTunes_top40_to_html.rb +71 -0
  65. data/src/SendThreadSafe.c +380 -0
  66. data/src/SendThreadSafe.h +139 -0
  67. data/src/lib/_aem/aemreference.rb +1022 -0
  68. data/src/lib/_aem/codecs.rb +662 -0
  69. data/src/lib/_aem/connect.rb +205 -0
  70. data/src/lib/_aem/encodingsupport.rb +77 -0
  71. data/src/lib/_aem/findapp.rb +85 -0
  72. data/src/lib/_aem/mactypes.rb +251 -0
  73. data/src/lib/_aem/send.rb +279 -0
  74. data/src/lib/_aem/typewrappers.rb +59 -0
  75. data/src/lib/_appscript/defaultterminology.rb +277 -0
  76. data/src/lib/_appscript/referencerenderer.rb +245 -0
  77. data/src/lib/_appscript/reservedkeywords.rb +116 -0
  78. data/src/lib/_appscript/safeobject.rb +249 -0
  79. data/src/lib/_appscript/terminology.rb +471 -0
  80. data/src/lib/aem.rb +253 -0
  81. data/src/lib/appscript.rb +1075 -0
  82. data/src/lib/kae.rb +1489 -0
  83. data/src/lib/osax.rb +659 -0
  84. data/src/rbae.c +979 -0
  85. data/test/README +3 -0
  86. data/test/test_aemreference.rb +118 -0
  87. data/test/test_appscriptcommands.rb +152 -0
  88. data/test/test_appscriptreference.rb +106 -0
  89. data/test/test_codecs.rb +186 -0
  90. data/test/test_findapp.rb +26 -0
  91. data/test/test_mactypes.rb +79 -0
  92. data/test/test_osax.rb +54 -0
  93. data/test/testall.sh +10 -0
  94. metadata +145 -0
@@ -0,0 +1,1489 @@
1
+ module KAE
2
+ KAEISHandleCGI = 'sdoc'
3
+ AeBuildSyntaxBadData = 12
4
+ AeBuildSyntaxBadDesc = 11
5
+ AeBuildSyntaxBadEOF = 2
6
+ AeBuildSyntaxBadHex = 6
7
+ AeBuildSyntaxBadNegative = 4
8
+ AeBuildSyntaxBadToken = 1
9
+ AeBuildSyntaxCoercedList = 18
10
+ AeBuildSyntaxMissingQuote = 5
11
+ AeBuildSyntaxNoCloseBrace = 15
12
+ AeBuildSyntaxNoCloseBracket = 14
13
+ AeBuildSyntaxNoCloseHex = 8
14
+ AeBuildSyntaxNoCloseParen = 13
15
+ AeBuildSyntaxNoCloseString = 10
16
+ AeBuildSyntaxNoColon = 17
17
+ AeBuildSyntaxNoEOF = 3
18
+ AeBuildSyntaxNoErr = 0
19
+ AeBuildSyntaxNoKey = 16
20
+ AeBuildSyntaxOddHex = 7
21
+ AeBuildSyntaxUncoercedDoubleAt = 19
22
+ AeBuildSyntaxUncoercedHex = 9
23
+ CADBAddress = 'cadb'
24
+ CAEList = 'list'
25
+ CAddress = 'addr'
26
+ CAddressSpec = 'cadr'
27
+ CAliasOrString = 'sf '
28
+ CAppleTalkAddress = 'cat '
29
+ CApplication = 'capp'
30
+ CApril = 'apr '
31
+ CArc = 'carc'
32
+ CAugust = 'aug '
33
+ CBoolean = 'bool'
34
+ CBusAddress = 'cbus'
35
+ CCell = 'ccel'
36
+ CChar = 'cha '
37
+ CClassIdentifier = 'pcls'
38
+ CClosure = 'clsr'
39
+ CCoerceKataHiragana = 'txkh'
40
+ CCoerceLowerCase = 'txlo'
41
+ CCoerceOneByteToTwoByte = 'txex'
42
+ CCoerceRemoveDiacriticals = 'txdc'
43
+ CCoerceRemoveHyphens = 'txhy'
44
+ CCoerceRemovePunctuation = 'txpc'
45
+ CCoerceRemoveWhiteSpace = 'txws'
46
+ CCoerceSmallKana = 'txsk'
47
+ CCoerceUpperCase = 'txup'
48
+ CCoerceZenkakuhankaku = 'txze'
49
+ CCoercion = 'coec'
50
+ CColorTable = 'clrt'
51
+ CColumn = 'ccol'
52
+ CConstant = 'enum'
53
+ CDecember = 'dec '
54
+ CDevSpec = 'cdev'
55
+ CDocument = 'docu'
56
+ CDrawingArea = 'cdrw'
57
+ CEnumeration = 'enum'
58
+ CEthernetAddress = 'cen '
59
+ CEventIdentifier = 'evnt'
60
+ CFTPItem = 'ftp '
61
+ CFebruary = 'feb '
62
+ CFile = 'file'
63
+ CFireWireAddress = 'cfw '
64
+ CFixed = 'fixd'
65
+ CFixedPoint = 'fpnt'
66
+ CFixedRectangle = 'frct'
67
+ CFriday = 'fri '
68
+ CGraphicLine = 'glin'
69
+ CGraphicObject = 'cgob'
70
+ CGraphicShape = 'cgsh'
71
+ CGraphicText = 'cgtx'
72
+ CGroupedGraphic = 'cpic'
73
+ CHTML = 'html'
74
+ CHandleBreakpoint = 'brak'
75
+ CHandler = 'hand'
76
+ CIPAddress = 'cip '
77
+ CInsertionLoc = 'insl'
78
+ CInsertionPoint = 'cins'
79
+ CInternetAddress = 'IPAD'
80
+ CIntlText = 'itxt'
81
+ CIntlWritingCode = 'intl'
82
+ CItem = 'citm'
83
+ CJanuary = 'jan '
84
+ CJuly = 'jul '
85
+ CJune = 'jun '
86
+ CKeyForm = 'kfrm'
87
+ CKeyIdentifier = 'kyid'
88
+ CKeystroke = 'kprs'
89
+ CLine = 'clin'
90
+ CLinkedList = 'llst'
91
+ CList = 'list'
92
+ CListElement = 'celm'
93
+ CListOrRecord = 'lr '
94
+ CListOrString = 'ls '
95
+ CListRecordOrString = 'lrs '
96
+ CLocalTalkAddress = 'clt '
97
+ CLongDateTime = 'ldt '
98
+ CLongFixed = 'lfxd'
99
+ CLongFixedPoint = 'lfpt'
100
+ CLongFixedRectangle = 'lfrc'
101
+ CLongInteger = 'long'
102
+ CLongPoint = 'lpnt'
103
+ CLongRectangle = 'lrct'
104
+ CMachine = 'mach'
105
+ CMachineLoc = 'mLoc'
106
+ CMarch = 'mar '
107
+ CMay = 'may '
108
+ CMenu = 'cmnu'
109
+ CMenuItem = 'cmen'
110
+ CMissingValue = 'msng'
111
+ CMonday = 'mon '
112
+ CMonth = 'mnth'
113
+ CNovember = 'nov '
114
+ CNumber = 'nmbr'
115
+ CNumberDateTimeOrString = 'nds '
116
+ CNumberOrDateTime = 'nd '
117
+ CNumberOrString = 'ns '
118
+ CObject = 'cobj'
119
+ CObjectBeingExamined = 'exmn'
120
+ CObjectSpecifier = 'obj '
121
+ COctober = 'oct '
122
+ COpenableObject = 'coob'
123
+ COval = 'covl'
124
+ CPICT = 'PICT'
125
+ CParagraph = 'cpar'
126
+ CPixel = 'cpxl'
127
+ CPixelMap = 'cpix'
128
+ CPolygon = 'cpgn'
129
+ CPreposition = 'prep'
130
+ CProcedure = 'proc'
131
+ CProperty = 'prop'
132
+ CQDPoint = 'QDpt'
133
+ CQDRectangle = 'qdrt'
134
+ CRGBColor = 'cRGB'
135
+ CRawData = 'rdat'
136
+ CReal = 'doub'
137
+ CRecord = 'reco'
138
+ CRectangle = 'crec'
139
+ CReference = 'obj '
140
+ CRotation = 'trot'
141
+ CRoundedRectangle = 'crrc'
142
+ CRow = 'crow'
143
+ CRunningAddress = 'radd'
144
+ CSCSIAddress = 'cscs'
145
+ CSaturday = 'sat '
146
+ CScript = 'scpt'
147
+ CSeconds = 'scnd'
148
+ CSelection = 'csel'
149
+ CSeptember = 'sep '
150
+ CShortInteger = 'shor'
151
+ CSmallReal = 'sing'
152
+ CStorage = 'stor'
153
+ CString = 'TEXT'
154
+ CStringClass = 'TEXT'
155
+ CSunday = 'sun '
156
+ CSymbol = 'symb'
157
+ CTable = 'ctbl'
158
+ CText = 'ctxt'
159
+ CTextFlow = 'cflo'
160
+ CTextStyles = 'tsty'
161
+ CThursday = 'thu '
162
+ CTokenRingAddress = 'ctok'
163
+ CTuesday = 'tue '
164
+ CType = 'type'
165
+ CURL = 'url '
166
+ CUSBAddress = 'cusb'
167
+ CUndefined = 'undf'
168
+ CUserIdentifier = 'uid '
169
+ CVector = 'vect'
170
+ CVersion = 'vers'
171
+ CWednesday = 'wed '
172
+ CWeekday = 'wkdy'
173
+ CWindow = 'cwin'
174
+ CWord = 'cwor'
175
+ CWritingCodeInfo = 'citl'
176
+ CZone = 'zone'
177
+ EADB = 'eadb'
178
+ EAddressSpec = 'eads'
179
+ EAnalogAudio = 'epau'
180
+ EAppleTalk = 'epat'
181
+ EAudioLineIn = 'ecai'
182
+ EAudioLineOut = 'ecal'
183
+ EAudioOut = 'ecao'
184
+ EBus = 'ebus'
185
+ ECDROM = 'ecd '
186
+ ECapsLockDown = 'Kclk'
187
+ EClearKey = 'ksG\x00'
188
+ ECommSlot = 'eccm'
189
+ ECommandDown = 'Kcmd'
190
+ EConduit = 'econ'
191
+ EControlDown = 'Kctl'
192
+ EDVD = 'edvd'
193
+ EDeleteKey = 'ks3\x00'
194
+ EDeviceType = 'edvt'
195
+ EDigitalAudio = 'epda'
196
+ EDisplay = 'edds'
197
+ EDownArrowKey = 'ks}\x00'
198
+ EEndKey = 'ksw\x00'
199
+ EEnterKey = 'ksL\x00'
200
+ EEscapeKey = 'ks5\x00'
201
+ EEthernet = 'ecen'
202
+ EF10Key = 'ksm\x00'
203
+ EF11Key = 'ksg\x00'
204
+ EF12Key = 'kso\x00'
205
+ EF13Key = 'ksi\x00'
206
+ EF14Key = 'ksk\x00'
207
+ EF15Key = 'ksq\x00'
208
+ EF1Key = 'ksz\x00'
209
+ EF2Key = 'ksx\x00'
210
+ EF3Key = 'ksc\x00'
211
+ EF4Key = 'ksv\x00'
212
+ EF5Key = 'ks`\x00'
213
+ EF6Key = 'ksa\x00'
214
+ EF7Key = 'ksb\x00'
215
+ EF8Key = 'ksd\x00'
216
+ EF9Key = 'kse\x00'
217
+ EFireWire = 'ecfw'
218
+ EFloppy = 'efd '
219
+ EForwardDelKey = 'ksu\x00'
220
+ EHD = 'ehd '
221
+ EHelpKey = 'ksr\x00'
222
+ EHomeKey = 'kss\x00'
223
+ EIP = 'epip'
224
+ EIRTalk = 'epit'
225
+ EInfrared = 'ecir'
226
+ EIrDA = 'epir'
227
+ EKeyKind = 'ekst'
228
+ EKeyboard = 'ekbd'
229
+ ELCD = 'edlc'
230
+ ELeftArrowKey = 'ks{\x00'
231
+ ELocalTalk = 'eclt'
232
+ EMacIP = 'epmi'
233
+ EMacVideo = 'epmv'
234
+ EMicrophone = 'ecmi'
235
+ EModem = 'edmm'
236
+ EModemPort = 'ecmp'
237
+ EModemPrinterPort = 'empp'
238
+ EModifiers = 'eMds'
239
+ EMonitorOut = 'ecmn'
240
+ EMouse = 'emou'
241
+ ENotStarted = 0
242
+ ENuBus = 'enub'
243
+ ENuBusCard = 'ednb'
244
+ EOptionDown = 'Kopt'
245
+ EPCIbus = 'ecpi'
246
+ EPCIcard = 'edpi'
247
+ EPCcard = 'ecpc'
248
+ EPDScard = 'epds'
249
+ EPDSslot = 'ecpd'
250
+ EPPP = 'eppp'
251
+ EPageDownKey = 'ksy\x00'
252
+ EPageUpKey = 'kst\x00'
253
+ EPointingDevice = 'edpd'
254
+ EPostScript = 'epps'
255
+ EPrinter = 'edpr'
256
+ EPrinterPort = 'ecpp'
257
+ EProtocol = 'epro'
258
+ EReturnKey = 'ks$\x00'
259
+ ERightArrowKey = 'ks|\x00'
260
+ ERun = 3
261
+ ERunnable = 1
262
+ ERunning = 2
263
+ ESCSI = 'ecsc'
264
+ ESVGA = 'epsg'
265
+ EScheme = 'esch'
266
+ ESerial = 'epsr'
267
+ EShiftDown = 'Ksft'
268
+ ESpeakers = 'edsp'
269
+ EStepIn = 1
270
+ EStepOut = 2
271
+ EStepOver = 0
272
+ EStopped = 3
273
+ EStorageDevice = 'edst'
274
+ ESvideo = 'epsv'
275
+ ETabKey = 'ks0\x00'
276
+ ETerminated = 4
277
+ ETokenRing = 'etok'
278
+ ETrackball = 'etrk'
279
+ ETrackpad = 'edtp'
280
+ EUSB = 'ecus'
281
+ EUpArrowKey = 'ks~\x00'
282
+ EVideoIn = 'ecvi'
283
+ EVideoMonitor = 'edvm'
284
+ EVideoOut = 'ecvo'
285
+ EnumArrows = 'arro'
286
+ EnumBooleanValues = 'boov'
287
+ EnumConsiderations = 'cons'
288
+ EnumConsidsAndIgnores = 'csig'
289
+ EnumJustification = 'just'
290
+ EnumKeyForm = 'kfrm'
291
+ EnumMiscValues = 'misc'
292
+ EnumPosition = 'posi'
293
+ EnumProtection = 'prtn'
294
+ EnumQuality = 'qual'
295
+ EnumSaveOptions = 'savo'
296
+ EnumStyle = 'styl'
297
+ EnumTransferMode = 'tran'
298
+ EurlAFP = 'afp '
299
+ EurlAT = 'at '
300
+ EurlEPPC = 'eppc'
301
+ EurlFTP = 'ftp '
302
+ EurlFile = 'file'
303
+ EurlGopher = 'gphr'
304
+ EurlHTTP = 'http'
305
+ EurlHTTPS = 'htps'
306
+ EurlIMAP = 'imap'
307
+ EurlLDAP = 'uldp'
308
+ EurlLaunch = 'laun'
309
+ EurlMail = 'mail'
310
+ EurlMailbox = 'mbox'
311
+ EurlMessage = 'mess'
312
+ EurlMulti = 'mult'
313
+ EurlNFS = 'unfs'
314
+ EurlNNTP = 'nntp'
315
+ EurlNews = 'news'
316
+ EurlPOP = 'upop'
317
+ EurlRTSP = 'rtsp'
318
+ EurlSNews = 'snws'
319
+ EurlTelnet = 'tlnt'
320
+ EurlUnknown = 'url?'
321
+ FormAbsolutePosition = 'indx'
322
+ FormName = 'name'
323
+ FormPropertyID = 'prop'
324
+ FormRange = 'rang'
325
+ FormRelativePosition = 'rele'
326
+ FormTest = 'test'
327
+ FormUniqueID = 'ID '
328
+ FormUserPropertyID = 'usrp'
329
+ FormWhose = 'whos'
330
+ KAEAND = 'AND '
331
+ KAEAbout = 'abou'
332
+ KAEActivate = 'actv'
333
+ KAEAfter = 'afte'
334
+ KAEAliasSelection = 'sali'
335
+ KAEAll = 'all '
336
+ KAEAllCaps = 'alcp'
337
+ KAEAlwaysInteract = 48
338
+ KAEAnswer = 'ansr'
339
+ KAEAny = 'any '
340
+ KAEApplicationClass = 'appl'
341
+ KAEApplicationDied = 'obit'
342
+ KAEArrowAtEnd = 'aren'
343
+ KAEArrowAtStart = 'arst'
344
+ KAEArrowBothEnds = 'arbo'
345
+ KAEAsk = 'ask '
346
+ KAEAutoDown = 'auto'
347
+ KAEAutosaveNow = 'asav'
348
+ KAEBefore = 'befo'
349
+ KAEBeginTransaction = 'begi'
350
+ KAEBeginning = 'bgng'
351
+ KAEBeginsWith = 'bgwt'
352
+ KAEBold = 'bold'
353
+ KAECanInteract = 32
354
+ KAECanSwitchLayer = 64
355
+ KAECase = 'case'
356
+ KAECaseConsiderMask = 1
357
+ KAECaseIgnoreMask = 65536
358
+ KAECaseSensEquals = 'cseq'
359
+ KAECentered = 'cent'
360
+ KAEChangeView = 'view'
361
+ KAEClone = 'clon'
362
+ KAEClose = 'clos'
363
+ KAECommandClass = 'cmnd'
364
+ KAECondensed = 'cond'
365
+ KAEContains = 'cont'
366
+ KAECopy = 'copy'
367
+ KAECoreSuite = 'core'
368
+ KAECountElements = 'cnte'
369
+ KAECreateElement = 'crel'
370
+ KAECreatePublisher = 'cpub'
371
+ KAECut = 'cut '
372
+ KAEDataArray = 0
373
+ KAEDeactivate = 'dact'
374
+ KAEDebugPOSTHeader = 1
375
+ KAEDebugReplyHeader = 2
376
+ KAEDebugXMLDebugAll = 4294967295
377
+ KAEDebugXMLRequest = 4
378
+ KAEDebugXMLResponse = 8
379
+ KAEDefaultTimeout = -1
380
+ KAEDelete = 'delo'
381
+ KAEDescArray = 3
382
+ KAEDescListFactorNone = 0
383
+ KAEDescListFactorType = 4
384
+ KAEDescListFactorTypeAndSize = 8
385
+ KAEDiacritic = 'diac'
386
+ KAEDiacriticConsiderMask = 2
387
+ KAEDiacriticIgnoreMask = 131072
388
+ KAEDirectCall = 1
389
+ KAEDiskEvent = 'disk'
390
+ KAEDoNotIgnoreHandler = 0
391
+ KAEDoObjectsExist = 'doex'
392
+ KAEDoScript = 'dosc'
393
+ KAEDontDisposeOnResume = 2147483648
394
+ KAEDontExecute = 8192
395
+ KAEDontReconnect = 128
396
+ KAEDontRecord = 4096
397
+ KAEDown = 'down'
398
+ KAEDrag = 'drag'
399
+ KAEDuplicateSelection = 'sdup'
400
+ KAEEditGraphic = 'edit'
401
+ KAEEmptyTrash = 'empt'
402
+ KAEEnd = 'end '
403
+ KAEEndTransaction = 'endt'
404
+ KAEEndsWith = 'ends'
405
+ KAEEquals = '= '
406
+ KAEExpanded = 'pexp'
407
+ KAEExpansion = 'expa'
408
+ KAEExpansionConsiderMask = 16
409
+ KAEExpansionIgnoreMask = 1048576
410
+ KAEFalse = 'fals'
411
+ KAEFast = 'fast'
412
+ KAEFinderEvents = 'FNDR'
413
+ KAEFirst = 'firs'
414
+ KAEFormulaProtect = 'fpro'
415
+ KAEFullyJustified = 'full'
416
+ KAEGetClassInfo = 'qobj'
417
+ KAEGetData = 'getd'
418
+ KAEGetDataSize = 'dsiz'
419
+ KAEGetEventInfo = 'gtei'
420
+ KAEGetInfoSelection = 'sinf'
421
+ KAEGetPrivilegeSelection = 'sprv'
422
+ KAEGetSuiteInfo = 'gtsi'
423
+ KAEGreaterThan = '> '
424
+ KAEGreaterThanEquals = '>= '
425
+ KAEGrow = 'grow'
426
+ KAEHTTPProxyHostAttr = 'xhth'
427
+ KAEHTTPProxyPortAttr = 'xhtp'
428
+ KAEHandleArray = 2
429
+ KAEHandleSimpleRanges = 32
430
+ KAEHiQuality = 'hiqu'
431
+ KAEHidden = 'hidn'
432
+ KAEHighLevel = 'high'
433
+ KAEHighPriority = 1
434
+ KAEHyphens = 'hyph'
435
+ KAEHyphensConsiderMask = 8
436
+ KAEHyphensIgnoreMask = 524288
437
+ KAEIDoMarking = 4
438
+ KAEIDoMinimum = 0
439
+ KAEIDoWhose = 1
440
+ KAEISAction = 'Kact'
441
+ KAEISActionPath = 'Kapt'
442
+ KAEISClientAddress = 'addr'
443
+ KAEISClientIP = 'Kcip'
444
+ KAEISContentType = 'ctyp'
445
+ KAEISFromUser = 'frmu'
446
+ KAEISFullRequest = 'Kfrq'
447
+ KAEISGetURL = 'gurl'
448
+ KAEISHTTPSearchArgs = 'kfor'
449
+ KAEISMethod = 'meth'
450
+ KAEISPassword = 'pass'
451
+ KAEISPostArgs = 'post'
452
+ KAEISReferrer = 'refr'
453
+ KAEISScriptName = 'scnm'
454
+ KAEISServerName = 'svnm'
455
+ KAEISServerPort = 'svpt'
456
+ KAEISUserAgent = 'Agnt'
457
+ KAEISUserName = 'user'
458
+ KAEISWebStarSuite = 'WWW\xbd'
459
+ KAEIgnoreAppEventHandler = 2
460
+ KAEIgnoreAppPhacHandler = 1
461
+ KAEIgnoreSysEventHandler = 8
462
+ KAEIgnoreSysPhacHandler = 4
463
+ KAEImageGraphic = 'imgr'
464
+ KAEInfo = 11
465
+ KAEIngoreBuiltInEventHandler = 16
466
+ KAEInteractWithAll = 2
467
+ KAEInteractWithLocal = 1
468
+ KAEInteractWithSelf = 0
469
+ KAEInternetSuite = 'gurl'
470
+ KAEIsUniform = 'isun'
471
+ KAEItalic = 'ital'
472
+ KAEKataHiragana = 'hika'
473
+ KAEKeyClass = 'keyc'
474
+ KAEKeyDescArray = 4
475
+ KAEKeyDown = 'kdwn'
476
+ KAELast = 'last'
477
+ KAELeftJustified = 'left'
478
+ KAELessThan = '< '
479
+ KAELessThanEquals = '<= '
480
+ KAELocalProcess = 3
481
+ KAELogOut = 'logo'
482
+ KAELowercase = 'lowc'
483
+ KAEMain = 0
484
+ KAEMakeObjectsVisible = 'mvis'
485
+ KAEMenuClass = 'menu'
486
+ KAEMenuSelect = 'mhit'
487
+ KAEMiddle = 'midd'
488
+ KAEMiscStandards = 'misc'
489
+ KAEModifiable = 'modf'
490
+ KAEMouseClass = 'mous'
491
+ KAEMouseDown = 'mdwn'
492
+ KAEMouseDownInBack = 'mdbk'
493
+ KAEMove = 'move'
494
+ KAEMoved = 'move'
495
+ KAENOT = 'NOT '
496
+ KAENavigationKey = 'nave'
497
+ KAENeverInteract = 16
498
+ KAENext = 'next'
499
+ KAENo = 'no '
500
+ KAENoArrow = 'arno'
501
+ KAENoDispatch = 0
502
+ KAENoReply = 1
503
+ KAENonmodifiable = 'nmod'
504
+ KAENormalPriority = 0
505
+ KAENotifyRecording = 'recr'
506
+ KAENotifyStartRecording = 'rec1'
507
+ KAENotifyStopRecording = 'rec0'
508
+ KAENullEvent = 'null'
509
+ KAEOR = 'OR '
510
+ KAEOSAXSizeResource = 'osiz'
511
+ KAEOpen = 'odoc'
512
+ KAEOpenApplication = 'oapp'
513
+ KAEOpenContents = 'ocon'
514
+ KAEOpenDocuments = 'odoc'
515
+ KAEOpenSelection = 'sope'
516
+ KAEOutline = 'outl'
517
+ KAEPackedArray = 1
518
+ KAEPageSetup = 'pgsu'
519
+ KAEPassSubDescs = 8
520
+ KAEPaste = 'past'
521
+ KAEPlain = 'plan'
522
+ KAEPrevious = 'prev'
523
+ KAEPrint = 'pdoc'
524
+ KAEPrintDocuments = 'pdoc'
525
+ KAEPrintSelection = 'spri'
526
+ KAEPrintWindow = 'pwin'
527
+ KAEProcessNonReplyEvents = 32768
528
+ KAEPromise = 'prom'
529
+ KAEPunctuation = 'punc'
530
+ KAEPunctuationConsiderMask = 32
531
+ KAEPunctuationIgnoreMask = 2097152
532
+ KAEPutAwaySelection = 'sput'
533
+ KAEQDAdMax = 'admx'
534
+ KAEQDAdMin = 'admn'
535
+ KAEQDAddOver = 'addo'
536
+ KAEQDAddPin = 'addp'
537
+ KAEQDBic = 'bic '
538
+ KAEQDBlend = 'blnd'
539
+ KAEQDCopy = 'cpy '
540
+ KAEQDNotBic = 'nbic'
541
+ KAEQDNotCopy = 'ncpy'
542
+ KAEQDNotOr = 'ntor'
543
+ KAEQDNotXor = 'nxor'
544
+ KAEQDOr = 'or '
545
+ KAEQDSubOver = 'subo'
546
+ KAEQDSubPin = 'subp'
547
+ KAEQDSupplementalSuite = 'qdsp'
548
+ KAEQDXor = 'xor '
549
+ KAEQueueReply = 2
550
+ KAEQuickdrawSuite = 'qdrw'
551
+ KAEQuitAll = 'quia'
552
+ KAEQuitApplication = 'quit'
553
+ KAERPCClass = 'rpc '
554
+ KAERawKey = 'rkey'
555
+ KAEReallyLogOut = 'rlgo'
556
+ KAERedo = 'redo'
557
+ KAERegular = 'regl'
558
+ KAERemoteProcess = 4
559
+ KAEReopenApplication = 'rapp'
560
+ KAEReplace = 'rplc'
561
+ KAERequiredSuite = 'reqd'
562
+ KAEResized = 'rsiz'
563
+ KAEResolveNestedLists = 16
564
+ KAERestart = 'rest'
565
+ KAEResume = 'rsme'
566
+ KAERevealSelection = 'srev'
567
+ KAERevert = 'rvrt'
568
+ KAERightJustified = 'rght'
569
+ KAESOAPScheme = 'SOAP'
570
+ KAESameProcess = 2
571
+ KAESave = 'save'
572
+ KAEScrapEvent = 'scrp'
573
+ KAEScriptingSizeResource = 'scsz'
574
+ KAESelect = 'slct'
575
+ KAESetData = 'setd'
576
+ KAESetPosition = 'posn'
577
+ KAEShadow = 'shad'
578
+ KAESharedScriptHandler = 'wscp'
579
+ KAESharing = 13
580
+ KAEShowClipboard = 'shcl'
581
+ KAEShowPreferences = 'pref'
582
+ KAEShowRestartDialog = 'rrst'
583
+ KAEShowShutdownDialog = 'rsdn'
584
+ KAEShutDown = 'shut'
585
+ KAESleep = 'slep'
586
+ KAESmallCaps = 'smcp'
587
+ KAESmallKana = 'skna'
588
+ KAESocks4Protocol = 4
589
+ KAESocks5Protocol = 5
590
+ KAESocksHostAttr = 'xshs'
591
+ KAESocksPasswordAttr = 'xshw'
592
+ KAESocksPortAttr = 'xshp'
593
+ KAESocksProxyAttr = 'xsok'
594
+ KAESocksUserAttr = 'xshu'
595
+ KAESpecialClassProperties = 'c@#!'
596
+ KAEStartRecording = 'reca'
597
+ KAEStopRecording = 'recc'
598
+ KAEStoppedMoving = 'stop'
599
+ KAEStrikethrough = 'strk'
600
+ KAESubscript = 'sbsc'
601
+ KAESuperscript = 'spsc'
602
+ KAESuspend = 'susp'
603
+ KAETableSuite = 'tbls'
604
+ KAETerminologyExtension = 'aete'
605
+ KAETextSuite = 'TEXT'
606
+ KAETransactionTerminated = 'ttrm'
607
+ KAETrue = 'true'
608
+ KAEUTApostrophe = 3
609
+ KAEUTChangesState = 12
610
+ KAEUTDirectParamIsReference = 9
611
+ KAEUTEnumListIsExclusive = 10
612
+ KAEUTEnumerated = 13
613
+ KAEUTEnumsAreTypes = 11
614
+ KAEUTFeminine = 2
615
+ KAEUTHasReturningParam = 31
616
+ KAEUTMasculine = 1
617
+ KAEUTNotDirectParamIsTarget = 8
618
+ KAEUTOptional = 15
619
+ KAEUTParamIsReference = 9
620
+ KAEUTParamIsTarget = 8
621
+ KAEUTPlural = 0
622
+ KAEUTPropertyIsReference = 9
623
+ KAEUTReadWrite = 12
624
+ KAEUTReplyIsReference = 9
625
+ KAEUTTightBindingFunction = 12
626
+ KAEUTlistOfItems = 14
627
+ KAEUnderline = 'undl'
628
+ KAEUndo = 'undo'
629
+ KAEUnknownSource = 0
630
+ KAEUp = 'up '
631
+ KAEUpdate = 'updt'
632
+ KAEUseHTTPProxyAttr = 'xupr'
633
+ KAEUseRelativeIterators = 64
634
+ KAEUseSocksAttr = 'xscs'
635
+ KAEUseStandardDispatch = 4294967295
636
+ KAEUserTerminology = 'aeut'
637
+ KAEVirtualKey = 'keyc'
638
+ KAEWaitReply = 3
639
+ KAEWakeUpEvent = 'wake'
640
+ KAEWantReceipt = 512
641
+ KAEWhiteSpace = 'whit'
642
+ KAEWhiteSpaceConsiderMask = 4
643
+ KAEWhiteSpaceIgnoreMask = 262144
644
+ KAEWholeWordEquals = 'wweq'
645
+ KAEWindowClass = 'wind'
646
+ KAEXMLRPCScheme = 'RPC2'
647
+ KAEYes = 'yes '
648
+ KAEZenkakuHankaku = 'zkhk'
649
+ KAEZoom = 'zoom'
650
+ KAEZoomIn = 7
651
+ KAEZoomOut = 8
652
+ KASAdd = '+ '
653
+ KASAnd = 'AND '
654
+ KASAppleScriptSuite = 'ascr'
655
+ KASComesAfter = 'cafr'
656
+ KASComesBefore = 'cbfr'
657
+ KASComment = 'cmnt'
658
+ KASCommentEvent = 'cmnt'
659
+ KASConcatenate = 'ccat'
660
+ KASConsiderReplies = 'rmte'
661
+ KASConsiderRepliesConsiderMask = 64
662
+ KASConsiderRepliesIgnoreMask = 4194304
663
+ KASContains = 'cont'
664
+ KASCurrentApplication = 'cura'
665
+ KASDefaultMaxHeapSize = 32
666
+ KASDefaultMaxStackSize = 16
667
+ KASDefaultMinHeapSize = 4
668
+ KASDefaultMinStackSize = 4
669
+ KASDefaultPreferredHeapSize = 16
670
+ KASDefaultPreferredStackSize = 16
671
+ KASDivide = '/ '
672
+ KASEndsWith = 'ends'
673
+ KASEqual = '= '
674
+ KASErrorEventCode = 'err '
675
+ KASGreaterThan = '> '
676
+ KASGreaterThanOrEqual = '>= '
677
+ KASHasOpenHandler = 'hsod'
678
+ KASInitializeEventCode = 'init'
679
+ KASLaunchEvent = 'noop'
680
+ KASLessThan = '< '
681
+ KASLessThanOrEqual = '<= '
682
+ KASMagicEndTellEvent = 'tend'
683
+ KASMagicTellEvent = 'tell'
684
+ KASMultiply = '* '
685
+ KASNegate = 'neg '
686
+ KASNot = 'NOT '
687
+ KASNotEqual = 2904563744
688
+ KASNumberOfSourceStyles = 8
689
+ KASNumericStrings = 'nume'
690
+ KASNumericStringsConsiderMask = 128
691
+ KASNumericStringsIgnoreMask = 8388608
692
+ KASOr = 'OR '
693
+ KASPower = '^ '
694
+ KASPrepositionalSubroutine = 'psbr'
695
+ KASQuotient = 'div '
696
+ KASRemainder = 'mod '
697
+ KASScriptEditorSuite = 'ToyS'
698
+ KASSelectGetAppTerminology = 4362
699
+ KASSelectGetAppTerminologyObsolete = 4357
700
+ KASSelectGetHandler = 4361
701
+ KASSelectGetHandlerNames = 4365
702
+ KASSelectGetHandlerObsolete = 4356
703
+ KASSelectGetProperty = 4359
704
+ KASSelectGetPropertyNames = 4364
705
+ KASSelectGetPropertyObsolete = 4354
706
+ KASSelectGetSourceStyleNames = 4100
707
+ KASSelectGetSourceStyles = 4099
708
+ KASSelectGetSysTerminology = 4363
709
+ KASSelectInit = 4097
710
+ KASSelectSetHandler = 4360
711
+ KASSelectSetHandlerObsolete = 4355
712
+ KASSelectSetProperty = 4358
713
+ KASSelectSetPropertyObsolete = 4353
714
+ KASSelectSetSourceStyles = 4098
715
+ KASSourceStyleApplicationKeyword = 3
716
+ KASSourceStyleComment = 4
717
+ KASSourceStyleLanguageKeyword = 2
718
+ KASSourceStyleLiteral = 5
719
+ KASSourceStyleNormalText = 1
720
+ KASSourceStyleObjectSpecifier = 7
721
+ KASSourceStyleUncompiledText = 0
722
+ KASSourceStyleUserSymbol = 6
723
+ KASStartLogEvent = 'log1'
724
+ KASStartsWith = 'bgwt'
725
+ KASStopLogEvent = 'log0'
726
+ KASSubroutineEvent = 'psbr'
727
+ KASSubtract = '- '
728
+ KASTypeNamesSuite = 'tpnm'
729
+ KAlwaysSendSubject = 8192
730
+ KAnyTransactionID = 0
731
+ KAppleScriptSubtype = 'ascr'
732
+ KAutoGenerateReturnID = -1
733
+ KBlockFillText = 6
734
+ KByCommentView = 6
735
+ KByDateView = 3
736
+ KByIconView = 1
737
+ KByKindView = 5
738
+ KByLabelView = 7
739
+ KByNameView = 2
740
+ KBySizeView = 4
741
+ KBySmallIcon = 0
742
+ KByVersionView = 8
743
+ KCaretPosition = 1
744
+ KCleanUpAEUT = 'cdut'
745
+ KConnSuite = 'macc'
746
+ KConvertedText = 4
747
+ KCoreEventClass = 'aevt'
748
+ KDialectBundleResType = 'Dbdl'
749
+ KDigiHubBlankCD = 'bcd '
750
+ KDigiHubBlankDVD = 'bdvd'
751
+ KDigiHubEventClass = 'dhub'
752
+ KDigiHubMusicCD = 'aucd'
753
+ KDigiHubPictureCD = 'picd'
754
+ KDigiHubVideoDVD = 'vdvd'
755
+ KDoFolderActionEvent = 'fola'
756
+ KDontFindAppBySignature = 16384
757
+ KFAAttachCommand = 'atfa'
758
+ KFAEditCommand = 'edfa'
759
+ KFAFileParam = 'faal'
760
+ KFAIndexParam = 'indx'
761
+ KFARemoveCommand = 'rmfa'
762
+ KFAServerApp = 'ssrv'
763
+ KFASuiteCode = 'faco'
764
+ KFolderActionCode = 'actn'
765
+ KFolderClosedEvent = 'fclo'
766
+ KFolderItemsAddedEvent = 'fget'
767
+ KFolderItemsRemovedEvent = 'flos'
768
+ KFolderOpenedEvent = 'fopn'
769
+ KFolderWindowMovedEvent = 'fsiz'
770
+ KGSSSelectGenericToRealID = 4101
771
+ KGSSSelectGetDefaultScriptingComponent = 4097
772
+ KGSSSelectGetScriptingComponent = 4099
773
+ KGSSSelectGetScriptingComponentFromStored = 4100
774
+ KGSSSelectOutOfRange = 4103
775
+ KGSSSelectRealToGenericID = 4102
776
+ KGSSSelectSetDefaultScriptingComponent = 4098
777
+ KGenericComponentVersion = 256
778
+ KGetAETE = 'gdte'
779
+ KGetAEUT = 'gdut'
780
+ KGetSelectedText = 'gtxt'
781
+ KItemList = 'flst'
782
+ KLaunchToGetTerminology = 32768
783
+ KNewSizeParameter = 'fnsz'
784
+ KNextBody = 1
785
+ KNoTimeOut = -2
786
+ KOSACanGetSource = 'gsrc'
787
+ KOSAComponentType = 'osa '
788
+ KOSADebuggerCreateSession = 2305
789
+ KOSADebuggerDisposeCallFrame = 2315
790
+ KOSADebuggerDisposeSession = 2308
791
+ KOSADebuggerGetBreakpoint = 2320
792
+ KOSADebuggerGetCallFrameState = 2311
793
+ KOSADebuggerGetCurrentCallFrame = 2310
794
+ KOSADebuggerGetDefaultBreakpoint = 2322
795
+ KOSADebuggerGetPreviousCallFrame = 2314
796
+ KOSADebuggerGetSessionState = 2306
797
+ KOSADebuggerGetStatementRanges = 2309
798
+ KOSADebuggerGetVariable = 2312
799
+ KOSADebuggerSessionStep = 2307
800
+ KOSADebuggerSetBreakpoint = 2321
801
+ KOSADebuggerSetVariable = 2313
802
+ KOSADontUsePhac = 1
803
+ KOSAErrorApp = 'erap'
804
+ KOSAErrorArgs = 'erra'
805
+ KOSAErrorBriefMessage = 'errb'
806
+ KOSAErrorExpectedType = 'errt'
807
+ KOSAErrorMessage = 'errs'
808
+ KOSAErrorNumber = 'errn'
809
+ KOSAErrorOffendingObject = 'erob'
810
+ KOSAErrorPartialResult = 'ptlr'
811
+ KOSAErrorRange = 'erng'
812
+ KOSAFileType = 'osas'
813
+ KOSAGenericScriptingComponentSubtype = 'scpt'
814
+ KOSAModeAlwaysInteract = 48
815
+ KOSAModeAugmentContext = 4
816
+ KOSAModeCanInteract = 32
817
+ KOSAModeCantSwitchLayer = 64
818
+ KOSAModeCompileIntoContext = 2
819
+ KOSAModeDispatchToDirectObject = 131072
820
+ KOSAModeDisplayForHumans = 8
821
+ KOSAModeDoRecord = 4096
822
+ KOSAModeDontDefine = 1
823
+ KOSAModeDontGetDataForArguments = 262144
824
+ KOSAModeDontReconnect = 128
825
+ KOSAModeDontStoreParent = 65536
826
+ KOSAModeFullyQualifyDescriptors = 524288
827
+ KOSAModeNeverInteract = 16
828
+ KOSAModeNull = 0
829
+ KOSAModePreventGetSource = 1
830
+ KOSANoDispatch = 0
831
+ KOSANullMode = 0
832
+ KOSANullScript = 0
833
+ KOSARecordedText = 'recd'
834
+ KOSAScriptBestType = 'best'
835
+ KOSAScriptIsModified = 'modi'
836
+ KOSAScriptIsTypeCompiledScript = 'cscr'
837
+ KOSAScriptIsTypeScriptContext = 'cntx'
838
+ KOSAScriptIsTypeScriptValue = 'valu'
839
+ KOSAScriptResourceType = 'scpt'
840
+ KOSASelectAvailableDialectCodeList = 1797
841
+ KOSASelectAvailableDialects = 1795
842
+ KOSASelectCoerceFromDesc = 769
843
+ KOSASelectCoerceToDesc = 770
844
+ KOSASelectCompile = 259
845
+ KOSASelectCompileExecute = 1538
846
+ KOSASelectComponentSpecificStart = 4097
847
+ KOSASelectCopyID = 260
848
+ KOSASelectCopyScript = 261
849
+ KOSASelectDisplay = 4
850
+ KOSASelectDispose = 6
851
+ KOSASelectDoEvent = 2052
852
+ KOSASelectDoScript = 1539
853
+ KOSASelectExecute = 3
854
+ KOSASelectExecuteEvent = 2051
855
+ KOSASelectGetActiveProc = 10
856
+ KOSASelectGetCreateProc = 1028
857
+ KOSASelectGetCurrentDialect = 1794
858
+ KOSASelectGetDialectInfo = 1796
859
+ KOSASelectGetResumeDispatchProc = 2050
860
+ KOSASelectGetScriptInfo = 8
861
+ KOSASelectGetSendProc = 1026
862
+ KOSASelectGetSource = 513
863
+ KOSASelectLoad = 1
864
+ KOSASelectLoadExecute = 1537
865
+ KOSASelectMakeContext = 2053
866
+ KOSASelectScriptError = 5
867
+ KOSASelectScriptingComponentName = 258
868
+ KOSASelectSetActiveProc = 9
869
+ KOSASelectSetCreateProc = 1027
870
+ KOSASelectSetCurrentDialect = 1793
871
+ KOSASelectSetDefaultTarget = 1029
872
+ KOSASelectSetResumeDispatchProc = 2049
873
+ KOSASelectSetScriptInfo = 7
874
+ KOSASelectSetSendProc = 1025
875
+ KOSASelectStartRecording = 1281
876
+ KOSASelectStopRecording = 1282
877
+ KOSASelectStore = 2
878
+ KOSASuite = 'ascr'
879
+ KOSASupportsAECoercion = 8
880
+ KOSASupportsAESending = 16
881
+ KOSASupportsCompiling = 2
882
+ KOSASupportsConvenience = 64
883
+ KOSASupportsDialects = 128
884
+ KOSASupportsEventHandling = 256
885
+ KOSASupportsGetSource = 4
886
+ KOSASupportsRecording = 32
887
+ KOSAUseStandardDispatch = 4294967295
888
+ KOSIZCodeInSharedLibraries = 11
889
+ KOSIZDontOpenResourceFile = 15
890
+ KOSIZOpenWithReadPermission = 13
891
+ KOSIZdontAcceptRemoteEvents = 14
892
+ KOffset2Pos = 'st2p'
893
+ KOutlineText = 7
894
+ KPos2Offset = 'p2st'
895
+ KPreviousBody = 2
896
+ KRawText = 2
897
+ KReadExtensionTermsMask = 32768
898
+ KSOAP1999Schema = 'ss99'
899
+ KSOAP2001Schema = 'ss01'
900
+ KSelectedConvertedText = 5
901
+ KSelectedRawText = 3
902
+ KSelectedText = 8
903
+ KShowHideInputWindow = 'shiw'
904
+ KTSMHiliteBlockFillText = 6
905
+ KTSMHiliteCaretPosition = 1
906
+ KTSMHiliteConvertedText = 4
907
+ KTSMHiliteNoHilite = 9
908
+ KTSMHiliteOutlineText = 7
909
+ KTSMHiliteRawText = 2
910
+ KTSMHiliteSelectedConvertedText = 5
911
+ KTSMHiliteSelectedRawText = 3
912
+ KTSMHiliteSelectedText = 8
913
+ KTSMInsideOfActiveInputArea = 3
914
+ KTSMInsideOfBody = 2
915
+ KTSMOutsideOfBody = 1
916
+ KTextServiceClass = 'tsvc'
917
+ KUnicodeNotFromInputMethod = 'unim'
918
+ KUpdateAETE = 'udte'
919
+ KUpdateAEUT = 'udut'
920
+ KUpdateActiveInputArea = 'updt'
921
+ KeyAEAdjustMarksProc = 'adjm'
922
+ KeyAEAngle = 'kang'
923
+ KeyAEArcAngle = 'parc'
924
+ KeyAEBaseAddr = 'badd'
925
+ KeyAEBestType = 'pbst'
926
+ KeyAEBgndColor = 'kbcl'
927
+ KeyAEBgndPattern = 'kbpt'
928
+ KeyAEBounds = 'pbnd'
929
+ KeyAEBufferSize = 'buff'
930
+ KeyAECellList = 'kclt'
931
+ KeyAEClassID = 'clID'
932
+ KeyAEClauseOffsets = 'clau'
933
+ KeyAEColor = 'colr'
934
+ KeyAEColorTable = 'cltb'
935
+ KeyAECompOperator = 'relo'
936
+ KeyAECompareProc = 'cmpr'
937
+ KeyAEContainer = 'from'
938
+ KeyAECountProc = 'cont'
939
+ KeyAECurrentPoint = 'cpos'
940
+ KeyAECurveHeight = 'kchd'
941
+ KeyAECurveWidth = 'kcwd'
942
+ KeyAEDashStyle = 'pdst'
943
+ KeyAEData = 'data'
944
+ KeyAEDefaultType = 'deft'
945
+ KeyAEDefinitionRect = 'pdrt'
946
+ KeyAEDescType = 'dstp'
947
+ KeyAEDesiredClass = 'want'
948
+ KeyAEDestination = 'dest'
949
+ KeyAEDoAntiAlias = 'anta'
950
+ KeyAEDoDithered = 'gdit'
951
+ KeyAEDoRotate = 'kdrt'
952
+ KeyAEDoScale = 'ksca'
953
+ KeyAEDoTranslate = 'ktra'
954
+ KeyAEDragging = 'bool'
955
+ KeyAEEditionFileLoc = 'eloc'
956
+ KeyAEElements = 'elms'
957
+ KeyAEEndPoint = 'pend'
958
+ KeyAEErrorObject = 'erob'
959
+ KeyAEEventClass = 'evcl'
960
+ KeyAEEventID = 'evti'
961
+ KeyAEFile = 'kfil'
962
+ KeyAEFileType = 'fltp'
963
+ KeyAEFillColor = 'flcl'
964
+ KeyAEFillPattern = 'flpt'
965
+ KeyAEFixLength = 'fixl'
966
+ KeyAEFlipHorizontal = 'kfho'
967
+ KeyAEFlipVertical = 'kfvt'
968
+ KeyAEFont = 'font'
969
+ KeyAEFormula = 'pfor'
970
+ KeyAEGetErrDescProc = 'indc'
971
+ KeyAEGraphicObjects = 'gobs'
972
+ KeyAEHiliteRange = 'hrng'
973
+ KeyAEID = 'ID '
974
+ KeyAEImageQuality = 'gqua'
975
+ KeyAEIndex = 'kidx'
976
+ KeyAEInsertHere = 'insh'
977
+ KeyAEKeyData = 'seld'
978
+ KeyAEKeyForm = 'form'
979
+ KeyAEKeyForms = 'keyf'
980
+ KeyAEKeyword = 'kywd'
981
+ KeyAELeadingEdge = 'klef'
982
+ KeyAELeftSide = 'klef'
983
+ KeyAELevel = 'levl'
984
+ KeyAELineArrow = 'arro'
985
+ KeyAELogicalOperator = 'logc'
986
+ KeyAELogicalTerms = 'term'
987
+ KeyAEMarkProc = 'mark'
988
+ KeyAEMarkTokenProc = 'mkid'
989
+ KeyAEMoveView = 'mvvw'
990
+ KeyAEName = 'pnam'
991
+ KeyAENewElementLoc = 'pnel'
992
+ KeyAENextBody = 'nxbd'
993
+ KeyAEObject = 'kobj'
994
+ KeyAEObject1 = 'obj1'
995
+ KeyAEObject2 = 'obj2'
996
+ KeyAEObjectClass = 'kocl'
997
+ KeyAEOffStyles = 'ofst'
998
+ KeyAEOffset = 'ofst'
999
+ KeyAEOnStyles = 'onst'
1000
+ KeyAEPMTable = 'kpmt'
1001
+ KeyAEPOSTHeaderData = 'phed'
1002
+ KeyAEParamFlags = 'pmfg'
1003
+ KeyAEParameters = 'prms'
1004
+ KeyAEPenColor = 'ppcl'
1005
+ KeyAEPenPattern = 'pppa'
1006
+ KeyAEPenWidth = 'ppwd'
1007
+ KeyAEPinRange = 'pnrg'
1008
+ KeyAEPixMapMinus = 'kpmm'
1009
+ KeyAEPixelDepth = 'pdpt'
1010
+ KeyAEPoint = 'gpos'
1011
+ KeyAEPointList = 'ptlt'
1012
+ KeyAEPointSize = 'ptsz'
1013
+ KeyAEPosition = 'kpos'
1014
+ KeyAEPropData = 'prdt'
1015
+ KeyAEPropFlags = 'prfg'
1016
+ KeyAEPropID = 'prop'
1017
+ KeyAEProperties = 'qpro'
1018
+ KeyAEProperty = 'kprp'
1019
+ KeyAEProtection = 'ppro'
1020
+ KeyAEQuitWithoutUI = 'noui'
1021
+ KeyAERangeStart = 'star'
1022
+ KeyAERangeStop = 'stop'
1023
+ KeyAERecorderCount = 'recr'
1024
+ KeyAERegionClass = 'rgnc'
1025
+ KeyAERenderAs = 'kren'
1026
+ KeyAEReplyHeaderData = 'rhed'
1027
+ KeyAERequestedType = 'rtyp'
1028
+ KeyAEResult = '----'
1029
+ KeyAEResultInfo = 'rsin'
1030
+ KeyAERotPoint = 'krtp'
1031
+ KeyAERotation = 'prot'
1032
+ KeyAERowList = 'krls'
1033
+ KeyAESaveOptions = 'savo'
1034
+ KeyAEScale = 'pscl'
1035
+ KeyAEScriptTag = 'psct'
1036
+ KeyAESearchText = 'stxt'
1037
+ KeyAEServerInstance = 'srvi'
1038
+ KeyAEShowWhere = 'show'
1039
+ KeyAEStartAngle = 'pang'
1040
+ KeyAEStartPoint = 'pstp'
1041
+ KeyAEStyles = 'ksty'
1042
+ KeyAESuiteID = 'suit'
1043
+ KeyAETSMDocumentRefcon = 'refc'
1044
+ KeyAETSMEventRecord = 'tevt'
1045
+ KeyAETSMEventRef = 'tevr'
1046
+ KeyAETSMGlyphInfoArray = 'tgia'
1047
+ KeyAETSMScriptTag = 'sclg'
1048
+ KeyAETSMTextFMFont = 'ktxm'
1049
+ KeyAETSMTextFont = 'ktxf'
1050
+ KeyAETSMTextPointSize = 'ktps'
1051
+ KeyAETarget = 'targ'
1052
+ KeyAETest = 'ktst'
1053
+ KeyAEText = 'ktxt'
1054
+ KeyAETextColor = 'ptxc'
1055
+ KeyAETextFont = 'ptxf'
1056
+ KeyAETextLineAscent = 'ktas'
1057
+ KeyAETextLineHeight = 'ktlh'
1058
+ KeyAETextPointSize = 'ptps'
1059
+ KeyAETextServiceEncoding = 'tsen'
1060
+ KeyAETextServiceMacEncoding = 'tmen'
1061
+ KeyAETextStyles = 'txst'
1062
+ KeyAETheData = 'kdat'
1063
+ KeyAETheText = 'thtx'
1064
+ KeyAETransferMode = 'pptm'
1065
+ KeyAETranslation = 'ptrs'
1066
+ KeyAETryAsStructGraf = 'toog'
1067
+ KeyAEUniformStyles = 'ustl'
1068
+ KeyAEUpdateOn = 'pupd'
1069
+ KeyAEUpdateRange = 'udng'
1070
+ KeyAEUserTerm = 'utrm'
1071
+ KeyAEVersion = 'vers'
1072
+ KeyAEWhoseRangeStart = 'wstr'
1073
+ KeyAEWhoseRangeStop = 'wstp'
1074
+ KeyAEWindow = 'wndw'
1075
+ KeyAEWritingCode = 'wrcd'
1076
+ KeyAEXMLReplyData = 'xrep'
1077
+ KeyAEXMLRequestData = 'xreq'
1078
+ KeyASArg = 'arg '
1079
+ KeyASPositionalArgs = 'parg'
1080
+ KeyASPrepositionAbout = 'abou'
1081
+ KeyASPrepositionAbove = 'abve'
1082
+ KeyASPrepositionAgainst = 'agst'
1083
+ KeyASPrepositionApartFrom = 'aprt'
1084
+ KeyASPrepositionAround = 'arnd'
1085
+ KeyASPrepositionAsideFrom = 'asdf'
1086
+ KeyASPrepositionAt = 'at '
1087
+ KeyASPrepositionBelow = 'belw'
1088
+ KeyASPrepositionBeneath = 'bnth'
1089
+ KeyASPrepositionBeside = 'bsid'
1090
+ KeyASPrepositionBetween = 'btwn'
1091
+ KeyASPrepositionBy = 'by '
1092
+ KeyASPrepositionFor = 'for '
1093
+ KeyASPrepositionFrom = 'from'
1094
+ KeyASPrepositionGiven = 'givn'
1095
+ KeyASPrepositionIn = 'in '
1096
+ KeyASPrepositionInsteadOf = 'isto'
1097
+ KeyASPrepositionInto = 'into'
1098
+ KeyASPrepositionOn = 'on '
1099
+ KeyASPrepositionOnto = 'onto'
1100
+ KeyASPrepositionOutOf = 'outo'
1101
+ KeyASPrepositionOver = 'over'
1102
+ KeyASPrepositionSince = 'snce'
1103
+ KeyASPrepositionThrough = 'thgh'
1104
+ KeyASPrepositionThru = 'thru'
1105
+ KeyASPrepositionTo = 'to '
1106
+ KeyASPrepositionUnder = 'undr'
1107
+ KeyASPrepositionUntil = 'till'
1108
+ KeyASPrepositionWith = 'with'
1109
+ KeyASPrepositionWithout = 'wout'
1110
+ KeyASReturning = 'Krtn'
1111
+ KeyASSubroutineName = 'snam'
1112
+ KeyASUserRecordFields = 'usrf'
1113
+ KeyAcceptTimeoutAttr = 'actm'
1114
+ KeyAdditionalHTTPHeaders = 'ahed'
1115
+ KeyAddressAttr = 'addr'
1116
+ KeyAppHandledCoercion = 'idas'
1117
+ KeyCloseAllWindows = 'caw '
1118
+ KeyDirectObject = '----'
1119
+ KeyDisableAuthenticationAttr = 'auth'
1120
+ KeyDisposeTokenProc = 'xtok'
1121
+ KeyDriveNumber = 'drv#'
1122
+ KeyErrorCode = 'err#'
1123
+ KeyErrorNumber = 'errn'
1124
+ KeyErrorString = 'errs'
1125
+ KeyEventClassAttr = 'evcl'
1126
+ KeyEventIDAttr = 'evid'
1127
+ KeyEventSourceAttr = 'esrc'
1128
+ KeyGlobalsNames = 'dfgn'
1129
+ KeyHighLevelClass = 'hcls'
1130
+ KeyHighLevelID = 'hid '
1131
+ KeyInteractLevelAttr = 'inte'
1132
+ KeyKey = 'key '
1133
+ KeyKeyCode = 'code'
1134
+ KeyKeyboard = 'keyb'
1135
+ KeyLocalWhere = 'lwhr'
1136
+ KeyLocalsNames = 'dfln'
1137
+ KeyMenuID = 'mid '
1138
+ KeyMenuItem = 'mitm'
1139
+ KeyMiscellaneous = 'fmsc'
1140
+ KeyMissedKeywordAttr = 'miss'
1141
+ KeyModifiers = 'mods'
1142
+ KeyNewBounds = 'nbnd'
1143
+ KeyOSADialectCode = 'dcod'
1144
+ KeyOSADialectLangCode = 'dlcd'
1145
+ KeyOSADialectName = 'dnam'
1146
+ KeyOSADialectScriptCode = 'dscd'
1147
+ KeyOSASourceEnd = 'srce'
1148
+ KeyOSASourceStart = 'srcs'
1149
+ KeyOptionalKeywordAttr = 'optk'
1150
+ KeyOriginalAddressAttr = 'from'
1151
+ KeyOriginalBounds = 'obnd'
1152
+ KeyParamsNames = 'dfpn'
1153
+ KeyPreDispatch = 'phac'
1154
+ KeyProcedureName = 'dfnm'
1155
+ KeyProcessSerialNumber = 'psn '
1156
+ KeyProgramState = 'dsps'
1157
+ KeyRPCMethodName = 'meth'
1158
+ KeyRPCMethodParam = 'parm'
1159
+ KeyRPCMethodParamOrder = '/ord'
1160
+ KeyReplyPortAttr = 'repp'
1161
+ KeyReplyRequestedAttr = 'repq'
1162
+ KeyReturnIDAttr = 'rtid'
1163
+ KeySOAPAction = 'sact'
1164
+ KeySOAPMethodNameSpace = 'mspc'
1165
+ KeySOAPMethodNameSpaceURI = 'mspu'
1166
+ KeySOAPSMDNamespace = 'ssns'
1167
+ KeySOAPSMDNamespaceURI = 'ssnu'
1168
+ KeySOAPSMDType = 'sstp'
1169
+ KeySOAPSchemaVersion = 'ssch'
1170
+ KeySOAPStructureMetaData = '/smd'
1171
+ KeyScszResource = 'scsz'
1172
+ KeySelectProc = 'selh'
1173
+ KeySelection = 'fsel'
1174
+ KeyStatementRange = 'dfsr'
1175
+ KeySubjectAttr = 'subj'
1176
+ KeyTimeoutAttr = 'timo'
1177
+ KeyTransactionIDAttr = 'tran'
1178
+ KeyUserNameAttr = 'unam'
1179
+ KeyUserPasswordAttr = 'pass'
1180
+ KeyWhen = 'when'
1181
+ KeyWhere = 'wher'
1182
+ KeyWindow = 'kwnd'
1183
+ KeyXMLDebuggingAttr = 'xdbg'
1184
+ PASDateString = 'dstr'
1185
+ PASDay = 'day '
1186
+ PASDays = 'days'
1187
+ PASHours = 'hour'
1188
+ PASIt = 'it '
1189
+ PASMe = 'me '
1190
+ PASMinutes = 'min '
1191
+ PASMonth = 'mnth'
1192
+ PASParent = 'pare'
1193
+ PASPi = 'pi '
1194
+ PASPrintDepth = 'prdp'
1195
+ PASPrintLength = 'prln'
1196
+ PASQuote = 'quot'
1197
+ PASResult = 'rslt'
1198
+ PASReturn = 'ret '
1199
+ PASSeconds = 'secs'
1200
+ PASSpace = 'spac'
1201
+ PASTab = 'tab '
1202
+ PASTime = 'time'
1203
+ PASTimeString = 'tstr'
1204
+ PASTopLevelScript = 'ascr'
1205
+ PASWeekday = 'wkdy'
1206
+ PASWeeks = 'week'
1207
+ PASYear = 'year'
1208
+ PATMachine = 'patm'
1209
+ PATType = 'patt'
1210
+ PATZone = 'patz'
1211
+ PArcAngle = 'parc'
1212
+ PBackgroundColor = 'pbcl'
1213
+ PBackgroundPattern = 'pbpt'
1214
+ PBestType = 'pbst'
1215
+ PBounds = 'pbnd'
1216
+ PClass = 'pcls'
1217
+ PClipboard = 'pcli'
1218
+ PColor = 'colr'
1219
+ PColorTable = 'cltb'
1220
+ PConduit = 'pcon'
1221
+ PContents = 'pcnt'
1222
+ PCornerCurveHeight = 'pchd'
1223
+ PCornerCurveWidth = 'pcwd'
1224
+ PDNS = 'pdns'
1225
+ PDNSForm = 'pDNS'
1226
+ PDashStyle = 'pdst'
1227
+ PDefaultType = 'deft'
1228
+ PDefinitionRect = 'pdrt'
1229
+ PDeviceAddress = 'pdva'
1230
+ PDeviceType = 'pdvt'
1231
+ PDottedDecimal = 'pipd'
1232
+ PEnabled = 'enbl'
1233
+ PEndPoint = 'pend'
1234
+ PFTPKind = 'kind'
1235
+ PFillColor = 'flcl'
1236
+ PFillPattern = 'flpt'
1237
+ PFont = 'font'
1238
+ PFormula = 'pfor'
1239
+ PGraphicObjects = 'gobs'
1240
+ PHasCloseBox = 'hclb'
1241
+ PHasTitleBar = 'ptit'
1242
+ PHost = 'HOST'
1243
+ PID = 'ID '
1244
+ PIndex = 'pidx'
1245
+ PInherits = 'c@#^'
1246
+ PInsertionLoc = 'pins'
1247
+ PIsFloating = 'isfl'
1248
+ PIsFrontProcess = 'pisf'
1249
+ PIsModal = 'pmod'
1250
+ PIsModified = 'imod'
1251
+ PIsResizable = 'prsz'
1252
+ PIsStationeryPad = 'pspd'
1253
+ PIsZoomable = 'iszm'
1254
+ PIsZoomed = 'pzum'
1255
+ PItemNumber = 'itmn'
1256
+ PJustification = 'pjst'
1257
+ PKeyKind = 'kknd'
1258
+ PKeystrokeKey = 'kMsg'
1259
+ PLangCode = 'plcd'
1260
+ PLength = 'leng'
1261
+ PLineArrow = 'arro'
1262
+ PMenuID = 'mnid'
1263
+ PModifiers = 'kMod'
1264
+ PName = 'pnam'
1265
+ PNetwork = 'pnet'
1266
+ PNewElementLoc = 'pnel'
1267
+ PNode = 'pnod'
1268
+ PPath = 'FTPc'
1269
+ PPenColor = 'ppcl'
1270
+ PPenPattern = 'pppa'
1271
+ PPenWidth = 'ppwd'
1272
+ PPixelDepth = 'pdpt'
1273
+ PPointList = 'ptlt'
1274
+ PPointSize = 'ptsz'
1275
+ PPort = 'ppor'
1276
+ PProperties = 'pALL'
1277
+ PProtection = 'ppro'
1278
+ PProtocol = 'pprt'
1279
+ PRest = 'rest'
1280
+ PReverse = 'rvse'
1281
+ PRotation = 'prot'
1282
+ PSCSIBus = 'pscb'
1283
+ PSCSILUN = 'pslu'
1284
+ PScale = 'pscl'
1285
+ PScheme = 'pusc'
1286
+ PScript = 'scpt'
1287
+ PScriptCode = 'pscd'
1288
+ PScriptTag = 'psct'
1289
+ PSelected = 'selc'
1290
+ PSelection = 'sele'
1291
+ PSocket = 'psoc'
1292
+ PStartAngle = 'pang'
1293
+ PStartPoint = 'pstp'
1294
+ PTextColor = 'ptxc'
1295
+ PTextEncoding = 'ptxe'
1296
+ PTextFont = 'ptxf'
1297
+ PTextItemDelimiters = 'txdl'
1298
+ PTextPointSize = 'ptps'
1299
+ PTextStyles = 'txst'
1300
+ PTransferMode = 'pptm'
1301
+ PTranslation = 'ptrs'
1302
+ PURL = 'pURL'
1303
+ PUniformStyles = 'ustl'
1304
+ PUpdateOn = 'pupd'
1305
+ PUserName = 'RAun'
1306
+ PUserPassword = 'RApw'
1307
+ PUserSelection = 'pusl'
1308
+ PVersion = 'vers'
1309
+ PVisible = 'pvis'
1310
+ Type128BitFloatingPoint = 'ldbl'
1311
+ TypeAEList = 'list'
1312
+ TypeAERecord = 'reco'
1313
+ TypeAETE = 'aete'
1314
+ TypeAEText = 'tTXT'
1315
+ TypeAEUT = 'aeut'
1316
+ TypeASStorage = 'ascr'
1317
+ TypeAbsoluteOrdinal = 'abso'
1318
+ TypeAlias = 'alis'
1319
+ TypeAppParameters = 'appa'
1320
+ TypeApplSignature = 'sign'
1321
+ TypeAppleEvent = 'aevt'
1322
+ TypeAppleScript = 'ascr'
1323
+ TypeApplicationBundleID = 'bund'
1324
+ TypeApplicationURL = 'aprl'
1325
+ TypeArc = 'carc'
1326
+ TypeBest = 'best'
1327
+ TypeBoolean = 'bool'
1328
+ TypeCString = 'cstr'
1329
+ TypeCell = 'ccel'
1330
+ TypeCentimeters = 'cmtr'
1331
+ TypeChar = 'TEXT'
1332
+ TypeClassInfo = 'gcli'
1333
+ TypeColorTable = 'clrt'
1334
+ TypeColumn = 'ccol'
1335
+ TypeComp = 'comp'
1336
+ TypeCompDescriptor = 'cmpd'
1337
+ TypeComponentInstance = 'cmpi'
1338
+ TypeCubicCentimeter = 'ccmt'
1339
+ TypeCubicFeet = 'cfet'
1340
+ TypeCubicInches = 'cuin'
1341
+ TypeCubicMeters = 'cmet'
1342
+ TypeCubicYards = 'cyrd'
1343
+ TypeCurrentContainer = 'ccnt'
1344
+ TypeDashStyle = 'tdas'
1345
+ TypeData = 'tdta'
1346
+ TypeDecimalStruct = 'decm'
1347
+ TypeDegreesC = 'degc'
1348
+ TypeDegreesF = 'degf'
1349
+ TypeDegreesK = 'degk'
1350
+ TypeDrawingArea = 'cdrw'
1351
+ TypeEPS = 'EPS '
1352
+ TypeElemInfo = 'elin'
1353
+ TypeEncodedString = 'encs'
1354
+ TypeEnumerated = 'enum'
1355
+ TypeEnumeration = 'enum'
1356
+ TypeEventInfo = 'evin'
1357
+ TypeEventRecord = 'evrc'
1358
+ TypeEventRef = 'evrf'
1359
+ TypeExtended = 'exte'
1360
+ TypeFSRef = 'fsrf'
1361
+ TypeFSS = 'fss '
1362
+ TypeFalse = 'fals'
1363
+ TypeFeet = 'feet'
1364
+ TypeFileURL = 'furl'
1365
+ TypeFinderWindow = 'fwin'
1366
+ TypeFixed = 'fixd'
1367
+ TypeFixedPoint = 'fpnt'
1368
+ TypeFixedRectangle = 'frct'
1369
+ TypeFloat = 'doub'
1370
+ TypeGIF = 'GIFf'
1371
+ TypeGallons = 'galn'
1372
+ TypeGlyphInfoArray = 'glia'
1373
+ TypeGrams = 'gram'
1374
+ TypeGraphicLine = 'glin'
1375
+ TypeGraphicText = 'cgtx'
1376
+ TypeGroupedGraphic = 'cpic'
1377
+ TypeHIMenu = 'mobj'
1378
+ TypeHIWindow = 'wobj'
1379
+ TypeIEEE32BitFloatingPoint = 'sing'
1380
+ TypeIEEE64BitFloatingPoint = 'doub'
1381
+ TypeISO8601DateTime = 'isot'
1382
+ TypeInches = 'inch'
1383
+ TypeIndexDescriptor = 'inde'
1384
+ TypeInsertionLoc = 'insl'
1385
+ TypeInteger = 'long'
1386
+ TypeIntlText = 'itxt'
1387
+ TypeIntlWritingCode = 'intl'
1388
+ TypeJPEG = 'JPEG'
1389
+ TypeKernelProcessID = 'kpid'
1390
+ TypeKeyword = 'keyw'
1391
+ TypeKilograms = 'kgrm'
1392
+ TypeKilometers = 'kmtr'
1393
+ TypeLiters = 'litr'
1394
+ TypeLogicalDescriptor = 'logi'
1395
+ TypeLongDateTime = 'ldt '
1396
+ TypeLongFixed = 'lfxd'
1397
+ TypeLongFixedPoint = 'lfpt'
1398
+ TypeLongFixedRectangle = 'lfrc'
1399
+ TypeLongFloat = 'doub'
1400
+ TypeLongInteger = 'long'
1401
+ TypeLongPoint = 'lpnt'
1402
+ TypeLongRectangle = 'lrct'
1403
+ TypeLowLevelEventRecord = 'evtr'
1404
+ TypeMachPort = 'port'
1405
+ TypeMachineLoc = 'mLoc'
1406
+ TypeMagnitude = 'magn'
1407
+ TypeMeters = 'metr'
1408
+ TypeMiles = 'mile'
1409
+ TypeNull = 'null'
1410
+ TypeOSADialectInfo = 'difo'
1411
+ TypeOSAErrorRange = 'erng'
1412
+ TypeOSAGenericStorage = 'scpt'
1413
+ TypeOSLTokenList = 'ostl'
1414
+ TypeObjectBeingExamined = 'exmn'
1415
+ TypeObjectSpecifier = 'obj '
1416
+ TypeOffsetArray = 'ofay'
1417
+ TypeOunces = 'ozs '
1418
+ TypeOval = 'covl'
1419
+ TypePString = 'pstr'
1420
+ TypeParamInfo = 'pmin'
1421
+ TypePict = 'PICT'
1422
+ TypePixMapMinus = 'tpmm'
1423
+ TypePixelMap = 'cpix'
1424
+ TypePolygon = 'cpgn'
1425
+ TypePounds = 'lbs '
1426
+ TypeProcessSerialNumber = 'psn '
1427
+ TypePropInfo = 'pinf'
1428
+ TypeProperty = 'prop'
1429
+ TypePtr = 'ptr '
1430
+ TypeQDPoint = 'QDpt'
1431
+ TypeQDRectangle = 'qdrt'
1432
+ TypeQDRegion = 'Qrgn'
1433
+ TypeQuarts = 'qrts'
1434
+ TypeRGB16 = 'tr16'
1435
+ TypeRGB96 = 'tr96'
1436
+ TypeRGBColor = 'cRGB'
1437
+ TypeRangeDescriptor = 'rang'
1438
+ TypeRectangle = 'crec'
1439
+ TypeRelativeDescriptor = 'rel '
1440
+ TypeReplyPortAttr = 'repp'
1441
+ TypeRotation = 'trot'
1442
+ TypeRoundedRectangle = 'crrc'
1443
+ TypeRow = 'crow'
1444
+ TypeSInt16 = 'shor'
1445
+ TypeSInt32 = 'long'
1446
+ TypeSInt64 = 'comp'
1447
+ TypeSMFloat = 'sing'
1448
+ TypeSMInt = 'shor'
1449
+ TypeScrapStyles = 'styl'
1450
+ TypeScript = 'scpt'
1451
+ TypeScszResource = 'scsz'
1452
+ TypeSectionH = 'sect'
1453
+ TypeShortFloat = 'sing'
1454
+ TypeShortInteger = 'shor'
1455
+ TypeSound = 'snd '
1456
+ TypeSquareFeet = 'sqft'
1457
+ TypeSquareKilometers = 'sqkm'
1458
+ TypeSquareMeters = 'sqrm'
1459
+ TypeSquareMiles = 'sqmi'
1460
+ TypeSquareYards = 'sqyd'
1461
+ TypeStatementRange = 'srng'
1462
+ TypeStyledText = 'STXT'
1463
+ TypeStyledUnicodeText = 'sutx'
1464
+ TypeSuiteInfo = 'suin'
1465
+ TypeTIFF = 'TIFF'
1466
+ TypeTable = 'ctbl'
1467
+ TypeText = 'TEXT'
1468
+ TypeTextRange = 'txrn'
1469
+ TypeTextRangeArray = 'tray'
1470
+ TypeTextStyles = 'tsty'
1471
+ TypeToken = 'toke'
1472
+ TypeTrue = 'true'
1473
+ TypeType = 'type'
1474
+ TypeUInt32 = 'magn'
1475
+ TypeUTF16ExternalRepresentation = 'ut16'
1476
+ TypeUTF8Text = 'utf8'
1477
+ TypeUnicodeText = 'utxt'
1478
+ TypeUserRecordFields = 'list'
1479
+ TypeVersion = 'vers'
1480
+ TypeWhoseDescriptor = 'whos'
1481
+ TypeWhoseRange = 'wrng'
1482
+ TypeWildCard = '****'
1483
+ TypeYards = 'yard'
1484
+
1485
+ # new in 10.5
1486
+ TypeUInt16 = 'ushr'
1487
+ TypeUInt64 = 'ucom'
1488
+ TypeCFAbsoluteTime = 'cfat'
1489
+ end