1 """Suite AppleScript Suite: Standard terms for AppleScript
4 Generated from /Volumes/Sap/System Folder/Extensions/AppleScript
5 AETE/AEUT resource version 1/0, language 0, script 0
13 class AppleScript_Suite_Events
:
15 def activate(self
, _no_object
=None, _attributes
={}, **_arguments
):
16 """activate: Bring the targeted application program to the front
17 Keyword argument _attributes: AppleEvent attribute dictionary
22 if _arguments
: raise TypeError, 'No optional args expected'
23 if _no_object
!= None: raise TypeError, 'No direct arg expected'
26 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
27 _arguments
, _attributes
)
28 if _arguments
.get('errn', 0):
29 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
30 # XXXX Optionally decode result
31 if _arguments
.has_key('----'):
32 return _arguments
['----']
34 def log(self
, _object
, _attributes
={}, **_arguments
):
35 """log: Cause a comment to be logged
36 Required argument: undocumented, typecode 'TEXT'
37 Keyword argument _attributes: AppleEvent attribute dictionary
42 if _arguments
: raise TypeError, 'No optional args expected'
43 _arguments
['----'] = _object
46 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
47 _arguments
, _attributes
)
48 if _arguments
.get('errn', 0):
49 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
50 # XXXX Optionally decode result
51 if _arguments
.has_key('----'):
52 return _arguments
['----']
54 def stop_log(self
, _no_object
=None, _attributes
={}, **_arguments
):
55 """stop log: Stop event logging in the script editor
56 Keyword argument _attributes: AppleEvent attribute dictionary
61 if _arguments
: raise TypeError, 'No optional args expected'
62 if _no_object
!= None: raise TypeError, 'No direct arg expected'
65 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
66 _arguments
, _attributes
)
67 if _arguments
.get('errn', 0):
68 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
69 # XXXX Optionally decode result
70 if _arguments
.has_key('----'):
71 return _arguments
['----']
73 def start_log(self
, _no_object
=None, _attributes
={}, **_arguments
):
74 """start log: Start event logging in the script editor
75 Keyword argument _attributes: AppleEvent attribute dictionary
80 if _arguments
: raise TypeError, 'No optional args expected'
81 if _no_object
!= None: raise TypeError, 'No direct arg expected'
84 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
85 _arguments
, _attributes
)
86 if _arguments
.get('errn', 0):
87 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
88 # XXXX Optionally decode result
89 if _arguments
.has_key('----'):
90 return _arguments
['----']
92 def idle(self
, _no_object
=None, _attributes
={}, **_arguments
):
93 """idle: Sent to a script application when it is idle
94 Keyword argument _attributes: AppleEvent attribute dictionary
95 Returns: the number of seconds to wait for next idle event
100 if _arguments
: raise TypeError, 'No optional args expected'
101 if _no_object
!= None: raise TypeError, 'No direct arg expected'
104 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
105 _arguments
, _attributes
)
106 if _arguments
.get('errn', 0):
107 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
108 # XXXX Optionally decode result
109 if _arguments
.has_key('----'):
110 return _arguments
['----']
112 def launch(self
, _no_object
=None, _attributes
={}, **_arguments
):
113 """launch: Start an application for scripting
114 Keyword argument _attributes: AppleEvent attribute dictionary
119 if _arguments
: raise TypeError, 'No optional args expected'
120 if _no_object
!= None: raise TypeError, 'No direct arg expected'
123 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
124 _arguments
, _attributes
)
125 if _arguments
.get('errn', 0):
126 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
127 # XXXX Optionally decode result
128 if _arguments
.has_key('----'):
129 return _arguments
['----']
131 def tell(self
, _no_object
=None, _attributes
={}, **_arguments
):
132 """tell: Record or log a \xd4tell\xd5 statement
133 Keyword argument _attributes: AppleEvent attribute dictionary
138 if _arguments
: raise TypeError, 'No optional args expected'
139 if _no_object
!= None: raise TypeError, 'No direct arg expected'
142 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
143 _arguments
, _attributes
)
144 if _arguments
.get('errn', 0):
145 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
146 # XXXX Optionally decode result
147 if _arguments
.has_key('----'):
148 return _arguments
['----']
150 def end_tell(self
, _no_object
=None, _attributes
={}, **_arguments
):
151 """end tell: Record or log an \xd4end tell\xd5 statement
152 Keyword argument _attributes: AppleEvent attribute dictionary
157 if _arguments
: raise TypeError, 'No optional args expected'
158 if _no_object
!= None: raise TypeError, 'No direct arg expected'
161 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
162 _arguments
, _attributes
)
163 if _arguments
.get('errn', 0):
164 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
165 # XXXX Optionally decode result
166 if _arguments
.has_key('----'):
167 return _arguments
['----']
171 'partial_result' : 'ptlr',
176 def error(self
, _object
=None, _attributes
={}, **_arguments
):
177 """error: Raise an error
178 Required argument: anything
179 Keyword argument number: an error number
180 Keyword argument partial_result: any partial result occurring before the error
181 Keyword argument from_: the object that caused the error
182 Keyword argument to: the desired class for a failed coercion
183 Keyword argument _attributes: AppleEvent attribute dictionary
188 aetools
.keysubst(_arguments
, self
._argmap
_error
)
189 _arguments
['----'] = _object
192 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
193 _arguments
, _attributes
)
194 if _arguments
.get('errn', 0):
195 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
196 # XXXX Optionally decode result
197 if _arguments
.has_key('----'):
198 return _arguments
['----']
200 _argmap_Call_a5_subroutine
= {
214 'instead_of' : 'isto',
215 'aside_from' : 'asdf',
223 'apart_from' : 'aprt',
231 def Call_a5_subroutine(self
, _object
=None, _attributes
={}, **_arguments
):
232 """Call\xa5subroutine: A subroutine call
233 Required argument: anything
234 Keyword argument at: a preposition
235 Keyword argument from_: a preposition
236 Keyword argument for_: a preposition
237 Keyword argument to: a preposition
238 Keyword argument thru: a preposition
239 Keyword argument through: a preposition
240 Keyword argument by: a preposition
241 Keyword argument on: a preposition
242 Keyword argument into: a preposition
243 Keyword argument onto: a preposition
244 Keyword argument between: a preposition
245 Keyword argument against: a preposition
246 Keyword argument out_of: a preposition
247 Keyword argument instead_of: a preposition
248 Keyword argument aside_from: a preposition
249 Keyword argument around: a preposition
250 Keyword argument beside: a preposition
251 Keyword argument beneath: a preposition
252 Keyword argument under: a preposition
253 Keyword argument over: a preposition
254 Keyword argument above: a preposition
255 Keyword argument below: a preposition
256 Keyword argument apart_from: a preposition
257 Keyword argument about: a preposition
258 Keyword argument since: a preposition
259 Keyword argument given: parameter:value pairs, comma-separated
260 Keyword argument with: formal parameter set to true if matching actual parameter is provided
261 Keyword argument without: formal parameter set to false if matching actual parmeter is provided
262 Keyword argument _attributes: AppleEvent attribute dictionary
268 aetools
.keysubst(_arguments
, self
._argmap
_Call
_a
5_subroutine
)
269 _arguments
['----'] = _object
272 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
273 _arguments
, _attributes
)
274 if _arguments
.get('errn', 0):
275 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
276 # XXXX Optionally decode result
277 if _arguments
.has_key('----'):
278 return _arguments
['----']
280 def _3d_(self
, _object
, _attributes
={}, **_arguments
):
282 Required argument: an AE object reference
283 Keyword argument _attributes: AppleEvent attribute dictionary
289 if _arguments
: raise TypeError, 'No optional args expected'
290 _arguments
['----'] = _object
293 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
294 _arguments
, _attributes
)
295 if _arguments
.get('errn', 0):
296 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
297 # XXXX Optionally decode result
298 if _arguments
.has_key('----'):
299 return _arguments
['----']
301 def _ad_(self
, _object
, _attributes
={}, **_arguments
):
303 Required argument: an AE object reference
304 Keyword argument _attributes: AppleEvent attribute dictionary
310 if _arguments
: raise TypeError, 'No optional args expected'
311 _arguments
['----'] = _object
314 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
315 _arguments
, _attributes
)
316 if _arguments
.get('errn', 0):
317 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
318 # XXXX Optionally decode result
319 if _arguments
.has_key('----'):
320 return _arguments
['----']
322 def _2b_(self
, _object
, _attributes
={}, **_arguments
):
324 Required argument: an AE object reference
325 Keyword argument _attributes: AppleEvent attribute dictionary
331 if _arguments
: raise TypeError, 'No optional args expected'
332 _arguments
['----'] = _object
335 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
336 _arguments
, _attributes
)
337 if _arguments
.get('errn', 0):
338 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
339 # XXXX Optionally decode result
340 if _arguments
.has_key('----'):
341 return _arguments
['----']
343 def _2d_(self
, _object
, _attributes
={}, **_arguments
):
345 Required argument: an AE object reference
346 Keyword argument _attributes: AppleEvent attribute dictionary
352 if _arguments
: raise TypeError, 'No optional args expected'
353 _arguments
['----'] = _object
356 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
357 _arguments
, _attributes
)
358 if _arguments
.get('errn', 0):
359 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
360 # XXXX Optionally decode result
361 if _arguments
.has_key('----'):
362 return _arguments
['----']
364 def _2a_(self
, _object
, _attributes
={}, **_arguments
):
366 Required argument: an AE object reference
367 Keyword argument _attributes: AppleEvent attribute dictionary
373 if _arguments
: raise TypeError, 'No optional args expected'
374 _arguments
['----'] = _object
377 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
378 _arguments
, _attributes
)
379 if _arguments
.get('errn', 0):
380 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
381 # XXXX Optionally decode result
382 if _arguments
.has_key('----'):
383 return _arguments
['----']
385 def _d6_(self
, _object
, _attributes
={}, **_arguments
):
387 Required argument: an AE object reference
388 Keyword argument _attributes: AppleEvent attribute dictionary
394 if _arguments
: raise TypeError, 'No optional args expected'
395 _arguments
['----'] = _object
398 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
399 _arguments
, _attributes
)
400 if _arguments
.get('errn', 0):
401 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
402 # XXXX Optionally decode result
403 if _arguments
.has_key('----'):
404 return _arguments
['----']
406 def div(self
, _object
, _attributes
={}, **_arguments
):
408 Required argument: an AE object reference
409 Keyword argument _attributes: AppleEvent attribute dictionary
415 if _arguments
: raise TypeError, 'No optional args expected'
416 _arguments
['----'] = _object
419 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
420 _arguments
, _attributes
)
421 if _arguments
.get('errn', 0):
422 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
423 # XXXX Optionally decode result
424 if _arguments
.has_key('----'):
425 return _arguments
['----']
427 def mod(self
, _object
, _attributes
={}, **_arguments
):
429 Required argument: an AE object reference
430 Keyword argument _attributes: AppleEvent attribute dictionary
436 if _arguments
: raise TypeError, 'No optional args expected'
437 _arguments
['----'] = _object
440 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
441 _arguments
, _attributes
)
442 if _arguments
.get('errn', 0):
443 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
444 # XXXX Optionally decode result
445 if _arguments
.has_key('----'):
446 return _arguments
['----']
448 def _5e_(self
, _object
, _attributes
={}, **_arguments
):
450 Required argument: an AE object reference
451 Keyword argument _attributes: AppleEvent attribute dictionary
457 if _arguments
: raise TypeError, 'No optional args expected'
458 _arguments
['----'] = _object
461 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
462 _arguments
, _attributes
)
463 if _arguments
.get('errn', 0):
464 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
465 # XXXX Optionally decode result
466 if _arguments
.has_key('----'):
467 return _arguments
['----']
469 def _3e_(self
, _object
, _attributes
={}, **_arguments
):
471 Required argument: an AE object reference
472 Keyword argument _attributes: AppleEvent attribute dictionary
478 if _arguments
: raise TypeError, 'No optional args expected'
479 _arguments
['----'] = _object
482 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
483 _arguments
, _attributes
)
484 if _arguments
.get('errn', 0):
485 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
486 # XXXX Optionally decode result
487 if _arguments
.has_key('----'):
488 return _arguments
['----']
490 def _b3_(self
, _object
, _attributes
={}, **_arguments
):
491 """\xb3: Greater than or equal to
492 Required argument: an AE object reference
493 Keyword argument _attributes: AppleEvent attribute dictionary
499 if _arguments
: raise TypeError, 'No optional args expected'
500 _arguments
['----'] = _object
503 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
504 _arguments
, _attributes
)
505 if _arguments
.get('errn', 0):
506 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
507 # XXXX Optionally decode result
508 if _arguments
.has_key('----'):
509 return _arguments
['----']
511 def _3c_(self
, _object
, _attributes
={}, **_arguments
):
513 Required argument: an AE object reference
514 Keyword argument _attributes: AppleEvent attribute dictionary
520 if _arguments
: raise TypeError, 'No optional args expected'
521 _arguments
['----'] = _object
524 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
525 _arguments
, _attributes
)
526 if _arguments
.get('errn', 0):
527 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
528 # XXXX Optionally decode result
529 if _arguments
.has_key('----'):
530 return _arguments
['----']
532 def _b2_(self
, _object
, _attributes
={}, **_arguments
):
533 """\xb2: Less than or equal to
534 Required argument: an AE object reference
535 Keyword argument _attributes: AppleEvent attribute dictionary
541 if _arguments
: raise TypeError, 'No optional args expected'
542 _arguments
['----'] = _object
545 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
546 _arguments
, _attributes
)
547 if _arguments
.get('errn', 0):
548 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
549 # XXXX Optionally decode result
550 if _arguments
.has_key('----'):
551 return _arguments
['----']
553 def _26_(self
, _object
, _attributes
={}, **_arguments
):
555 Required argument: an AE object reference
556 Keyword argument _attributes: AppleEvent attribute dictionary
562 if _arguments
: raise TypeError, 'No optional args expected'
563 _arguments
['----'] = _object
566 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
567 _arguments
, _attributes
)
568 if _arguments
.get('errn', 0):
569 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
570 # XXXX Optionally decode result
571 if _arguments
.has_key('----'):
572 return _arguments
['----']
574 def starts_with(self
, _object
, _attributes
={}, **_arguments
):
575 """starts with: Starts with
576 Required argument: an AE object reference
577 Keyword argument _attributes: AppleEvent attribute dictionary
583 if _arguments
: raise TypeError, 'No optional args expected'
584 _arguments
['----'] = _object
587 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
588 _arguments
, _attributes
)
589 if _arguments
.get('errn', 0):
590 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
591 # XXXX Optionally decode result
592 if _arguments
.has_key('----'):
593 return _arguments
['----']
595 def ends_with(self
, _object
, _attributes
={}, **_arguments
):
596 """ends with: Ends with
597 Required argument: an AE object reference
598 Keyword argument _attributes: AppleEvent attribute dictionary
604 if _arguments
: raise TypeError, 'No optional args expected'
605 _arguments
['----'] = _object
608 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
609 _arguments
, _attributes
)
610 if _arguments
.get('errn', 0):
611 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
612 # XXXX Optionally decode result
613 if _arguments
.has_key('----'):
614 return _arguments
['----']
616 def contains(self
, _object
, _attributes
={}, **_arguments
):
617 """contains: Containment
618 Required argument: an AE object reference
619 Keyword argument _attributes: AppleEvent attribute dictionary
625 if _arguments
: raise TypeError, 'No optional args expected'
626 _arguments
['----'] = _object
629 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
630 _arguments
, _attributes
)
631 if _arguments
.get('errn', 0):
632 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
633 # XXXX Optionally decode result
634 if _arguments
.has_key('----'):
635 return _arguments
['----']
637 def and_(self
, _object
, _attributes
={}, **_arguments
):
638 """and: Logical conjunction
639 Required argument: an AE object reference
640 Keyword argument _attributes: AppleEvent attribute dictionary
646 if _arguments
: raise TypeError, 'No optional args expected'
647 _arguments
['----'] = _object
650 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
651 _arguments
, _attributes
)
652 if _arguments
.get('errn', 0):
653 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
654 # XXXX Optionally decode result
655 if _arguments
.has_key('----'):
656 return _arguments
['----']
658 def or_(self
, _object
, _attributes
={}, **_arguments
):
659 """or: Logical disjunction
660 Required argument: an AE object reference
661 Keyword argument _attributes: AppleEvent attribute dictionary
667 if _arguments
: raise TypeError, 'No optional args expected'
668 _arguments
['----'] = _object
671 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
672 _arguments
, _attributes
)
673 if _arguments
.get('errn', 0):
674 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
675 # XXXX Optionally decode result
676 if _arguments
.has_key('----'):
677 return _arguments
['----']
679 def as(self
, _object
, _attributes
={}, **_arguments
):
681 Required argument: an AE object reference
682 Keyword argument _attributes: AppleEvent attribute dictionary
688 if _arguments
: raise TypeError, 'No optional args expected'
689 _arguments
['----'] = _object
692 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
693 _arguments
, _attributes
)
694 if _arguments
.get('errn', 0):
695 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
696 # XXXX Optionally decode result
697 if _arguments
.has_key('----'):
698 return _arguments
['----']
700 def not_(self
, _object
, _attributes
={}, **_arguments
):
701 """not: Logical negation
702 Required argument: an AE object reference
703 Keyword argument _attributes: AppleEvent attribute dictionary
709 if _arguments
: raise TypeError, 'No optional args expected'
710 _arguments
['----'] = _object
713 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
714 _arguments
, _attributes
)
715 if _arguments
.get('errn', 0):
716 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
717 # XXXX Optionally decode result
718 if _arguments
.has_key('----'):
719 return _arguments
['----']
721 def negate(self
, _object
, _attributes
={}, **_arguments
):
722 """negate: Numeric negation
723 Required argument: an AE object reference
724 Keyword argument _attributes: AppleEvent attribute dictionary
730 if _arguments
: raise TypeError, 'No optional args expected'
731 _arguments
['----'] = _object
734 _reply
, _arguments
, _attributes
= self
.send(_code
, _subcode
,
735 _arguments
, _attributes
)
736 if _arguments
.get('errn', 0):
737 raise aetools
.Error
, aetools
.decodeerror(_arguments
)
738 # XXXX Optionally decode result
739 if _arguments
.has_key('----'):
740 return _arguments
['----']
743 class boolean(aetools
.ComponentItem
):
744 """boolean - A true or false value """
749 class integer(aetools
.ComponentItem
):
750 """integer - An integral number """
755 class real(aetools
.ComponentItem
):
756 """real - A real number """
761 class number(aetools
.ComponentItem
):
762 """number - an integer or real number """
767 class list(aetools
.ComponentItem
):
768 """list - An ordered collection of items """
770 class length(aetools
.NProperty
):
771 """length - the length of a list """
774 class reverse(aetools
.NProperty
):
775 """reverse - the items of the list in reverse order """
778 class rest(aetools
.NProperty
):
779 """rest - all items of the list excluding first """
785 class linked_list(aetools
.ComponentItem
):
786 """linked list - An ordered collection of items """
789 linked_lists
= linked_list
791 class vector(aetools
.ComponentItem
):
792 """vector - An ordered collection of items """
797 class record(aetools
.ComponentItem
):
798 """record - A set of labeled items """
803 class item(aetools
.ComponentItem
):
804 """item - An item of any type """
806 class id(aetools
.NProperty
):
807 """id - the unique ID number of this object """
813 class script(aetools
.ComponentItem
):
814 """script - An AppleScript script """
816 class name(aetools
.NProperty
):
817 """name - the name of the script """
820 class parent(aetools
.NProperty
):
821 """parent - its parent, i.e. the script that will handle events that this script doesn\xd5t """
827 class list_or_record(aetools
.ComponentItem
):
828 """list or record - a list or record """
831 class list_or_string(aetools
.ComponentItem
):
832 """list or string - a list or string """
835 class number_or_string(aetools
.ComponentItem
):
836 """number or string - a number or string """
839 class alias_or_string(aetools
.ComponentItem
):
840 """alias or string - an alias or string """
843 class list_2c__record_or_text(aetools
.ComponentItem
):
844 """list, record or text - a list, record or text """
847 class number_or_date(aetools
.ComponentItem
):
848 """number or date - a number or date """
851 class number_2c__date_or_text(aetools
.ComponentItem
):
852 """number, date or text - a number, date or text """
855 class class_(aetools
.ComponentItem
):
856 """class - the type of a value """
858 class _3c_Inheritance_3e_(aetools
.NProperty
):
859 """<Inheritance> - inherits some of its properties from this class """
865 class event(aetools
.ComponentItem
):
866 """event - an AppleEvents event """
871 class property(aetools
.ComponentItem
):
872 """property - an AppleEvents property """
875 properties
= property
877 class constant(aetools
.ComponentItem
):
878 """constant - A constant value """
883 class preposition(aetools
.ComponentItem
):
884 """preposition - an AppleEvents preposition """
887 prepositions
= preposition
889 class reference_form(aetools
.ComponentItem
):
890 """reference form - an AppleEvents key form """
893 reference_forms
= reference_form
895 class handler(aetools
.ComponentItem
):
896 """handler - an AppleScript event or subroutine handler """
901 class data(aetools
.ComponentItem
):
902 """data - an AppleScript raw data object """
905 class text(aetools
.ComponentItem
):
906 """text - text with language and style information """
909 class international_text(aetools
.ComponentItem
):
910 """international text - """
913 international_text
= international_text
915 class string(aetools
.ComponentItem
):
916 """string - text in 8-bit Macintosh Roman format """
921 class styled_text(aetools
.ComponentItem
):
925 styled_text
= styled_text
927 class styled_Clipboard_text(aetools
.ComponentItem
):
928 """styled Clipboard text - """
931 styled_Clipboard_text
= styled_Clipboard_text
933 class Unicode_text(aetools
.ComponentItem
):
934 """Unicode text - """
937 Unicode_text
= Unicode_text
939 class styled_Unicode_text(aetools
.ComponentItem
):
940 """styled Unicode text - """
943 styled_Unicode_text
= styled_Unicode_text
945 class encoded_string(aetools
.ComponentItem
):
946 """encoded string - text encoded using the Text Encoding Converter """
949 encoded_strings
= encoded_string
951 class C_string(aetools
.ComponentItem
):
952 """C string - text followed by a null """
957 class Pascal_string(aetools
.ComponentItem
):
958 """Pascal string - text up to 255 characters preceded by a length byte """
961 Pascal_strings
= Pascal_string
963 class character(aetools
.ComponentItem
):
964 """character - an individual text character """
967 characters
= character
969 class text_item(aetools
.ComponentItem
):
970 """text item - text between delimiters """
973 text_items
= text_item
975 class writing_code(aetools
.ComponentItem
):
976 """writing code - codes that identify the language and script system """
979 class writing_code_info(aetools
.ComponentItem
):
980 """writing code info - script code and language code of text run """
982 class script_code(aetools
.NProperty
):
983 """script code - the script code for the text """
986 class language_code(aetools
.NProperty
):
987 """language code - the language code for the text """
991 writing_code_infos
= writing_code_info
993 class empty_ae_name_(aetools
.ComponentItem
):
994 """ - the undefined value """
997 class missing_value(aetools
.ComponentItem
):
998 """missing value - unavailable value, such as properties missing from heterogeneous classes in a Whose clause """
1001 missing_values
= missing_value
1003 class reference(aetools
.ComponentItem
):
1004 """reference - an AppleScript reference """
1007 references
= reference
1009 class anything(aetools
.ComponentItem
):
1010 """anything - any class or reference """
1013 class type_class(aetools
.ComponentItem
):
1014 """type class - the name of a particular class (or any four-character code) """
1017 class RGB_color(aetools
.ComponentItem
):
1018 """RGB color - Three integers specifying red, green, blue color values """
1021 RGB_colors
= RGB_color
1023 class picture(aetools
.ComponentItem
):
1024 """picture - A QuickDraw picture object """
1029 class sound(aetools
.ComponentItem
):
1030 """sound - a sound object on the clipboard """
1035 class version(aetools
.ComponentItem
):
1036 """version - a version value """
1039 class file_specification(aetools
.ComponentItem
):
1040 """file specification - a file specification as used by the operating system """
1043 file_specifications
= file_specification
1045 class alias(aetools
.ComponentItem
):
1046 """alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
1051 class machine(aetools
.ComponentItem
):
1052 """machine - a computer """
1057 class zone(aetools
.ComponentItem
):
1058 """zone - an AppleTalk zone """
1063 class keystroke(aetools
.ComponentItem
):
1064 """keystroke - a press of a key combination on a Macintosh keyboard """
1066 class key(aetools
.NProperty
):
1067 """key - the character for the key was pressed (ignoring modifiers) """
1070 class modifiers(aetools
.NProperty
):
1071 """modifiers - the modifier keys pressed in combination """
1074 class key_kind(aetools
.NProperty
):
1075 """key kind - the kind of key that was pressed """
1079 keystrokes
= keystroke
1081 class seconds(aetools
.ComponentItem
):
1082 """seconds - more than one second """
1085 class date(aetools
.ComponentItem
):
1086 """date - Absolute date and time values """
1088 class weekday(aetools
.NProperty
):
1089 """weekday - the day of a week of a date """
1092 class month(aetools
.NProperty
):
1093 """month - the month of a date """
1096 class day(aetools
.NProperty
):
1097 """day - the day of the month of a date """
1100 class year(aetools
.NProperty
):
1101 """year - the year of a date """
1104 class time(aetools
.NProperty
):
1105 """time - the time since midnight of a date """
1108 class date_string(aetools
.NProperty
):
1109 """date string - the date portion of a date-time value as text """
1112 class time_string(aetools
.NProperty
):
1113 """time string - the time portion of a date-time value as text """
1119 class month(aetools
.ComponentItem
):
1120 """month - a month """
1125 class January(aetools
.ComponentItem
):
1126 """January - the month of January """
1129 class February(aetools
.ComponentItem
):
1130 """February - the month of February """
1133 class March(aetools
.ComponentItem
):
1134 """March - the month of March """
1137 class April(aetools
.ComponentItem
):
1138 """April - the month of April """
1141 class May(aetools
.ComponentItem
):
1142 """May - the month of May """
1145 class June(aetools
.ComponentItem
):
1146 """June - the month of June """
1149 class July(aetools
.ComponentItem
):
1150 """July - the month of July """
1153 class August(aetools
.ComponentItem
):
1154 """August - the month of August """
1157 class September(aetools
.ComponentItem
):
1158 """September - the month of September """
1161 class October(aetools
.ComponentItem
):
1162 """October - the month of October """
1165 class November(aetools
.ComponentItem
):
1166 """November - the month of November """
1169 class December(aetools
.ComponentItem
):
1170 """December - the month of December """
1173 class weekday(aetools
.ComponentItem
):
1174 """weekday - a weekday """
1179 class Sunday(aetools
.ComponentItem
):
1180 """Sunday - Sunday """
1183 class Monday(aetools
.ComponentItem
):
1184 """Monday - Monday """
1187 class Tuesday(aetools
.ComponentItem
):
1188 """Tuesday - Tuesday """
1191 class Wednesday(aetools
.ComponentItem
):
1192 """Wednesday - Wednesday """
1195 class Thursday(aetools
.ComponentItem
):
1196 """Thursday - Thursday """
1199 class Friday(aetools
.ComponentItem
):
1200 """Friday - Friday """
1203 class Saturday(aetools
.ComponentItem
):
1204 """Saturday - Saturday """
1207 class metres(aetools
.ComponentItem
):
1208 """metres - a distance measurement in SI meters """
1213 class inches(aetools
.ComponentItem
):
1214 """inches - a distance measurement in Imperial inches """
1217 class feet(aetools
.ComponentItem
):
1218 """feet - a distance measurement in Imperial feet """
1221 class yards(aetools
.ComponentItem
):
1222 """yards - a distance measurement in Imperial yards """
1225 class miles(aetools
.ComponentItem
):
1226 """miles - a distance measurement in Imperial miles """
1229 class kilometres(aetools
.ComponentItem
):
1230 """kilometres - a distance measurement in SI kilometers """
1233 kilometers
= kilometres
1235 class centimetres(aetools
.ComponentItem
):
1236 """centimetres - a distance measurement in SI centimeters """
1239 centimeters
= centimetres
1241 class square_metres(aetools
.ComponentItem
):
1242 """square metres - an area measurement in SI square meters """
1245 square_meters
= square_metres
1247 class square_feet(aetools
.ComponentItem
):
1248 """square feet - an area measurement in Imperial square feet """
1251 class square_yards(aetools
.ComponentItem
):
1252 """square yards - an area measurement in Imperial square yards """
1255 class square_miles(aetools
.ComponentItem
):
1256 """square miles - an area measurement in Imperial square miles """
1259 class square_kilometres(aetools
.ComponentItem
):
1260 """square kilometres - an area measurement in SI square kilometers """
1263 square_kilometers
= square_kilometres
1265 class litres(aetools
.ComponentItem
):
1266 """litres - a volume measurement in SI liters """
1271 class gallons(aetools
.ComponentItem
):
1272 """gallons - a volume measurement in Imperial gallons """
1275 class quarts(aetools
.ComponentItem
):
1276 """quarts - a volume measurement in Imperial quarts """
1279 class cubic_metres(aetools
.ComponentItem
):
1280 """cubic metres - a volume measurement in SI cubic meters """
1283 cubic_meters
= cubic_metres
1285 class cubic_centimetres(aetools
.ComponentItem
):
1286 """cubic centimetres - a volume measurement in SI cubic centimeters """
1289 cubic_centimeters
= cubic_centimetres
1291 class cubic_feet(aetools
.ComponentItem
):
1292 """cubic feet - a volume measurement in Imperial cubic feet """
1295 class cubic_inches(aetools
.ComponentItem
):
1296 """cubic inches - a volume measurement in Imperial cubic inches """
1299 class cubic_yards(aetools
.ComponentItem
):
1300 """cubic yards - a distance measurement in Imperial cubic yards """
1303 class kilograms(aetools
.ComponentItem
):
1304 """kilograms - a mass measurement in SI kilograms """
1307 class grams(aetools
.ComponentItem
):
1308 """grams - a mass measurement in SI meters """
1311 class ounces(aetools
.ComponentItem
):
1312 """ounces - a weight measurement in SI meters """
1315 class pounds(aetools
.ComponentItem
):
1316 """pounds - a weight measurement in SI meters """
1319 class degrees_Celsius(aetools
.ComponentItem
):
1320 """degrees Celsius - a temperature measurement in SI degrees Celsius """
1323 class degrees_Fahrenheit(aetools
.ComponentItem
):
1324 """degrees Fahrenheit - a temperature measurement in degrees Fahrenheit """
1327 class degrees_Kelvin(aetools
.ComponentItem
):
1328 """degrees Kelvin - a temperature measurement in degrees Kelvin """
1331 class upper_case(aetools
.ComponentItem
):
1332 """upper case - Text with lower case converted to upper case """
1335 class app(aetools
.ComponentItem
):
1336 """app - Short name for application """
1340 class result(aetools
.NProperty
):
1341 """result - the last result of evaluation """
1344 class space(aetools
.NProperty
):
1345 """space - a space character """
1348 class return_(aetools
.NProperty
):
1349 """return - a return character """
1352 class tab(aetools
.NProperty
):
1353 """tab - a tab character """
1356 class minutes(aetools
.NProperty
):
1357 """minutes - the number of seconds in a minute """
1360 class hours(aetools
.NProperty
):
1361 """hours - the number of seconds in an hour """
1364 class days(aetools
.NProperty
):
1365 """days - the number of seconds in a day """
1368 class weeks(aetools
.NProperty
):
1369 """weeks - the number of seconds in a week """
1372 class pi(aetools
.NProperty
):
1373 """pi - the constant pi """
1376 class print_length(aetools
.NProperty
):
1377 """print length - the maximum length to print """
1380 class print_depth(aetools
.NProperty
):
1381 """print depth - the maximum depth to print """
1384 class text_item_delimiters(aetools
.NProperty
):
1385 """text item delimiters - the text item delimiters of a string """
1388 class AppleScript(aetools
.NProperty
):
1389 """AppleScript - the top-level script object """
1394 boolean
._superclassnames
= []
1395 boolean
._privpropdict
= {
1397 boolean
._privelemdict
= {
1399 integer
._superclassnames
= []
1400 integer
._privpropdict
= {
1402 integer
._privelemdict
= {
1404 real
._superclassnames
= []
1405 real
._privpropdict
= {
1407 real
._privelemdict
= {
1409 number
._superclassnames
= []
1410 number
._privpropdict
= {
1412 number
._privelemdict
= {
1414 list._superclassnames
= []
1415 list._privpropdict
= {
1417 'reverse' : reverse
,
1420 list._privelemdict
= {
1422 linked_list
._superclassnames
= []
1423 linked_list
._privpropdict
= {
1426 linked_list
._privelemdict
= {
1428 vector
._superclassnames
= []
1429 vector
._privpropdict
= {
1432 vector
._privelemdict
= {
1434 record
._superclassnames
= []
1435 record
._privpropdict
= {
1437 record
._privelemdict
= {
1439 item
._superclassnames
= []
1440 item
._privpropdict
= {
1443 item
._privelemdict
= {
1445 script
._superclassnames
= []
1446 script
._privpropdict
= {
1450 script
._privelemdict
= {
1452 list_or_record
._superclassnames
= []
1453 list_or_record
._privpropdict
= {
1455 list_or_record
._privelemdict
= {
1457 list_or_string
._superclassnames
= []
1458 list_or_string
._privpropdict
= {
1460 list_or_string
._privelemdict
= {
1462 number_or_string
._superclassnames
= []
1463 number_or_string
._privpropdict
= {
1465 number_or_string
._privelemdict
= {
1467 alias_or_string
._superclassnames
= []
1468 alias_or_string
._privpropdict
= {
1470 alias_or_string
._privelemdict
= {
1472 list_2c__record_or_text
._superclassnames
= []
1473 list_2c__record_or_text
._privpropdict
= {
1475 list_2c__record_or_text
._privelemdict
= {
1477 number_or_date
._superclassnames
= []
1478 number_or_date
._privpropdict
= {
1480 number_or_date
._privelemdict
= {
1482 number_2c__date_or_text
._superclassnames
= []
1483 number_2c__date_or_text
._privpropdict
= {
1485 number_2c__date_or_text
._privelemdict
= {
1487 class_
._superclassnames
= ['type_class']
1488 class_
._privpropdict
= {
1489 '_3c_Inheritance_3e_' : _3c_Inheritance_3e_
,
1491 class_
._privelemdict
= {
1493 event
._superclassnames
= []
1494 event
._privpropdict
= {
1496 event
._privelemdict
= {
1498 property._superclassnames
= []
1499 property._privpropdict
= {
1501 property._privelemdict
= {
1503 constant
._superclassnames
= []
1504 constant
._privpropdict
= {
1506 constant
._privelemdict
= {
1508 preposition
._superclassnames
= []
1509 preposition
._privpropdict
= {
1511 preposition
._privelemdict
= {
1513 reference_form
._superclassnames
= []
1514 reference_form
._privpropdict
= {
1516 reference_form
._privelemdict
= {
1518 handler
._superclassnames
= []
1519 handler
._privpropdict
= {
1521 handler
._privelemdict
= {
1523 data
._superclassnames
= []
1524 data
._privpropdict
= {
1526 data
._privelemdict
= {
1528 text
._superclassnames
= []
1529 text
._privpropdict
= {
1531 text
._privelemdict
= {
1533 international_text
._superclassnames
= []
1534 international_text
._privpropdict
= {
1536 international_text
._privelemdict
= {
1538 international_text
._superclassnames
= []
1539 international_text
._privpropdict
= {
1541 international_text
._privelemdict
= {
1543 string
._superclassnames
= []
1544 string
._privpropdict
= {
1546 string
._privelemdict
= {
1548 styled_text
._superclassnames
= []
1549 styled_text
._privpropdict
= {
1551 styled_text
._privelemdict
= {
1553 styled_text
._superclassnames
= []
1554 styled_text
._privpropdict
= {
1556 styled_text
._privelemdict
= {
1558 styled_Clipboard_text
._superclassnames
= []
1559 styled_Clipboard_text
._privpropdict
= {
1561 styled_Clipboard_text
._privelemdict
= {
1563 styled_Clipboard_text
._superclassnames
= []
1564 styled_Clipboard_text
._privpropdict
= {
1566 styled_Clipboard_text
._privelemdict
= {
1568 Unicode_text
._superclassnames
= []
1569 Unicode_text
._privpropdict
= {
1571 Unicode_text
._privelemdict
= {
1573 Unicode_text
._superclassnames
= []
1574 Unicode_text
._privpropdict
= {
1576 Unicode_text
._privelemdict
= {
1578 styled_Unicode_text
._superclassnames
= []
1579 styled_Unicode_text
._privpropdict
= {
1581 styled_Unicode_text
._privelemdict
= {
1583 styled_Unicode_text
._superclassnames
= []
1584 styled_Unicode_text
._privpropdict
= {
1586 styled_Unicode_text
._privelemdict
= {
1588 encoded_string
._superclassnames
= []
1589 encoded_string
._privpropdict
= {
1591 encoded_string
._privelemdict
= {
1593 C_string
._superclassnames
= []
1594 C_string
._privpropdict
= {
1596 C_string
._privelemdict
= {
1598 Pascal_string
._superclassnames
= []
1599 Pascal_string
._privpropdict
= {
1601 Pascal_string
._privelemdict
= {
1603 character
._superclassnames
= []
1604 character
._privpropdict
= {
1606 character
._privelemdict
= {
1608 text_item
._superclassnames
= []
1609 text_item
._privpropdict
= {
1611 text_item
._privelemdict
= {
1613 writing_code
._superclassnames
= []
1614 writing_code
._privpropdict
= {
1616 writing_code
._privelemdict
= {
1618 writing_code_info
._superclassnames
= []
1619 writing_code_info
._privpropdict
= {
1620 'script_code' : script_code
,
1621 'language_code' : language_code
,
1623 writing_code_info
._privelemdict
= {
1625 empty_ae_name_
._superclassnames
= []
1626 empty_ae_name_
._privpropdict
= {
1628 empty_ae_name_
._privelemdict
= {
1630 missing_value
._superclassnames
= []
1631 missing_value
._privpropdict
= {
1633 missing_value
._privelemdict
= {
1635 reference
._superclassnames
= []
1636 reference
._privpropdict
= {
1638 reference
._privelemdict
= {
1640 anything
._superclassnames
= []
1641 anything
._privpropdict
= {
1643 anything
._privelemdict
= {
1645 type_class
._superclassnames
= []
1646 type_class
._privpropdict
= {
1648 type_class
._privelemdict
= {
1650 RGB_color
._superclassnames
= []
1651 RGB_color
._privpropdict
= {
1653 RGB_color
._privelemdict
= {
1655 picture
._superclassnames
= []
1656 picture
._privpropdict
= {
1658 picture
._privelemdict
= {
1660 sound
._superclassnames
= []
1661 sound
._privpropdict
= {
1663 sound
._privelemdict
= {
1665 version
._superclassnames
= []
1666 version
._privpropdict
= {
1668 version
._privelemdict
= {
1670 file_specification
._superclassnames
= []
1671 file_specification
._privpropdict
= {
1673 file_specification
._privelemdict
= {
1675 alias
._superclassnames
= []
1676 alias
._privpropdict
= {
1678 alias
._privelemdict
= {
1680 machine
._superclassnames
= []
1681 machine
._privpropdict
= {
1683 machine
._privelemdict
= {
1685 zone
._superclassnames
= []
1686 zone
._privpropdict
= {
1688 zone
._privelemdict
= {
1690 keystroke
._superclassnames
= []
1691 keystroke
._privpropdict
= {
1693 'modifiers' : modifiers
,
1694 'key_kind' : key_kind
,
1696 keystroke
._privelemdict
= {
1698 seconds
._superclassnames
= []
1699 seconds
._privpropdict
= {
1701 seconds
._privelemdict
= {
1703 date
._superclassnames
= []
1704 date
._privpropdict
= {
1705 'weekday' : weekday
,
1710 'date_string' : date_string
,
1711 'time_string' : time_string
,
1713 date
._privelemdict
= {
1715 month
._superclassnames
= []
1716 month
._privpropdict
= {
1718 month
._privelemdict
= {
1720 January
._superclassnames
= []
1721 January
._privpropdict
= {
1723 January
._privelemdict
= {
1725 February
._superclassnames
= []
1726 February
._privpropdict
= {
1728 February
._privelemdict
= {
1730 March
._superclassnames
= []
1731 March
._privpropdict
= {
1733 March
._privelemdict
= {
1735 April
._superclassnames
= []
1736 April
._privpropdict
= {
1738 April
._privelemdict
= {
1740 May
._superclassnames
= []
1741 May
._privpropdict
= {
1743 May
._privelemdict
= {
1745 June
._superclassnames
= []
1746 June
._privpropdict
= {
1748 June
._privelemdict
= {
1750 July
._superclassnames
= []
1751 July
._privpropdict
= {
1753 July
._privelemdict
= {
1755 August
._superclassnames
= []
1756 August
._privpropdict
= {
1758 August
._privelemdict
= {
1760 September
._superclassnames
= []
1761 September
._privpropdict
= {
1763 September
._privelemdict
= {
1765 October
._superclassnames
= []
1766 October
._privpropdict
= {
1768 October
._privelemdict
= {
1770 November
._superclassnames
= []
1771 November
._privpropdict
= {
1773 November
._privelemdict
= {
1775 December
._superclassnames
= []
1776 December
._privpropdict
= {
1778 December
._privelemdict
= {
1780 weekday
._superclassnames
= []
1781 weekday
._privpropdict
= {
1783 weekday
._privelemdict
= {
1785 Sunday
._superclassnames
= []
1786 Sunday
._privpropdict
= {
1788 Sunday
._privelemdict
= {
1790 Monday
._superclassnames
= []
1791 Monday
._privpropdict
= {
1793 Monday
._privelemdict
= {
1795 Tuesday
._superclassnames
= []
1796 Tuesday
._privpropdict
= {
1798 Tuesday
._privelemdict
= {
1800 Wednesday
._superclassnames
= []
1801 Wednesday
._privpropdict
= {
1803 Wednesday
._privelemdict
= {
1805 Thursday
._superclassnames
= []
1806 Thursday
._privpropdict
= {
1808 Thursday
._privelemdict
= {
1810 Friday
._superclassnames
= []
1811 Friday
._privpropdict
= {
1813 Friday
._privelemdict
= {
1815 Saturday
._superclassnames
= []
1816 Saturday
._privpropdict
= {
1818 Saturday
._privelemdict
= {
1820 metres
._superclassnames
= []
1821 metres
._privpropdict
= {
1823 metres
._privelemdict
= {
1825 inches
._superclassnames
= []
1826 inches
._privpropdict
= {
1828 inches
._privelemdict
= {
1830 feet
._superclassnames
= []
1831 feet
._privpropdict
= {
1833 feet
._privelemdict
= {
1835 yards
._superclassnames
= []
1836 yards
._privpropdict
= {
1838 yards
._privelemdict
= {
1840 miles
._superclassnames
= []
1841 miles
._privpropdict
= {
1843 miles
._privelemdict
= {
1845 kilometres
._superclassnames
= []
1846 kilometres
._privpropdict
= {
1848 kilometres
._privelemdict
= {
1850 centimetres
._superclassnames
= []
1851 centimetres
._privpropdict
= {
1853 centimetres
._privelemdict
= {
1855 square_metres
._superclassnames
= []
1856 square_metres
._privpropdict
= {
1858 square_metres
._privelemdict
= {
1860 square_feet
._superclassnames
= []
1861 square_feet
._privpropdict
= {
1863 square_feet
._privelemdict
= {
1865 square_yards
._superclassnames
= []
1866 square_yards
._privpropdict
= {
1868 square_yards
._privelemdict
= {
1870 square_miles
._superclassnames
= []
1871 square_miles
._privpropdict
= {
1873 square_miles
._privelemdict
= {
1875 square_kilometres
._superclassnames
= []
1876 square_kilometres
._privpropdict
= {
1878 square_kilometres
._privelemdict
= {
1880 litres
._superclassnames
= []
1881 litres
._privpropdict
= {
1883 litres
._privelemdict
= {
1885 gallons
._superclassnames
= []
1886 gallons
._privpropdict
= {
1888 gallons
._privelemdict
= {
1890 quarts
._superclassnames
= []
1891 quarts
._privpropdict
= {
1893 quarts
._privelemdict
= {
1895 cubic_metres
._superclassnames
= []
1896 cubic_metres
._privpropdict
= {
1898 cubic_metres
._privelemdict
= {
1900 cubic_centimetres
._superclassnames
= []
1901 cubic_centimetres
._privpropdict
= {
1903 cubic_centimetres
._privelemdict
= {
1905 cubic_feet
._superclassnames
= []
1906 cubic_feet
._privpropdict
= {
1908 cubic_feet
._privelemdict
= {
1910 cubic_inches
._superclassnames
= []
1911 cubic_inches
._privpropdict
= {
1913 cubic_inches
._privelemdict
= {
1915 cubic_yards
._superclassnames
= []
1916 cubic_yards
._privpropdict
= {
1918 cubic_yards
._privelemdict
= {
1920 kilograms
._superclassnames
= []
1921 kilograms
._privpropdict
= {
1923 kilograms
._privelemdict
= {
1925 grams
._superclassnames
= []
1926 grams
._privpropdict
= {
1928 grams
._privelemdict
= {
1930 ounces
._superclassnames
= []
1931 ounces
._privpropdict
= {
1933 ounces
._privelemdict
= {
1935 pounds
._superclassnames
= []
1936 pounds
._privpropdict
= {
1938 pounds
._privelemdict
= {
1940 degrees_Celsius
._superclassnames
= []
1941 degrees_Celsius
._privpropdict
= {
1943 degrees_Celsius
._privelemdict
= {
1945 degrees_Fahrenheit
._superclassnames
= []
1946 degrees_Fahrenheit
._privpropdict
= {
1948 degrees_Fahrenheit
._privelemdict
= {
1950 degrees_Kelvin
._superclassnames
= []
1951 degrees_Kelvin
._privpropdict
= {
1953 degrees_Kelvin
._privelemdict
= {
1955 upper_case
._superclassnames
= []
1956 upper_case
._privpropdict
= {
1958 upper_case
._privelemdict
= {
1960 app
._superclassnames
= []
1961 app
._privpropdict
= {
1963 app
._privelemdict
= {
1966 'case' : 'case', # case
1967 'diacriticals' : 'diac', # diacriticals
1968 'white_space' : 'whit', # white space
1969 'hyphens' : 'hyph', # hyphens
1970 'expansion' : 'expa', # expansion
1971 'punctuation' : 'punc', # punctuation
1972 'application_responses' : 'rmte', # remote event replies
1976 'true' : 'true', # the true boolean value
1977 'false' : 'fals', # the false boolean value
1981 'current_application' : 'cura', # the current application
1985 'option_down' : 'Kopt', #
1986 'command_down' : 'Kcmd', #
1987 'control_down' : 'Kctl', #
1988 'shift_down' : 'Ksft', #
1989 'caps_lock_down' : 'Kclk', #
1993 'escape_key' : 'ks5\x00', #
1994 'delete_key' : 'ks3\x00', #
1995 'tab_key' : 'ks0\x00', #
1996 'return_key' : 'ks$\x00', #
1997 'clear_key' : 'ksG\x00', #
1998 'enter_key' : 'ksL\x00', #
1999 'up_arrow_key' : 'ks~\x00', #
2000 'down_arrow_key' : 'ks}\x00', #
2001 'left_arrow_key' : 'ks{\x00', #
2002 'right_arrow_key' : 'ks|\x00', #
2003 'help_key' : 'ksr\x00', #
2004 'home_key' : 'kss\x00', #
2005 'page_up_key' : 'kst\x00', #
2006 'page_down_key' : 'ksy\x00', #
2007 'forward_del_key' : 'ksu\x00', #
2008 'end_key' : 'ksw\x00', #
2009 'F1_key' : 'ksz\x00', #
2010 'F2_key' : 'ksx\x00', #
2011 'F3_key' : 'ksc\x00', #
2012 'F4_key' : 'ksv\x00', #
2013 'F5_key' : 'ks`\x00', #
2014 'F6_key' : 'ksa\x00', #
2015 'F7_key' : 'ksb\x00', #
2016 'F8_key' : 'ksd\x00', #
2017 'F9_key' : 'kse\x00', #
2018 'F10_key' : 'ksm\x00', #
2019 'F11_key' : 'ksg\x00', #
2020 'F12_key' : 'kso\x00', #
2021 'F13_key' : 'ksi\x00', #
2022 'F14_key' : 'ksk\x00', #
2023 'F15_key' : 'ksq\x00', #
2028 # Indices of types declared in this module
2030 _classdeclarations
= {
2034 'cmet' : cubic_metres
,
2035 'STXT' : styled_text
,
2036 'nds ' : number_2c__date_or_text
,
2042 'psct' : writing_code
,
2043 'degf' : degrees_Fahrenheit
,
2044 'lrs ' : list_2c__record_or_text
,
2047 'nd ' : number_or_date
,
2048 'cmtr' : centimetres
,
2050 'pstr' : Pascal_string
,
2053 'ls ' : list_or_string
,
2055 'sf ' : alias_or_string
,
2056 'citl' : writing_code_info
,
2059 'type' : type_class
,
2060 'prep' : preposition
,
2062 'case' : upper_case
,
2066 'sqkm' : square_kilometres
,
2072 'itxt' : international_text
,
2075 'kmtr' : kilometres
,
2076 'sqft' : square_feet
,
2081 'degc' : degrees_Celsius
,
2082 'msng' : missing_value
,
2087 'ns ' : number_or_string
,
2090 'llst' : linked_list
,
2091 'styl' : styled_Clipboard_text
,
2092 'encs' : encoded_string
,
2094 'cuin' : cubic_inches
,
2096 'sutx' : styled_Unicode_text
,
2097 'lr ' : list_or_record
,
2098 'degk' : degrees_Kelvin
,
2109 'sqrm' : square_metres
,
2111 'kfrm' : reference_form
,
2116 'undf' : empty_ae_name_
,
2120 'sqmi' : square_miles
,
2123 'utxt' : Unicode_text
,
2125 'sqyd' : square_yards
,
2127 'cyrd' : cubic_yards
,
2130 'cfet' : cubic_feet
,
2131 'ccmt' : cubic_centimetres
,
2134 'fss ' : file_specification
,
2138 _propdeclarations
= {
2147 'dstr' : date_string
,
2149 'ascr' : AppleScript
,
2151 'c@#^' : _3c_Inheritance_3e_
,
2156 'tstr' : time_string
,
2159 'plcd' : language_code
,
2163 'txdl' : text_item_delimiters
,
2164 'prdp' : print_depth
,
2165 'prln' : print_length
,
2166 'pscd' : script_code
,
2173 _compdeclarations
= {
2176 _enumdeclarations
= {
2177 'eMds' : _Enum_eMds
,
2178 'cons' : _Enum_cons
,
2179 'misc' : _Enum_misc
,
2180 'ekst' : _Enum_ekst
,
2181 'boov' : _Enum_boov
,