ยปCore Development>Code coverage>Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py

Python code coverage for Lib/plat-mac/lib-scriptpackages/StdSuites/AppleScript_Suite.py

#countcontent
1n/a"""Suite AppleScript Suite: Standard terms for AppleScript
2n/aLevel 1, version 1
3n/a
4n/aGenerated from /Volumes/Sap/System Folder/Extensions/AppleScript
5n/aAETE/AEUT resource version 1/0, language 0, script 0
6n/a"""
7n/a
8n/aimport aetools
9n/aimport MacOS
10n/a
11n/a_code = 'ascr'
12n/a
13n/aclass AppleScript_Suite_Events:
14n/a
15n/a def _26_(self, _object, _attributes={}, **_arguments):
16n/a """&: Concatenation
17n/a Required argument: an AE object reference
18n/a Keyword argument _attributes: AppleEvent attribute dictionary
19n/a Returns: anything
20n/a """
21n/a _code = 'ascr'
22n/a _subcode = 'ccat'
23n/a
24n/a if _arguments: raise TypeError, 'No optional args expected'
25n/a _arguments['----'] = _object
26n/a
27n/a
28n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
29n/a _arguments, _attributes)
30n/a if _arguments.get('errn', 0):
31n/a raise aetools.Error, aetools.decodeerror(_arguments)
32n/a # XXXX Optionally decode result
33n/a if _arguments.has_key('----'):
34n/a return _arguments['----']
35n/a
36n/a def _2a_(self, _object, _attributes={}, **_arguments):
37n/a """*: Multiplication
38n/a Required argument: an AE object reference
39n/a Keyword argument _attributes: AppleEvent attribute dictionary
40n/a Returns: anything
41n/a """
42n/a _code = 'ascr'
43n/a _subcode = '* '
44n/a
45n/a if _arguments: raise TypeError, 'No optional args expected'
46n/a _arguments['----'] = _object
47n/a
48n/a
49n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
50n/a _arguments, _attributes)
51n/a if _arguments.get('errn', 0):
52n/a raise aetools.Error, aetools.decodeerror(_arguments)
53n/a # XXXX Optionally decode result
54n/a if _arguments.has_key('----'):
55n/a return _arguments['----']
56n/a
57n/a def _2b_(self, _object, _attributes={}, **_arguments):
58n/a """+: Addition
59n/a Required argument: an AE object reference
60n/a Keyword argument _attributes: AppleEvent attribute dictionary
61n/a Returns: anything
62n/a """
63n/a _code = 'ascr'
64n/a _subcode = '+ '
65n/a
66n/a if _arguments: raise TypeError, 'No optional args expected'
67n/a _arguments['----'] = _object
68n/a
69n/a
70n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
71n/a _arguments, _attributes)
72n/a if _arguments.get('errn', 0):
73n/a raise aetools.Error, aetools.decodeerror(_arguments)
74n/a # XXXX Optionally decode result
75n/a if _arguments.has_key('----'):
76n/a return _arguments['----']
77n/a
78n/a def _2d_(self, _object, _attributes={}, **_arguments):
79n/a """-: Subtraction
80n/a Required argument: an AE object reference
81n/a Keyword argument _attributes: AppleEvent attribute dictionary
82n/a Returns: anything
83n/a """
84n/a _code = 'ascr'
85n/a _subcode = '- '
86n/a
87n/a if _arguments: raise TypeError, 'No optional args expected'
88n/a _arguments['----'] = _object
89n/a
90n/a
91n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
92n/a _arguments, _attributes)
93n/a if _arguments.get('errn', 0):
94n/a raise aetools.Error, aetools.decodeerror(_arguments)
95n/a # XXXX Optionally decode result
96n/a if _arguments.has_key('----'):
97n/a return _arguments['----']
98n/a
99n/a def _3c_(self, _object, _attributes={}, **_arguments):
100n/a """<: Less than
101n/a Required argument: an AE object reference
102n/a Keyword argument _attributes: AppleEvent attribute dictionary
103n/a Returns: anything
104n/a """
105n/a _code = 'ascr'
106n/a _subcode = '< '
107n/a
108n/a if _arguments: raise TypeError, 'No optional args expected'
109n/a _arguments['----'] = _object
110n/a
111n/a
112n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
113n/a _arguments, _attributes)
114n/a if _arguments.get('errn', 0):
115n/a raise aetools.Error, aetools.decodeerror(_arguments)
116n/a # XXXX Optionally decode result
117n/a if _arguments.has_key('----'):
118n/a return _arguments['----']
119n/a
120n/a def _3d_(self, _object, _attributes={}, **_arguments):
121n/a """=: Equality
122n/a Required argument: an AE object reference
123n/a Keyword argument _attributes: AppleEvent attribute dictionary
124n/a Returns: anything
125n/a """
126n/a _code = 'ascr'
127n/a _subcode = '= '
128n/a
129n/a if _arguments: raise TypeError, 'No optional args expected'
130n/a _arguments['----'] = _object
131n/a
132n/a
133n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
134n/a _arguments, _attributes)
135n/a if _arguments.get('errn', 0):
136n/a raise aetools.Error, aetools.decodeerror(_arguments)
137n/a # XXXX Optionally decode result
138n/a if _arguments.has_key('----'):
139n/a return _arguments['----']
140n/a
141n/a def _3e_(self, _object, _attributes={}, **_arguments):
142n/a """>: Greater than
143n/a Required argument: an AE object reference
144n/a Keyword argument _attributes: AppleEvent attribute dictionary
145n/a Returns: anything
146n/a """
147n/a _code = 'ascr'
148n/a _subcode = '> '
149n/a
150n/a if _arguments: raise TypeError, 'No optional args expected'
151n/a _arguments['----'] = _object
152n/a
153n/a
154n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
155n/a _arguments, _attributes)
156n/a if _arguments.get('errn', 0):
157n/a raise aetools.Error, aetools.decodeerror(_arguments)
158n/a # XXXX Optionally decode result
159n/a if _arguments.has_key('----'):
160n/a return _arguments['----']
161n/a
162n/a _argmap_Call_a5_subroutine = {
163n/a 'at' : 'at ',
164n/a 'from_' : 'from',
165n/a 'for_' : 'for ',
166n/a 'to' : 'to ',
167n/a 'thru' : 'thru',
168n/a 'through' : 'thgh',
169n/a 'by' : 'by ',
170n/a 'on' : 'on ',
171n/a 'into' : 'into',
172n/a 'onto' : 'onto',
173n/a 'between' : 'btwn',
174n/a 'against' : 'agst',
175n/a 'out_of' : 'outo',
176n/a 'instead_of' : 'isto',
177n/a 'aside_from' : 'asdf',
178n/a 'around' : 'arnd',
179n/a 'beside' : 'bsid',
180n/a 'beneath' : 'bnth',
181n/a 'under' : 'undr',
182n/a 'over' : 'over',
183n/a 'above' : 'abve',
184n/a 'below' : 'belw',
185n/a 'apart_from' : 'aprt',
186n/a 'about' : 'abou',
187n/a 'since' : 'snce',
188n/a 'given' : 'givn',
189n/a 'with' : 'with',
190n/a 'without' : 'wout',
191n/a }
192n/a
193n/a def Call_a5_subroutine(self, _object=None, _attributes={}, **_arguments):
194n/a """Call\xa5subroutine: A subroutine call
195n/a Required argument: anything
196n/a Keyword argument at: a preposition
197n/a Keyword argument from_: a preposition
198n/a Keyword argument for_: a preposition
199n/a Keyword argument to: a preposition
200n/a Keyword argument thru: a preposition
201n/a Keyword argument through: a preposition
202n/a Keyword argument by: a preposition
203n/a Keyword argument on: a preposition
204n/a Keyword argument into: a preposition
205n/a Keyword argument onto: a preposition
206n/a Keyword argument between: a preposition
207n/a Keyword argument against: a preposition
208n/a Keyword argument out_of: a preposition
209n/a Keyword argument instead_of: a preposition
210n/a Keyword argument aside_from: a preposition
211n/a Keyword argument around: a preposition
212n/a Keyword argument beside: a preposition
213n/a Keyword argument beneath: a preposition
214n/a Keyword argument under: a preposition
215n/a Keyword argument over: a preposition
216n/a Keyword argument above: a preposition
217n/a Keyword argument below: a preposition
218n/a Keyword argument apart_from: a preposition
219n/a Keyword argument about: a preposition
220n/a Keyword argument since: a preposition
221n/a Keyword argument given: parameter:value pairs, comma-separated
222n/a Keyword argument with: formal parameter set to true if matching actual parameter is provided
223n/a Keyword argument without: formal parameter set to false if matching actual parmeter is provided
224n/a Keyword argument _attributes: AppleEvent attribute dictionary
225n/a Returns: anything
226n/a """
227n/a _code = 'ascr'
228n/a _subcode = 'psbr'
229n/a
230n/a aetools.keysubst(_arguments, self._argmap_Call_a5_subroutine)
231n/a _arguments['----'] = _object
232n/a
233n/a
234n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
235n/a _arguments, _attributes)
236n/a if _arguments.get('errn', 0):
237n/a raise aetools.Error, aetools.decodeerror(_arguments)
238n/a # XXXX Optionally decode result
239n/a if _arguments.has_key('----'):
240n/a return _arguments['----']
241n/a
242n/a def _5e_(self, _object, _attributes={}, **_arguments):
243n/a """^: Exponentiation
244n/a Required argument: an AE object reference
245n/a Keyword argument _attributes: AppleEvent attribute dictionary
246n/a Returns: anything
247n/a """
248n/a _code = 'ascr'
249n/a _subcode = '^ '
250n/a
251n/a if _arguments: raise TypeError, 'No optional args expected'
252n/a _arguments['----'] = _object
253n/a
254n/a
255n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
256n/a _arguments, _attributes)
257n/a if _arguments.get('errn', 0):
258n/a raise aetools.Error, aetools.decodeerror(_arguments)
259n/a # XXXX Optionally decode result
260n/a if _arguments.has_key('----'):
261n/a return _arguments['----']
262n/a
263n/a def activate(self, _no_object=None, _attributes={}, **_arguments):
264n/a """activate: Bring the targeted application program to the front
265n/a Keyword argument _attributes: AppleEvent attribute dictionary
266n/a """
267n/a _code = 'misc'
268n/a _subcode = 'actv'
269n/a
270n/a if _arguments: raise TypeError, 'No optional args expected'
271n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
272n/a
273n/a
274n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
275n/a _arguments, _attributes)
276n/a if _arguments.get('errn', 0):
277n/a raise aetools.Error, aetools.decodeerror(_arguments)
278n/a # XXXX Optionally decode result
279n/a if _arguments.has_key('----'):
280n/a return _arguments['----']
281n/a
282n/a def and_(self, _object, _attributes={}, **_arguments):
283n/a """and: Logical conjunction
284n/a Required argument: an AE object reference
285n/a Keyword argument _attributes: AppleEvent attribute dictionary
286n/a Returns: anything
287n/a """
288n/a _code = 'ascr'
289n/a _subcode = 'AND '
290n/a
291n/a if _arguments: raise TypeError, 'No optional args expected'
292n/a _arguments['----'] = _object
293n/a
294n/a
295n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
296n/a _arguments, _attributes)
297n/a if _arguments.get('errn', 0):
298n/a raise aetools.Error, aetools.decodeerror(_arguments)
299n/a # XXXX Optionally decode result
300n/a if _arguments.has_key('----'):
301n/a return _arguments['----']
302n/a
303n/a def as_(self, _object, _attributes={}, **_arguments):
304n/a """as: Coercion
305n/a Required argument: an AE object reference
306n/a Keyword argument _attributes: AppleEvent attribute dictionary
307n/a Returns: anything
308n/a """
309n/a _code = 'ascr'
310n/a _subcode = 'coer'
311n/a
312n/a if _arguments: raise TypeError, 'No optional args expected'
313n/a _arguments['----'] = _object
314n/a
315n/a
316n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
317n/a _arguments, _attributes)
318n/a if _arguments.get('errn', 0):
319n/a raise aetools.Error, aetools.decodeerror(_arguments)
320n/a # XXXX Optionally decode result
321n/a if _arguments.has_key('----'):
322n/a return _arguments['----']
323n/a
324n/a def contains(self, _object, _attributes={}, **_arguments):
325n/a """contains: Containment
326n/a Required argument: an AE object reference
327n/a Keyword argument _attributes: AppleEvent attribute dictionary
328n/a Returns: anything
329n/a """
330n/a _code = 'ascr'
331n/a _subcode = 'cont'
332n/a
333n/a if _arguments: raise TypeError, 'No optional args expected'
334n/a _arguments['----'] = _object
335n/a
336n/a
337n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
338n/a _arguments, _attributes)
339n/a if _arguments.get('errn', 0):
340n/a raise aetools.Error, aetools.decodeerror(_arguments)
341n/a # XXXX Optionally decode result
342n/a if _arguments.has_key('----'):
343n/a return _arguments['----']
344n/a
345n/a def div(self, _object, _attributes={}, **_arguments):
346n/a """div: Quotient
347n/a Required argument: an AE object reference
348n/a Keyword argument _attributes: AppleEvent attribute dictionary
349n/a Returns: anything
350n/a """
351n/a _code = 'ascr'
352n/a _subcode = 'div '
353n/a
354n/a if _arguments: raise TypeError, 'No optional args expected'
355n/a _arguments['----'] = _object
356n/a
357n/a
358n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
359n/a _arguments, _attributes)
360n/a if _arguments.get('errn', 0):
361n/a raise aetools.Error, aetools.decodeerror(_arguments)
362n/a # XXXX Optionally decode result
363n/a if _arguments.has_key('----'):
364n/a return _arguments['----']
365n/a
366n/a def end_tell(self, _no_object=None, _attributes={}, **_arguments):
367n/a """end tell: Record or log an \xd4end tell\xd5 statement
368n/a Keyword argument _attributes: AppleEvent attribute dictionary
369n/a """
370n/a _code = 'ascr'
371n/a _subcode = 'tend'
372n/a
373n/a if _arguments: raise TypeError, 'No optional args expected'
374n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
375n/a
376n/a
377n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
378n/a _arguments, _attributes)
379n/a if _arguments.get('errn', 0):
380n/a raise aetools.Error, aetools.decodeerror(_arguments)
381n/a # XXXX Optionally decode result
382n/a if _arguments.has_key('----'):
383n/a return _arguments['----']
384n/a
385n/a def ends_with(self, _object, _attributes={}, **_arguments):
386n/a """ends with: Ends with
387n/a Required argument: an AE object reference
388n/a Keyword argument _attributes: AppleEvent attribute dictionary
389n/a Returns: anything
390n/a """
391n/a _code = 'ascr'
392n/a _subcode = 'ends'
393n/a
394n/a if _arguments: raise TypeError, 'No optional args expected'
395n/a _arguments['----'] = _object
396n/a
397n/a
398n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
399n/a _arguments, _attributes)
400n/a if _arguments.get('errn', 0):
401n/a raise aetools.Error, aetools.decodeerror(_arguments)
402n/a # XXXX Optionally decode result
403n/a if _arguments.has_key('----'):
404n/a return _arguments['----']
405n/a
406n/a _argmap_error = {
407n/a 'number' : 'errn',
408n/a 'partial_result' : 'ptlr',
409n/a 'from_' : 'erob',
410n/a 'to' : 'errt',
411n/a }
412n/a
413n/a def error(self, _object=None, _attributes={}, **_arguments):
414n/a """error: Raise an error
415n/a Required argument: anything
416n/a Keyword argument number: an error number
417n/a Keyword argument partial_result: any partial result occurring before the error
418n/a Keyword argument from_: the object that caused the error
419n/a Keyword argument to: the desired class for a failed coercion
420n/a Keyword argument _attributes: AppleEvent attribute dictionary
421n/a """
422n/a _code = 'ascr'
423n/a _subcode = 'err '
424n/a
425n/a aetools.keysubst(_arguments, self._argmap_error)
426n/a _arguments['----'] = _object
427n/a
428n/a
429n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
430n/a _arguments, _attributes)
431n/a if _arguments.get('errn', 0):
432n/a raise aetools.Error, aetools.decodeerror(_arguments)
433n/a # XXXX Optionally decode result
434n/a if _arguments.has_key('----'):
435n/a return _arguments['----']
436n/a
437n/a def idle(self, _no_object=None, _attributes={}, **_arguments):
438n/a """idle: Sent to a script application when it is idle
439n/a Keyword argument _attributes: AppleEvent attribute dictionary
440n/a Returns: the number of seconds to wait for next idle event
441n/a """
442n/a _code = 'misc'
443n/a _subcode = 'idle'
444n/a
445n/a if _arguments: raise TypeError, 'No optional args expected'
446n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
447n/a
448n/a
449n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
450n/a _arguments, _attributes)
451n/a if _arguments.get('errn', 0):
452n/a raise aetools.Error, aetools.decodeerror(_arguments)
453n/a # XXXX Optionally decode result
454n/a if _arguments.has_key('----'):
455n/a return _arguments['----']
456n/a
457n/a def launch(self, _no_object=None, _attributes={}, **_arguments):
458n/a """launch: Start an application for scripting
459n/a Keyword argument _attributes: AppleEvent attribute dictionary
460n/a """
461n/a _code = 'ascr'
462n/a _subcode = 'noop'
463n/a
464n/a if _arguments: raise TypeError, 'No optional args expected'
465n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
466n/a
467n/a
468n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
469n/a _arguments, _attributes)
470n/a if _arguments.get('errn', 0):
471n/a raise aetools.Error, aetools.decodeerror(_arguments)
472n/a # XXXX Optionally decode result
473n/a if _arguments.has_key('----'):
474n/a return _arguments['----']
475n/a
476n/a def log(self, _object, _attributes={}, **_arguments):
477n/a """log: Cause a comment to be logged
478n/a Required argument: undocumented, typecode 'TEXT'
479n/a Keyword argument _attributes: AppleEvent attribute dictionary
480n/a """
481n/a _code = 'ascr'
482n/a _subcode = 'cmnt'
483n/a
484n/a if _arguments: raise TypeError, 'No optional args expected'
485n/a _arguments['----'] = _object
486n/a
487n/a
488n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
489n/a _arguments, _attributes)
490n/a if _arguments.get('errn', 0):
491n/a raise aetools.Error, aetools.decodeerror(_arguments)
492n/a # XXXX Optionally decode result
493n/a if _arguments.has_key('----'):
494n/a return _arguments['----']
495n/a
496n/a def mod(self, _object, _attributes={}, **_arguments):
497n/a """mod: Remainder
498n/a Required argument: an AE object reference
499n/a Keyword argument _attributes: AppleEvent attribute dictionary
500n/a Returns: anything
501n/a """
502n/a _code = 'ascr'
503n/a _subcode = 'mod '
504n/a
505n/a if _arguments: raise TypeError, 'No optional args expected'
506n/a _arguments['----'] = _object
507n/a
508n/a
509n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
510n/a _arguments, _attributes)
511n/a if _arguments.get('errn', 0):
512n/a raise aetools.Error, aetools.decodeerror(_arguments)
513n/a # XXXX Optionally decode result
514n/a if _arguments.has_key('----'):
515n/a return _arguments['----']
516n/a
517n/a def negate(self, _object, _attributes={}, **_arguments):
518n/a """negate: Numeric negation
519n/a Required argument: an AE object reference
520n/a Keyword argument _attributes: AppleEvent attribute dictionary
521n/a Returns: anything
522n/a """
523n/a _code = 'ascr'
524n/a _subcode = 'neg '
525n/a
526n/a if _arguments: raise TypeError, 'No optional args expected'
527n/a _arguments['----'] = _object
528n/a
529n/a
530n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
531n/a _arguments, _attributes)
532n/a if _arguments.get('errn', 0):
533n/a raise aetools.Error, aetools.decodeerror(_arguments)
534n/a # XXXX Optionally decode result
535n/a if _arguments.has_key('----'):
536n/a return _arguments['----']
537n/a
538n/a def not_(self, _object, _attributes={}, **_arguments):
539n/a """not: Logical negation
540n/a Required argument: an AE object reference
541n/a Keyword argument _attributes: AppleEvent attribute dictionary
542n/a Returns: anything
543n/a """
544n/a _code = 'ascr'
545n/a _subcode = 'NOT '
546n/a
547n/a if _arguments: raise TypeError, 'No optional args expected'
548n/a _arguments['----'] = _object
549n/a
550n/a
551n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
552n/a _arguments, _attributes)
553n/a if _arguments.get('errn', 0):
554n/a raise aetools.Error, aetools.decodeerror(_arguments)
555n/a # XXXX Optionally decode result
556n/a if _arguments.has_key('----'):
557n/a return _arguments['----']
558n/a
559n/a def or_(self, _object, _attributes={}, **_arguments):
560n/a """or: Logical disjunction
561n/a Required argument: an AE object reference
562n/a Keyword argument _attributes: AppleEvent attribute dictionary
563n/a Returns: anything
564n/a """
565n/a _code = 'ascr'
566n/a _subcode = 'OR '
567n/a
568n/a if _arguments: raise TypeError, 'No optional args expected'
569n/a _arguments['----'] = _object
570n/a
571n/a
572n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
573n/a _arguments, _attributes)
574n/a if _arguments.get('errn', 0):
575n/a raise aetools.Error, aetools.decodeerror(_arguments)
576n/a # XXXX Optionally decode result
577n/a if _arguments.has_key('----'):
578n/a return _arguments['----']
579n/a
580n/a def start_log(self, _no_object=None, _attributes={}, **_arguments):
581n/a """start log: Start event logging in the script editor
582n/a Keyword argument _attributes: AppleEvent attribute dictionary
583n/a """
584n/a _code = 'ToyS'
585n/a _subcode = 'log1'
586n/a
587n/a if _arguments: raise TypeError, 'No optional args expected'
588n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
589n/a
590n/a
591n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
592n/a _arguments, _attributes)
593n/a if _arguments.get('errn', 0):
594n/a raise aetools.Error, aetools.decodeerror(_arguments)
595n/a # XXXX Optionally decode result
596n/a if _arguments.has_key('----'):
597n/a return _arguments['----']
598n/a
599n/a def starts_with(self, _object, _attributes={}, **_arguments):
600n/a """starts with: Starts with
601n/a Required argument: an AE object reference
602n/a Keyword argument _attributes: AppleEvent attribute dictionary
603n/a Returns: anything
604n/a """
605n/a _code = 'ascr'
606n/a _subcode = 'bgwt'
607n/a
608n/a if _arguments: raise TypeError, 'No optional args expected'
609n/a _arguments['----'] = _object
610n/a
611n/a
612n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
613n/a _arguments, _attributes)
614n/a if _arguments.get('errn', 0):
615n/a raise aetools.Error, aetools.decodeerror(_arguments)
616n/a # XXXX Optionally decode result
617n/a if _arguments.has_key('----'):
618n/a return _arguments['----']
619n/a
620n/a def stop_log(self, _no_object=None, _attributes={}, **_arguments):
621n/a """stop log: Stop event logging in the script editor
622n/a Keyword argument _attributes: AppleEvent attribute dictionary
623n/a """
624n/a _code = 'ToyS'
625n/a _subcode = 'log0'
626n/a
627n/a if _arguments: raise TypeError, 'No optional args expected'
628n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
629n/a
630n/a
631n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
632n/a _arguments, _attributes)
633n/a if _arguments.get('errn', 0):
634n/a raise aetools.Error, aetools.decodeerror(_arguments)
635n/a # XXXX Optionally decode result
636n/a if _arguments.has_key('----'):
637n/a return _arguments['----']
638n/a
639n/a def tell(self, _no_object=None, _attributes={}, **_arguments):
640n/a """tell: Record or log a \xd4tell\xd5 statement
641n/a Keyword argument _attributes: AppleEvent attribute dictionary
642n/a """
643n/a _code = 'ascr'
644n/a _subcode = 'tell'
645n/a
646n/a if _arguments: raise TypeError, 'No optional args expected'
647n/a if _no_object is not None: raise TypeError, 'No direct arg expected'
648n/a
649n/a
650n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
651n/a _arguments, _attributes)
652n/a if _arguments.get('errn', 0):
653n/a raise aetools.Error, aetools.decodeerror(_arguments)
654n/a # XXXX Optionally decode result
655n/a if _arguments.has_key('----'):
656n/a return _arguments['----']
657n/a
658n/a def _ad_(self, _object, _attributes={}, **_arguments):
659n/a """\xad: Inequality
660n/a Required argument: an AE object reference
661n/a Keyword argument _attributes: AppleEvent attribute dictionary
662n/a Returns: anything
663n/a """
664n/a _code = 'ascr'
665n/a _subcode = '\xad '
666n/a
667n/a if _arguments: raise TypeError, 'No optional args expected'
668n/a _arguments['----'] = _object
669n/a
670n/a
671n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
672n/a _arguments, _attributes)
673n/a if _arguments.get('errn', 0):
674n/a raise aetools.Error, aetools.decodeerror(_arguments)
675n/a # XXXX Optionally decode result
676n/a if _arguments.has_key('----'):
677n/a return _arguments['----']
678n/a
679n/a def _b2_(self, _object, _attributes={}, **_arguments):
680n/a """\xb2: Less than or equal to
681n/a Required argument: an AE object reference
682n/a Keyword argument _attributes: AppleEvent attribute dictionary
683n/a Returns: anything
684n/a """
685n/a _code = 'ascr'
686n/a _subcode = '<= '
687n/a
688n/a if _arguments: raise TypeError, 'No optional args expected'
689n/a _arguments['----'] = _object
690n/a
691n/a
692n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
693n/a _arguments, _attributes)
694n/a if _arguments.get('errn', 0):
695n/a raise aetools.Error, aetools.decodeerror(_arguments)
696n/a # XXXX Optionally decode result
697n/a if _arguments.has_key('----'):
698n/a return _arguments['----']
699n/a
700n/a def _b3_(self, _object, _attributes={}, **_arguments):
701n/a """\xb3: Greater than or equal to
702n/a Required argument: an AE object reference
703n/a Keyword argument _attributes: AppleEvent attribute dictionary
704n/a Returns: anything
705n/a """
706n/a _code = 'ascr'
707n/a _subcode = '>= '
708n/a
709n/a if _arguments: raise TypeError, 'No optional args expected'
710n/a _arguments['----'] = _object
711n/a
712n/a
713n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
714n/a _arguments, _attributes)
715n/a if _arguments.get('errn', 0):
716n/a raise aetools.Error, aetools.decodeerror(_arguments)
717n/a # XXXX Optionally decode result
718n/a if _arguments.has_key('----'):
719n/a return _arguments['----']
720n/a
721n/a def _d6_(self, _object, _attributes={}, **_arguments):
722n/a """\xd6: Division
723n/a Required argument: an AE object reference
724n/a Keyword argument _attributes: AppleEvent attribute dictionary
725n/a Returns: anything
726n/a """
727n/a _code = 'ascr'
728n/a _subcode = '/ '
729n/a
730n/a if _arguments: raise TypeError, 'No optional args expected'
731n/a _arguments['----'] = _object
732n/a
733n/a
734n/a _reply, _arguments, _attributes = self.send(_code, _subcode,
735n/a _arguments, _attributes)
736n/a if _arguments.get('errn', 0):
737n/a raise aetools.Error, aetools.decodeerror(_arguments)
738n/a # XXXX Optionally decode result
739n/a if _arguments.has_key('----'):
740n/a return _arguments['----']
741n/a
742n/a
743n/aclass anything(aetools.ComponentItem):
744n/a """anything - any class or reference """
745n/a want = '****'
746n/a
747n/aclass pictures(aetools.ComponentItem):
748n/a """pictures - """
749n/a want = 'PICT'
750n/a
751n/apicture = pictures
752n/a
753n/aclass styled_text(aetools.ComponentItem):
754n/a """styled text - text with font, size, and style information """
755n/a want = 'STXT'
756n/a
757n/astyled_text = styled_text
758n/a
759n/aclass strings(aetools.ComponentItem):
760n/a """strings - """
761n/a want = 'TEXT'
762n/a
763n/astring = strings
764n/a
765n/aclass alias(aetools.ComponentItem):
766n/a """alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
767n/a want = 'alis'
768n/aclass _Prop_POSIX_path(aetools.NProperty):
769n/a """POSIX path - the POSIX path of the file """
770n/a which = 'psxp'
771n/a want = 'TEXT'
772n/a
773n/aaliases = alias
774n/a
775n/aclass April(aetools.ComponentItem):
776n/a """April - the month of April """
777n/a want = 'apr '
778n/a
779n/aclass August(aetools.ComponentItem):
780n/a """August - the month of August """
781n/a want = 'aug '
782n/a
783n/aclass booleans(aetools.ComponentItem):
784n/a """booleans - """
785n/a want = 'bool'
786n/a
787n/aboolean = booleans
788n/a
789n/aclass RGB_colors(aetools.ComponentItem):
790n/a """RGB colors - """
791n/a want = 'cRGB'
792n/a
793n/aRGB_color = RGB_colors
794n/a
795n/aclass application(aetools.ComponentItem):
796n/a """application - specifies global properties of AppleScript """
797n/a want = 'capp'
798n/aclass _Prop_AppleScript(aetools.NProperty):
799n/a """AppleScript - the top-level script object """
800n/a which = 'ascr'
801n/a want = 'scpt'
802n/aAppleScript = _Prop_AppleScript()
803n/aclass _Prop_days(aetools.NProperty):
804n/a """days - the number of seconds in a day """
805n/a which = 'days'
806n/a want = 'long'
807n/adays = _Prop_days()
808n/aclass _Prop_hours(aetools.NProperty):
809n/a """hours - the number of seconds in an hour """
810n/a which = 'hour'
811n/a want = 'long'
812n/ahours = _Prop_hours()
813n/aclass _Prop_minutes(aetools.NProperty):
814n/a """minutes - the number of seconds in a minute """
815n/a which = 'min '
816n/a want = 'long'
817n/aminutes = _Prop_minutes()
818n/aclass _Prop_pi(aetools.NProperty):
819n/a """pi - the constant pi """
820n/a which = 'pi '
821n/a want = 'doub'
822n/api = _Prop_pi()
823n/aclass _Prop_print_depth(aetools.NProperty):
824n/a """print depth - the maximum depth to print """
825n/a which = 'prdp'
826n/a want = 'long'
827n/aprint_depth = _Prop_print_depth()
828n/aclass _Prop_print_length(aetools.NProperty):
829n/a """print length - the maximum length to print """
830n/a which = 'prln'
831n/a want = 'long'
832n/aprint_length = _Prop_print_length()
833n/aclass _Prop_result(aetools.NProperty):
834n/a """result - the last result of evaluation """
835n/a which = 'rslt'
836n/a want = '****'
837n/aresult = _Prop_result()
838n/aclass _Prop_return_(aetools.NProperty):
839n/a """return - a return character """
840n/a which = 'ret '
841n/a want = 'cha '
842n/areturn_ = _Prop_return_()
843n/aclass _Prop_space(aetools.NProperty):
844n/a """space - a space character """
845n/a which = 'spac'
846n/a want = 'cha '
847n/aspace = _Prop_space()
848n/aclass _Prop_tab(aetools.NProperty):
849n/a """tab - a tab character """
850n/a which = 'tab '
851n/a want = 'cha '
852n/atab = _Prop_tab()
853n/aclass _Prop_text_item_delimiters(aetools.NProperty):
854n/a """text item delimiters - the text item delimiters of a string """
855n/a which = 'txdl'
856n/a want = 'list'
857n/atext_item_delimiters = _Prop_text_item_delimiters()
858n/aclass _Prop_weeks(aetools.NProperty):
859n/a """weeks - the number of seconds in a week """
860n/a which = 'week'
861n/a want = 'long'
862n/aweeks = _Prop_weeks()
863n/a
864n/aapplications = application
865n/a
866n/aapp = application
867n/a
868n/aclass upper_case(aetools.ComponentItem):
869n/a """upper case - Text with lower case converted to upper case """
870n/a want = 'case'
871n/a
872n/aclass cubic_centimeters(aetools.ComponentItem):
873n/a """cubic centimeters - a volume measurement in SI cubic centimeters """
874n/a want = 'ccmt'
875n/a
876n/acubic_centimetres = cubic_centimeters
877n/a
878n/aclass cubic_feet(aetools.ComponentItem):
879n/a """cubic feet - a volume measurement in Imperial cubic feet """
880n/a want = 'cfet'
881n/a
882n/aclass characters(aetools.ComponentItem):
883n/a """characters - """
884n/a want = 'cha '
885n/a
886n/acharacter = characters
887n/a
888n/aclass writing_code_info(aetools.ComponentItem):
889n/a """writing code info - script code and language code of text run """
890n/a want = 'citl'
891n/aclass _Prop_language_code(aetools.NProperty):
892n/a """language code - the language code for the text """
893n/a which = 'plcd'
894n/a want = 'shor'
895n/aclass _Prop_script_code(aetools.NProperty):
896n/a """script code - the script code for the text """
897n/a which = 'pscd'
898n/a want = 'shor'
899n/a
900n/awriting_code_infos = writing_code_info
901n/a
902n/aclass text_items(aetools.ComponentItem):
903n/a """text items - """
904n/a want = 'citm'
905n/a
906n/atext_item = text_items
907n/a
908n/aclass cubic_meters(aetools.ComponentItem):
909n/a """cubic meters - a volume measurement in SI cubic meters """
910n/a want = 'cmet'
911n/a
912n/acubic_metres = cubic_meters
913n/a
914n/aclass centimeters(aetools.ComponentItem):
915n/a """centimeters - a distance measurement in SI centimeters """
916n/a want = 'cmtr'
917n/a
918n/acentimetres = centimeters
919n/a
920n/aclass item(aetools.ComponentItem):
921n/a """item - An item of any type """
922n/a want = 'cobj'
923n/aclass _Prop_id(aetools.NProperty):
924n/a """id - the unique ID number of this object """
925n/a which = 'ID '
926n/a want = 'long'
927n/a
928n/aitems = item
929n/a
930n/aclass C_strings(aetools.ComponentItem):
931n/a """C strings - """
932n/a want = 'cstr'
933n/a
934n/aC_string = C_strings
935n/a
936n/aclass text(aetools.ComponentItem):
937n/a """text - text with language and style information """
938n/a want = 'ctxt'
939n/a
940n/aclass cubic_inches(aetools.ComponentItem):
941n/a """cubic inches - a volume measurement in Imperial cubic inches """
942n/a want = 'cuin'
943n/a
944n/aclass cubic_yards(aetools.ComponentItem):
945n/a """cubic yards - a distance measurement in Imperial cubic yards """
946n/a want = 'cyrd'
947n/a
948n/aclass December(aetools.ComponentItem):
949n/a """December - the month of December """
950n/a want = 'dec '
951n/a
952n/aclass degrees_Celsius(aetools.ComponentItem):
953n/a """degrees Celsius - a temperature measurement in SI degrees Celsius """
954n/a want = 'degc'
955n/a
956n/aclass degrees_Fahrenheit(aetools.ComponentItem):
957n/a """degrees Fahrenheit - a temperature measurement in degrees Fahrenheit """
958n/a want = 'degf'
959n/a
960n/aclass degrees_Kelvin(aetools.ComponentItem):
961n/a """degrees Kelvin - a temperature measurement in degrees Kelvin """
962n/a want = 'degk'
963n/a
964n/aclass reals(aetools.ComponentItem):
965n/a """reals - """
966n/a want = 'doub'
967n/a
968n/areal = reals
969n/a
970n/aclass encoded_strings(aetools.ComponentItem):
971n/a """encoded strings - """
972n/a want = 'encs'
973n/a
974n/aencoded_string = encoded_strings
975n/a
976n/aclass constants(aetools.ComponentItem):
977n/a """constants - """
978n/a want = 'enum'
979n/a
980n/aconstant = constants
981n/a
982n/aclass events(aetools.ComponentItem):
983n/a """events - """
984n/a want = 'evnt'
985n/a
986n/aevent = events
987n/a
988n/aclass February(aetools.ComponentItem):
989n/a """February - the month of February """
990n/a want = 'feb '
991n/a
992n/aclass feet(aetools.ComponentItem):
993n/a """feet - a distance measurement in Imperial feet """
994n/a want = 'feet'
995n/a
996n/aclass Friday(aetools.ComponentItem):
997n/a """Friday - Friday """
998n/a want = 'fri '
999n/a
1000n/aclass file_specification(aetools.ComponentItem):
1001n/a """file specification - a file specification as used by the operating system """
1002n/a want = 'fss '
1003n/a
1004n/afile_specifications = file_specification
1005n/a
1006n/aclass gallons(aetools.ComponentItem):
1007n/a """gallons - a volume measurement in Imperial gallons """
1008n/a want = 'galn'
1009n/a
1010n/aclass grams(aetools.ComponentItem):
1011n/a """grams - a mass measurement in SI meters """
1012n/a want = 'gram'
1013n/a
1014n/aclass handlers(aetools.ComponentItem):
1015n/a """handlers - """
1016n/a want = 'hand'
1017n/a
1018n/ahandler = handlers
1019n/a
1020n/aclass inches(aetools.ComponentItem):
1021n/a """inches - a distance measurement in Imperial inches """
1022n/a want = 'inch'
1023n/a
1024n/aclass international_text(aetools.ComponentItem):
1025n/a """international text - text that begins with a writing code """
1026n/a want = 'itxt'
1027n/a
1028n/ainternational_text = international_text
1029n/a
1030n/aclass January(aetools.ComponentItem):
1031n/a """January - the month of January """
1032n/a want = 'jan '
1033n/a
1034n/aclass July(aetools.ComponentItem):
1035n/a """July - the month of July """
1036n/a want = 'jul '
1037n/a
1038n/aclass June(aetools.ComponentItem):
1039n/a """June - the month of June """
1040n/a want = 'jun '
1041n/a
1042n/aclass reference_forms(aetools.ComponentItem):
1043n/a """reference forms - """
1044n/a want = 'kfrm'
1045n/a
1046n/areference_form = reference_forms
1047n/a
1048n/aclass kilograms(aetools.ComponentItem):
1049n/a """kilograms - a mass measurement in SI kilograms """
1050n/a want = 'kgrm'
1051n/a
1052n/aclass kilometers(aetools.ComponentItem):
1053n/a """kilometers - a distance measurement in SI kilometers """
1054n/a want = 'kmtr'
1055n/a
1056n/akilometres = kilometers
1057n/a
1058n/aclass keystroke(aetools.ComponentItem):
1059n/a """keystroke - a press of a key combination on a Macintosh keyboard """
1060n/a want = 'kprs'
1061n/aclass _Prop_key(aetools.NProperty):
1062n/a """key - the character for the key was pressed (ignoring modifiers) """
1063n/a which = 'kMsg'
1064n/a want = 'cha '
1065n/aclass _Prop_key_kind(aetools.NProperty):
1066n/a """key kind - the kind of key that was pressed """
1067n/a which = 'kknd'
1068n/a want = 'ekst'
1069n/aclass _Prop_modifiers(aetools.NProperty):
1070n/a """modifiers - the modifier keys pressed in combination """
1071n/a which = 'kMod'
1072n/a want = 'eMds'
1073n/a
1074n/akeystrokes = keystroke
1075n/a
1076n/aclass pounds(aetools.ComponentItem):
1077n/a """pounds - a weight measurement in SI meters """
1078n/a want = 'lbs '
1079n/a
1080n/aclass date(aetools.ComponentItem):
1081n/a """date - Absolute date and time values """
1082n/a want = 'ldt '
1083n/aclass _Prop_date_string(aetools.NProperty):
1084n/a """date string - the date portion of a date-time value as text """
1085n/a which = 'dstr'
1086n/a want = 'TEXT'
1087n/aclass _Prop_day(aetools.NProperty):
1088n/a """day - the day of the month of a date """
1089n/a which = 'day '
1090n/a want = 'long'
1091n/aclass _Prop_month(aetools.NProperty):
1092n/a """month - the month of a date """
1093n/a which = 'mnth'
1094n/a want = 'mnth'
1095n/aclass _Prop_time(aetools.NProperty):
1096n/a """time - the time since midnight of a date """
1097n/a which = 'time'
1098n/a want = 'long'
1099n/aclass _Prop_time_string(aetools.NProperty):
1100n/a """time string - the time portion of a date-time value as text """
1101n/a which = 'tstr'
1102n/a want = 'TEXT'
1103n/aclass _Prop_weekday(aetools.NProperty):
1104n/a """weekday - the day of a week of a date """
1105n/a which = 'wkdy'
1106n/a want = 'wkdy'
1107n/aclass _Prop_year(aetools.NProperty):
1108n/a """year - the year of a date """
1109n/a which = 'year'
1110n/a want = 'long'
1111n/a
1112n/adates = date
1113n/a
1114n/aclass list(aetools.ComponentItem):
1115n/a """list - An ordered collection of items """
1116n/a want = 'list'
1117n/aclass _Prop_length(aetools.NProperty):
1118n/a """length - the length of a list """
1119n/a which = 'leng'
1120n/a want = 'long'
1121n/aclass _Prop_rest(aetools.NProperty):
1122n/a """rest - all items of the list excluding first """
1123n/a which = 'rest'
1124n/a want = 'list'
1125n/aclass _Prop_reverse(aetools.NProperty):
1126n/a """reverse - the items of the list in reverse order """
1127n/a which = 'rvse'
1128n/a want = 'list'
1129n/a
1130n/alists = list
1131n/a
1132n/aclass liters(aetools.ComponentItem):
1133n/a """liters - a volume measurement in SI liters """
1134n/a want = 'litr'
1135n/a
1136n/alitres = liters
1137n/a
1138n/aclass linked_list(aetools.ComponentItem):
1139n/a """linked list - An ordered collection of items """
1140n/a want = 'llst'
1141n/a
1142n/alinked_lists = linked_list
1143n/a
1144n/aclass integers(aetools.ComponentItem):
1145n/a """integers - """
1146n/a want = 'long'
1147n/a
1148n/ainteger = integers
1149n/a
1150n/aclass list_or_record(aetools.ComponentItem):
1151n/a """list or record - a list or record """
1152n/a want = 'lr '
1153n/a
1154n/aclass list_2c__record_or_text(aetools.ComponentItem):
1155n/a """list, record or text - a list, record or text """
1156n/a want = 'lrs '
1157n/a
1158n/aclass list_or_string(aetools.ComponentItem):
1159n/a """list or string - a list or string """
1160n/a want = 'ls '
1161n/a
1162n/aclass machines(aetools.ComponentItem):
1163n/a """machines - """
1164n/a want = 'mach'
1165n/a
1166n/amachine = machines
1167n/a
1168n/aclass March(aetools.ComponentItem):
1169n/a """March - the month of March """
1170n/a want = 'mar '
1171n/a
1172n/aclass May(aetools.ComponentItem):
1173n/a """May - the month of May """
1174n/a want = 'may '
1175n/a
1176n/aclass meters(aetools.ComponentItem):
1177n/a """meters - a distance measurement in SI meters """
1178n/a want = 'metr'
1179n/a
1180n/ametres = meters
1181n/a
1182n/aclass miles(aetools.ComponentItem):
1183n/a """miles - a distance measurement in Imperial miles """
1184n/a want = 'mile'
1185n/a
1186n/aclass months(aetools.ComponentItem):
1187n/a """months - """
1188n/a want = 'mnth'
1189n/a
1190n/amonth = months
1191n/a
1192n/aclass Monday(aetools.ComponentItem):
1193n/a """Monday - Monday """
1194n/a want = 'mon '
1195n/a
1196n/aclass missing_values(aetools.ComponentItem):
1197n/a """missing values - """
1198n/a want = 'msng'
1199n/a
1200n/amissing_value = missing_values
1201n/a
1202n/aclass number_or_date(aetools.ComponentItem):
1203n/a """number or date - a number or date """
1204n/a want = 'nd '
1205n/a
1206n/aclass number_2c__date_or_text(aetools.ComponentItem):
1207n/a """number, date or text - a number, date or text """
1208n/a want = 'nds '
1209n/a
1210n/aclass numbers(aetools.ComponentItem):
1211n/a """numbers - """
1212n/a want = 'nmbr'
1213n/a
1214n/anumber = numbers
1215n/a
1216n/aclass November(aetools.ComponentItem):
1217n/a """November - the month of November """
1218n/a want = 'nov '
1219n/a
1220n/aclass number_or_string(aetools.ComponentItem):
1221n/a """number or string - a number or string """
1222n/a want = 'ns '
1223n/a
1224n/aclass references(aetools.ComponentItem):
1225n/a """references - """
1226n/a want = 'obj '
1227n/a
1228n/areference = references
1229n/a
1230n/aclass October(aetools.ComponentItem):
1231n/a """October - the month of October """
1232n/a want = 'oct '
1233n/a
1234n/aclass ounces(aetools.ComponentItem):
1235n/a """ounces - a weight measurement in SI meters """
1236n/a want = 'ozs '
1237n/a
1238n/aclass class_(aetools.ComponentItem):
1239n/a """class - the type of a value """
1240n/a want = 'pcls'
1241n/aclass _Prop__3c_Inheritance_3e_(aetools.NProperty):
1242n/a """<Inheritance> - inherits some of its properties from this class """
1243n/a which = 'c@#^'
1244n/a want = 'type'
1245n/a
1246n/aclasses = class_
1247n/a
1248n/aclass prepositions(aetools.ComponentItem):
1249n/a """prepositions - """
1250n/a want = 'prep'
1251n/a
1252n/apreposition = prepositions
1253n/a
1254n/aclass properties(aetools.ComponentItem):
1255n/a """properties - """
1256n/a want = 'prop'
1257n/a
1258n/aproperty = properties
1259n/a
1260n/aclass writing_code(aetools.ComponentItem):
1261n/a """writing code - codes that identify the language and script system """
1262n/a want = 'psct'
1263n/a
1264n/aclass Pascal_strings(aetools.ComponentItem):
1265n/a """Pascal strings - """
1266n/a want = 'pstr'
1267n/a
1268n/aPascal_string = Pascal_strings
1269n/a
1270n/aclass quarts(aetools.ComponentItem):
1271n/a """quarts - a volume measurement in Imperial quarts """
1272n/a want = 'qrts'
1273n/a
1274n/aclass data(aetools.ComponentItem):
1275n/a """data - an AppleScript raw data object """
1276n/a want = 'rdat'
1277n/a
1278n/aclass records(aetools.ComponentItem):
1279n/a """records - """
1280n/a want = 'reco'
1281n/a
1282n/arecord = records
1283n/a
1284n/aclass Saturday(aetools.ComponentItem):
1285n/a """Saturday - Saturday """
1286n/a want = 'sat '
1287n/a
1288n/aclass seconds(aetools.ComponentItem):
1289n/a """seconds - more than one second """
1290n/a want = 'scnd'
1291n/a
1292n/aclass script(aetools.ComponentItem):
1293n/a """script - An AppleScript script """
1294n/a want = 'scpt'
1295n/aclass _Prop_name(aetools.NProperty):
1296n/a """name - the name of the script """
1297n/a which = 'pnam'
1298n/a want = 'TEXT'
1299n/aclass _Prop_parent(aetools.NProperty):
1300n/a """parent - its parent, i.e. the script that will handle events that this script doesn\xd5t """
1301n/a which = 'pare'
1302n/a want = 'scpt'
1303n/a
1304n/ascripts = script
1305n/a
1306n/aclass September(aetools.ComponentItem):
1307n/a """September - the month of September """
1308n/a want = 'sep '
1309n/a
1310n/aclass alias_or_string(aetools.ComponentItem):
1311n/a """alias or string - an alias or string """
1312n/a want = 'sf '
1313n/a
1314n/aclass sounds(aetools.ComponentItem):
1315n/a """sounds - """
1316n/a want = 'snd '
1317n/a
1318n/asound = sounds
1319n/a
1320n/aclass square_feet(aetools.ComponentItem):
1321n/a """square feet - an area measurement in Imperial square feet """
1322n/a want = 'sqft'
1323n/a
1324n/aclass square_kilometers(aetools.ComponentItem):
1325n/a """square kilometers - an area measurement in SI square kilometers """
1326n/a want = 'sqkm'
1327n/a
1328n/asquare_kilometres = square_kilometers
1329n/a
1330n/aclass square_miles(aetools.ComponentItem):
1331n/a """square miles - an area measurement in Imperial square miles """
1332n/a want = 'sqmi'
1333n/a
1334n/aclass square_meters(aetools.ComponentItem):
1335n/a """square meters - an area measurement in SI square meters """
1336n/a want = 'sqrm'
1337n/a
1338n/asquare_metres = square_meters
1339n/a
1340n/aclass square_yards(aetools.ComponentItem):
1341n/a """square yards - an area measurement in Imperial square yards """
1342n/a want = 'sqyd'
1343n/a
1344n/aclass styled_Clipboard_text(aetools.ComponentItem):
1345n/a """styled Clipboard text - clipboard text with font, size, and style information """
1346n/a want = 'styl'
1347n/a
1348n/astyled_Clipboard_text = styled_Clipboard_text
1349n/a
1350n/aclass Sunday(aetools.ComponentItem):
1351n/a """Sunday - Sunday """
1352n/a want = 'sun '
1353n/a
1354n/aclass styled_Unicode_text(aetools.ComponentItem):
1355n/a """styled Unicode text - styled text in the Unicode format """
1356n/a want = 'sutx'
1357n/a
1358n/astyled_Unicode_text = styled_Unicode_text
1359n/a
1360n/aclass Thursday(aetools.ComponentItem):
1361n/a """Thursday - Thursday """
1362n/a want = 'thu '
1363n/a
1364n/aclass Tuesday(aetools.ComponentItem):
1365n/a """Tuesday - Tuesday """
1366n/a want = 'tue '
1367n/a
1368n/aclass type_class(aetools.ComponentItem):
1369n/a """type class - the name of a particular class (or any four-character code) """
1370n/a want = 'type'
1371n/a
1372n/aclass empty_ae_name_(aetools.ComponentItem):
1373n/a """ - the undefined value """
1374n/a want = 'undf'
1375n/a
1376n/aclass Unicode_text(aetools.ComponentItem):
1377n/a """Unicode text - text in the Unicode format (cannot be viewed without conversion) """
1378n/a want = 'utxt'
1379n/a
1380n/aUnicode_text = Unicode_text
1381n/a
1382n/aclass vector(aetools.ComponentItem):
1383n/a """vector - An ordered collection of items """
1384n/a want = 'vect'
1385n/a
1386n/avectors = vector
1387n/a
1388n/aclass version(aetools.ComponentItem):
1389n/a """version - a version value """
1390n/a want = 'vers'
1391n/a
1392n/aclass Wednesday(aetools.ComponentItem):
1393n/a """Wednesday - Wednesday """
1394n/a want = 'wed '
1395n/a
1396n/aclass weekdays(aetools.ComponentItem):
1397n/a """weekdays - """
1398n/a want = 'wkdy'
1399n/a
1400n/aweekday = weekdays
1401n/a
1402n/aclass yards(aetools.ComponentItem):
1403n/a """yards - a distance measurement in Imperial yards """
1404n/a want = 'yard'
1405n/a
1406n/aclass zones(aetools.ComponentItem):
1407n/a """zones - """
1408n/a want = 'zone'
1409n/a
1410n/azone = zones
1411n/aanything._superclassnames = []
1412n/aanything._privpropdict = {
1413n/a}
1414n/aanything._privelemdict = {
1415n/a}
1416n/apictures._superclassnames = []
1417n/apictures._privpropdict = {
1418n/a}
1419n/apictures._privelemdict = {
1420n/a}
1421n/astyled_text._superclassnames = []
1422n/astyled_text._privpropdict = {
1423n/a}
1424n/astyled_text._privelemdict = {
1425n/a}
1426n/astyled_text._superclassnames = []
1427n/astyled_text._privpropdict = {
1428n/a}
1429n/astyled_text._privelemdict = {
1430n/a}
1431n/astrings._superclassnames = []
1432n/astrings._privpropdict = {
1433n/a}
1434n/astrings._privelemdict = {
1435n/a}
1436n/aalias._superclassnames = []
1437n/aalias._privpropdict = {
1438n/a 'POSIX_path' : _Prop_POSIX_path,
1439n/a}
1440n/aalias._privelemdict = {
1441n/a}
1442n/aApril._superclassnames = []
1443n/aApril._privpropdict = {
1444n/a}
1445n/aApril._privelemdict = {
1446n/a}
1447n/aAugust._superclassnames = []
1448n/aAugust._privpropdict = {
1449n/a}
1450n/aAugust._privelemdict = {
1451n/a}
1452n/abooleans._superclassnames = []
1453n/abooleans._privpropdict = {
1454n/a}
1455n/abooleans._privelemdict = {
1456n/a}
1457n/aRGB_colors._superclassnames = []
1458n/aRGB_colors._privpropdict = {
1459n/a}
1460n/aRGB_colors._privelemdict = {
1461n/a}
1462n/aapplication._superclassnames = []
1463n/aapplication._privpropdict = {
1464n/a 'AppleScript' : _Prop_AppleScript,
1465n/a 'days' : _Prop_days,
1466n/a 'hours' : _Prop_hours,
1467n/a 'minutes' : _Prop_minutes,
1468n/a 'pi' : _Prop_pi,
1469n/a 'print_depth' : _Prop_print_depth,
1470n/a 'print_length' : _Prop_print_length,
1471n/a 'result' : _Prop_result,
1472n/a 'return_' : _Prop_return_,
1473n/a 'space' : _Prop_space,
1474n/a 'tab' : _Prop_tab,
1475n/a 'text_item_delimiters' : _Prop_text_item_delimiters,
1476n/a 'weeks' : _Prop_weeks,
1477n/a}
1478n/aapplication._privelemdict = {
1479n/a}
1480n/aupper_case._superclassnames = []
1481n/aupper_case._privpropdict = {
1482n/a}
1483n/aupper_case._privelemdict = {
1484n/a}
1485n/acubic_centimeters._superclassnames = []
1486n/acubic_centimeters._privpropdict = {
1487n/a}
1488n/acubic_centimeters._privelemdict = {
1489n/a}
1490n/acubic_feet._superclassnames = []
1491n/acubic_feet._privpropdict = {
1492n/a}
1493n/acubic_feet._privelemdict = {
1494n/a}
1495n/acharacters._superclassnames = []
1496n/acharacters._privpropdict = {
1497n/a}
1498n/acharacters._privelemdict = {
1499n/a}
1500n/awriting_code_info._superclassnames = []
1501n/awriting_code_info._privpropdict = {
1502n/a 'language_code' : _Prop_language_code,
1503n/a 'script_code' : _Prop_script_code,
1504n/a}
1505n/awriting_code_info._privelemdict = {
1506n/a}
1507n/atext_items._superclassnames = []
1508n/atext_items._privpropdict = {
1509n/a}
1510n/atext_items._privelemdict = {
1511n/a}
1512n/acubic_meters._superclassnames = []
1513n/acubic_meters._privpropdict = {
1514n/a}
1515n/acubic_meters._privelemdict = {
1516n/a}
1517n/acentimeters._superclassnames = []
1518n/acentimeters._privpropdict = {
1519n/a}
1520n/acentimeters._privelemdict = {
1521n/a}
1522n/aitem._superclassnames = []
1523n/aitem._privpropdict = {
1524n/a 'id' : _Prop_id,
1525n/a}
1526n/aitem._privelemdict = {
1527n/a}
1528n/aC_strings._superclassnames = []
1529n/aC_strings._privpropdict = {
1530n/a}
1531n/aC_strings._privelemdict = {
1532n/a}
1533n/atext._superclassnames = []
1534n/atext._privpropdict = {
1535n/a}
1536n/atext._privelemdict = {
1537n/a}
1538n/acubic_inches._superclassnames = []
1539n/acubic_inches._privpropdict = {
1540n/a}
1541n/acubic_inches._privelemdict = {
1542n/a}
1543n/acubic_yards._superclassnames = []
1544n/acubic_yards._privpropdict = {
1545n/a}
1546n/acubic_yards._privelemdict = {
1547n/a}
1548n/aDecember._superclassnames = []
1549n/aDecember._privpropdict = {
1550n/a}
1551n/aDecember._privelemdict = {
1552n/a}
1553n/adegrees_Celsius._superclassnames = []
1554n/adegrees_Celsius._privpropdict = {
1555n/a}
1556n/adegrees_Celsius._privelemdict = {
1557n/a}
1558n/adegrees_Fahrenheit._superclassnames = []
1559n/adegrees_Fahrenheit._privpropdict = {
1560n/a}
1561n/adegrees_Fahrenheit._privelemdict = {
1562n/a}
1563n/adegrees_Kelvin._superclassnames = []
1564n/adegrees_Kelvin._privpropdict = {
1565n/a}
1566n/adegrees_Kelvin._privelemdict = {
1567n/a}
1568n/areals._superclassnames = []
1569n/areals._privpropdict = {
1570n/a}
1571n/areals._privelemdict = {
1572n/a}
1573n/aencoded_strings._superclassnames = []
1574n/aencoded_strings._privpropdict = {
1575n/a}
1576n/aencoded_strings._privelemdict = {
1577n/a}
1578n/aconstants._superclassnames = []
1579n/aconstants._privpropdict = {
1580n/a}
1581n/aconstants._privelemdict = {
1582n/a}
1583n/aevents._superclassnames = []
1584n/aevents._privpropdict = {
1585n/a}
1586n/aevents._privelemdict = {
1587n/a}
1588n/aFebruary._superclassnames = []
1589n/aFebruary._privpropdict = {
1590n/a}
1591n/aFebruary._privelemdict = {
1592n/a}
1593n/afeet._superclassnames = []
1594n/afeet._privpropdict = {
1595n/a}
1596n/afeet._privelemdict = {
1597n/a}
1598n/aFriday._superclassnames = []
1599n/aFriday._privpropdict = {
1600n/a}
1601n/aFriday._privelemdict = {
1602n/a}
1603n/afile_specification._superclassnames = []
1604n/afile_specification._privpropdict = {
1605n/a 'POSIX_path' : _Prop_POSIX_path,
1606n/a}
1607n/afile_specification._privelemdict = {
1608n/a}
1609n/agallons._superclassnames = []
1610n/agallons._privpropdict = {
1611n/a}
1612n/agallons._privelemdict = {
1613n/a}
1614n/agrams._superclassnames = []
1615n/agrams._privpropdict = {
1616n/a}
1617n/agrams._privelemdict = {
1618n/a}
1619n/ahandlers._superclassnames = []
1620n/ahandlers._privpropdict = {
1621n/a}
1622n/ahandlers._privelemdict = {
1623n/a}
1624n/ainches._superclassnames = []
1625n/ainches._privpropdict = {
1626n/a}
1627n/ainches._privelemdict = {
1628n/a}
1629n/ainternational_text._superclassnames = []
1630n/ainternational_text._privpropdict = {
1631n/a}
1632n/ainternational_text._privelemdict = {
1633n/a}
1634n/ainternational_text._superclassnames = []
1635n/ainternational_text._privpropdict = {
1636n/a}
1637n/ainternational_text._privelemdict = {
1638n/a}
1639n/aJanuary._superclassnames = []
1640n/aJanuary._privpropdict = {
1641n/a}
1642n/aJanuary._privelemdict = {
1643n/a}
1644n/aJuly._superclassnames = []
1645n/aJuly._privpropdict = {
1646n/a}
1647n/aJuly._privelemdict = {
1648n/a}
1649n/aJune._superclassnames = []
1650n/aJune._privpropdict = {
1651n/a}
1652n/aJune._privelemdict = {
1653n/a}
1654n/areference_forms._superclassnames = []
1655n/areference_forms._privpropdict = {
1656n/a}
1657n/areference_forms._privelemdict = {
1658n/a}
1659n/akilograms._superclassnames = []
1660n/akilograms._privpropdict = {
1661n/a}
1662n/akilograms._privelemdict = {
1663n/a}
1664n/akilometers._superclassnames = []
1665n/akilometers._privpropdict = {
1666n/a}
1667n/akilometers._privelemdict = {
1668n/a}
1669n/akeystroke._superclassnames = []
1670n/akeystroke._privpropdict = {
1671n/a 'key' : _Prop_key,
1672n/a 'key_kind' : _Prop_key_kind,
1673n/a 'modifiers' : _Prop_modifiers,
1674n/a}
1675n/akeystroke._privelemdict = {
1676n/a}
1677n/apounds._superclassnames = []
1678n/apounds._privpropdict = {
1679n/a}
1680n/apounds._privelemdict = {
1681n/a}
1682n/adate._superclassnames = []
1683n/adate._privpropdict = {
1684n/a 'date_string' : _Prop_date_string,
1685n/a 'day' : _Prop_day,
1686n/a 'month' : _Prop_month,
1687n/a 'time' : _Prop_time,
1688n/a 'time_string' : _Prop_time_string,
1689n/a 'weekday' : _Prop_weekday,
1690n/a 'year' : _Prop_year,
1691n/a}
1692n/adate._privelemdict = {
1693n/a}
1694n/alist._superclassnames = []
1695n/alist._privpropdict = {
1696n/a 'length' : _Prop_length,
1697n/a 'rest' : _Prop_rest,
1698n/a 'reverse' : _Prop_reverse,
1699n/a}
1700n/alist._privelemdict = {
1701n/a}
1702n/aliters._superclassnames = []
1703n/aliters._privpropdict = {
1704n/a}
1705n/aliters._privelemdict = {
1706n/a}
1707n/alinked_list._superclassnames = []
1708n/alinked_list._privpropdict = {
1709n/a 'length' : _Prop_length,
1710n/a}
1711n/alinked_list._privelemdict = {
1712n/a}
1713n/aintegers._superclassnames = []
1714n/aintegers._privpropdict = {
1715n/a}
1716n/aintegers._privelemdict = {
1717n/a}
1718n/alist_or_record._superclassnames = []
1719n/alist_or_record._privpropdict = {
1720n/a}
1721n/alist_or_record._privelemdict = {
1722n/a}
1723n/alist_2c__record_or_text._superclassnames = []
1724n/alist_2c__record_or_text._privpropdict = {
1725n/a}
1726n/alist_2c__record_or_text._privelemdict = {
1727n/a}
1728n/alist_or_string._superclassnames = []
1729n/alist_or_string._privpropdict = {
1730n/a}
1731n/alist_or_string._privelemdict = {
1732n/a}
1733n/amachines._superclassnames = []
1734n/amachines._privpropdict = {
1735n/a}
1736n/amachines._privelemdict = {
1737n/a}
1738n/aMarch._superclassnames = []
1739n/aMarch._privpropdict = {
1740n/a}
1741n/aMarch._privelemdict = {
1742n/a}
1743n/aMay._superclassnames = []
1744n/aMay._privpropdict = {
1745n/a}
1746n/aMay._privelemdict = {
1747n/a}
1748n/ameters._superclassnames = []
1749n/ameters._privpropdict = {
1750n/a}
1751n/ameters._privelemdict = {
1752n/a}
1753n/amiles._superclassnames = []
1754n/amiles._privpropdict = {
1755n/a}
1756n/amiles._privelemdict = {
1757n/a}
1758n/amonths._superclassnames = []
1759n/amonths._privpropdict = {
1760n/a}
1761n/amonths._privelemdict = {
1762n/a}
1763n/aMonday._superclassnames = []
1764n/aMonday._privpropdict = {
1765n/a}
1766n/aMonday._privelemdict = {
1767n/a}
1768n/amissing_values._superclassnames = []
1769n/amissing_values._privpropdict = {
1770n/a}
1771n/amissing_values._privelemdict = {
1772n/a}
1773n/anumber_or_date._superclassnames = []
1774n/anumber_or_date._privpropdict = {
1775n/a}
1776n/anumber_or_date._privelemdict = {
1777n/a}
1778n/anumber_2c__date_or_text._superclassnames = []
1779n/anumber_2c__date_or_text._privpropdict = {
1780n/a}
1781n/anumber_2c__date_or_text._privelemdict = {
1782n/a}
1783n/anumbers._superclassnames = []
1784n/anumbers._privpropdict = {
1785n/a}
1786n/anumbers._privelemdict = {
1787n/a}
1788n/aNovember._superclassnames = []
1789n/aNovember._privpropdict = {
1790n/a}
1791n/aNovember._privelemdict = {
1792n/a}
1793n/anumber_or_string._superclassnames = []
1794n/anumber_or_string._privpropdict = {
1795n/a}
1796n/anumber_or_string._privelemdict = {
1797n/a}
1798n/areferences._superclassnames = []
1799n/areferences._privpropdict = {
1800n/a}
1801n/areferences._privelemdict = {
1802n/a}
1803n/aOctober._superclassnames = []
1804n/aOctober._privpropdict = {
1805n/a}
1806n/aOctober._privelemdict = {
1807n/a}
1808n/aounces._superclassnames = []
1809n/aounces._privpropdict = {
1810n/a}
1811n/aounces._privelemdict = {
1812n/a}
1813n/aclass_._superclassnames = ['type_class']
1814n/aclass_._privpropdict = {
1815n/a '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
1816n/a}
1817n/aclass_._privelemdict = {
1818n/a}
1819n/aprepositions._superclassnames = []
1820n/aprepositions._privpropdict = {
1821n/a}
1822n/aprepositions._privelemdict = {
1823n/a}
1824n/aproperties._superclassnames = []
1825n/aproperties._privpropdict = {
1826n/a}
1827n/aproperties._privelemdict = {
1828n/a}
1829n/awriting_code._superclassnames = []
1830n/awriting_code._privpropdict = {
1831n/a}
1832n/awriting_code._privelemdict = {
1833n/a}
1834n/aPascal_strings._superclassnames = []
1835n/aPascal_strings._privpropdict = {
1836n/a}
1837n/aPascal_strings._privelemdict = {
1838n/a}
1839n/aquarts._superclassnames = []
1840n/aquarts._privpropdict = {
1841n/a}
1842n/aquarts._privelemdict = {
1843n/a}
1844n/adata._superclassnames = []
1845n/adata._privpropdict = {
1846n/a}
1847n/adata._privelemdict = {
1848n/a}
1849n/arecords._superclassnames = []
1850n/arecords._privpropdict = {
1851n/a}
1852n/arecords._privelemdict = {
1853n/a}
1854n/aSaturday._superclassnames = []
1855n/aSaturday._privpropdict = {
1856n/a}
1857n/aSaturday._privelemdict = {
1858n/a}
1859n/aseconds._superclassnames = []
1860n/aseconds._privpropdict = {
1861n/a}
1862n/aseconds._privelemdict = {
1863n/a}
1864n/ascript._superclassnames = []
1865n/ascript._privpropdict = {
1866n/a 'name' : _Prop_name,
1867n/a 'parent' : _Prop_parent,
1868n/a}
1869n/ascript._privelemdict = {
1870n/a}
1871n/aSeptember._superclassnames = []
1872n/aSeptember._privpropdict = {
1873n/a}
1874n/aSeptember._privelemdict = {
1875n/a}
1876n/aalias_or_string._superclassnames = []
1877n/aalias_or_string._privpropdict = {
1878n/a}
1879n/aalias_or_string._privelemdict = {
1880n/a}
1881n/asounds._superclassnames = []
1882n/asounds._privpropdict = {
1883n/a}
1884n/asounds._privelemdict = {
1885n/a}
1886n/asquare_feet._superclassnames = []
1887n/asquare_feet._privpropdict = {
1888n/a}
1889n/asquare_feet._privelemdict = {
1890n/a}
1891n/asquare_kilometers._superclassnames = []
1892n/asquare_kilometers._privpropdict = {
1893n/a}
1894n/asquare_kilometers._privelemdict = {
1895n/a}
1896n/asquare_miles._superclassnames = []
1897n/asquare_miles._privpropdict = {
1898n/a}
1899n/asquare_miles._privelemdict = {
1900n/a}
1901n/asquare_meters._superclassnames = []
1902n/asquare_meters._privpropdict = {
1903n/a}
1904n/asquare_meters._privelemdict = {
1905n/a}
1906n/asquare_yards._superclassnames = []
1907n/asquare_yards._privpropdict = {
1908n/a}
1909n/asquare_yards._privelemdict = {
1910n/a}
1911n/astyled_Clipboard_text._superclassnames = []
1912n/astyled_Clipboard_text._privpropdict = {
1913n/a}
1914n/astyled_Clipboard_text._privelemdict = {
1915n/a}
1916n/astyled_Clipboard_text._superclassnames = []
1917n/astyled_Clipboard_text._privpropdict = {
1918n/a}
1919n/astyled_Clipboard_text._privelemdict = {
1920n/a}
1921n/aSunday._superclassnames = []
1922n/aSunday._privpropdict = {
1923n/a}
1924n/aSunday._privelemdict = {
1925n/a}
1926n/astyled_Unicode_text._superclassnames = []
1927n/astyled_Unicode_text._privpropdict = {
1928n/a}
1929n/astyled_Unicode_text._privelemdict = {
1930n/a}
1931n/astyled_Unicode_text._superclassnames = []
1932n/astyled_Unicode_text._privpropdict = {
1933n/a}
1934n/astyled_Unicode_text._privelemdict = {
1935n/a}
1936n/aThursday._superclassnames = []
1937n/aThursday._privpropdict = {
1938n/a}
1939n/aThursday._privelemdict = {
1940n/a}
1941n/aTuesday._superclassnames = []
1942n/aTuesday._privpropdict = {
1943n/a}
1944n/aTuesday._privelemdict = {
1945n/a}
1946n/atype_class._superclassnames = []
1947n/atype_class._privpropdict = {
1948n/a}
1949n/atype_class._privelemdict = {
1950n/a}
1951n/aempty_ae_name_._superclassnames = []
1952n/aempty_ae_name_._privpropdict = {
1953n/a}
1954n/aempty_ae_name_._privelemdict = {
1955n/a}
1956n/aUnicode_text._superclassnames = []
1957n/aUnicode_text._privpropdict = {
1958n/a}
1959n/aUnicode_text._privelemdict = {
1960n/a}
1961n/aUnicode_text._superclassnames = []
1962n/aUnicode_text._privpropdict = {
1963n/a}
1964n/aUnicode_text._privelemdict = {
1965n/a}
1966n/avector._superclassnames = []
1967n/avector._privpropdict = {
1968n/a 'length' : _Prop_length,
1969n/a}
1970n/avector._privelemdict = {
1971n/a}
1972n/aversion._superclassnames = []
1973n/aversion._privpropdict = {
1974n/a}
1975n/aversion._privelemdict = {
1976n/a}
1977n/aWednesday._superclassnames = []
1978n/aWednesday._privpropdict = {
1979n/a}
1980n/aWednesday._privelemdict = {
1981n/a}
1982n/aweekdays._superclassnames = []
1983n/aweekdays._privpropdict = {
1984n/a}
1985n/aweekdays._privelemdict = {
1986n/a}
1987n/ayards._superclassnames = []
1988n/ayards._privpropdict = {
1989n/a}
1990n/ayards._privelemdict = {
1991n/a}
1992n/azones._superclassnames = []
1993n/azones._privpropdict = {
1994n/a}
1995n/azones._privelemdict = {
1996n/a}
1997n/a_Enum_boov = {
1998n/a 'true' : 'true', # the true boolean value
1999n/a 'false' : 'fals', # the false boolean value
2000n/a}
2001n/a
2002n/a_Enum_cons = {
2003n/a 'case' : 'case', # case
2004n/a 'diacriticals' : 'diac', # diacriticals
2005n/a 'white_space' : 'whit', # white space
2006n/a 'hyphens' : 'hyph', # hyphens
2007n/a 'expansion' : 'expa', # expansion
2008n/a 'punctuation' : 'punc', # punctuation
2009n/a 'application_responses' : 'rmte', # remote event replies
2010n/a}
2011n/a
2012n/a_Enum_eMds = {
2013n/a 'option_down' : 'Kopt', #
2014n/a 'command_down' : 'Kcmd', #
2015n/a 'control_down' : 'Kctl', #
2016n/a 'shift_down' : 'Ksft', #
2017n/a 'caps_lock_down' : 'Kclk', #
2018n/a}
2019n/a
2020n/a_Enum_ekst = {
2021n/a 'escape_key' : 'ks5\x00', #
2022n/a 'delete_key' : 'ks3\x00', #
2023n/a 'tab_key' : 'ks0\x00', #
2024n/a 'return_key' : 'ks$\x00', #
2025n/a 'clear_key' : 'ksG\x00', #
2026n/a 'enter_key' : 'ksL\x00', #
2027n/a 'up_arrow_key' : 'ks~\x00', #
2028n/a 'down_arrow_key' : 'ks}\x00', #
2029n/a 'left_arrow_key' : 'ks{\x00', #
2030n/a 'right_arrow_key' : 'ks|\x00', #
2031n/a 'help_key' : 'ksr\x00', #
2032n/a 'home_key' : 'kss\x00', #
2033n/a 'page_up_key' : 'kst\x00', #
2034n/a 'page_down_key' : 'ksy\x00', #
2035n/a 'forward_del_key' : 'ksu\x00', #
2036n/a 'end_key' : 'ksw\x00', #
2037n/a 'F1_key' : 'ksz\x00', #
2038n/a 'F2_key' : 'ksx\x00', #
2039n/a 'F3_key' : 'ksc\x00', #
2040n/a 'F4_key' : 'ksv\x00', #
2041n/a 'F5_key' : 'ks`\x00', #
2042n/a 'F6_key' : 'ksa\x00', #
2043n/a 'F7_key' : 'ksb\x00', #
2044n/a 'F8_key' : 'ksd\x00', #
2045n/a 'F9_key' : 'kse\x00', #
2046n/a 'F10_key' : 'ksm\x00', #
2047n/a 'F11_key' : 'ksg\x00', #
2048n/a 'F12_key' : 'kso\x00', #
2049n/a 'F13_key' : 'ksi\x00', #
2050n/a 'F14_key' : 'ksk\x00', #
2051n/a 'F15_key' : 'ksq\x00', #
2052n/a}
2053n/a
2054n/a_Enum_misc = {
2055n/a 'current_application' : 'cura', # the current application
2056n/a}
2057n/a
2058n/a
2059n/a#
2060n/a# Indices of types declared in this module
2061n/a#
2062n/a_classdeclarations = {
2063n/a '****' : anything,
2064n/a 'PICT' : pictures,
2065n/a 'STXT' : styled_text,
2066n/a 'TEXT' : strings,
2067n/a 'alis' : alias,
2068n/a 'apr ' : April,
2069n/a 'aug ' : August,
2070n/a 'bool' : booleans,
2071n/a 'cRGB' : RGB_colors,
2072n/a 'capp' : application,
2073n/a 'case' : upper_case,
2074n/a 'ccmt' : cubic_centimeters,
2075n/a 'cfet' : cubic_feet,
2076n/a 'cha ' : characters,
2077n/a 'citl' : writing_code_info,
2078n/a 'citm' : text_items,
2079n/a 'cmet' : cubic_meters,
2080n/a 'cmtr' : centimeters,
2081n/a 'cobj' : item,
2082n/a 'cstr' : C_strings,
2083n/a 'ctxt' : text,
2084n/a 'cuin' : cubic_inches,
2085n/a 'cyrd' : cubic_yards,
2086n/a 'dec ' : December,
2087n/a 'degc' : degrees_Celsius,
2088n/a 'degf' : degrees_Fahrenheit,
2089n/a 'degk' : degrees_Kelvin,
2090n/a 'doub' : reals,
2091n/a 'encs' : encoded_strings,
2092n/a 'enum' : constants,
2093n/a 'evnt' : events,
2094n/a 'feb ' : February,
2095n/a 'feet' : feet,
2096n/a 'fri ' : Friday,
2097n/a 'fss ' : file_specification,
2098n/a 'galn' : gallons,
2099n/a 'gram' : grams,
2100n/a 'hand' : handlers,
2101n/a 'inch' : inches,
2102n/a 'itxt' : international_text,
2103n/a 'jan ' : January,
2104n/a 'jul ' : July,
2105n/a 'jun ' : June,
2106n/a 'kfrm' : reference_forms,
2107n/a 'kgrm' : kilograms,
2108n/a 'kmtr' : kilometers,
2109n/a 'kprs' : keystroke,
2110n/a 'lbs ' : pounds,
2111n/a 'ldt ' : date,
2112n/a 'list' : list,
2113n/a 'litr' : liters,
2114n/a 'llst' : linked_list,
2115n/a 'long' : integers,
2116n/a 'lr ' : list_or_record,
2117n/a 'lrs ' : list_2c__record_or_text,
2118n/a 'ls ' : list_or_string,
2119n/a 'mach' : machines,
2120n/a 'mar ' : March,
2121n/a 'may ' : May,
2122n/a 'metr' : meters,
2123n/a 'mile' : miles,
2124n/a 'mnth' : months,
2125n/a 'mon ' : Monday,
2126n/a 'msng' : missing_values,
2127n/a 'nd ' : number_or_date,
2128n/a 'nds ' : number_2c__date_or_text,
2129n/a 'nmbr' : numbers,
2130n/a 'nov ' : November,
2131n/a 'ns ' : number_or_string,
2132n/a 'obj ' : references,
2133n/a 'oct ' : October,
2134n/a 'ozs ' : ounces,
2135n/a 'pcls' : class_,
2136n/a 'prep' : prepositions,
2137n/a 'prop' : properties,
2138n/a 'psct' : writing_code,
2139n/a 'pstr' : Pascal_strings,
2140n/a 'qrts' : quarts,
2141n/a 'rdat' : data,
2142n/a 'reco' : records,
2143n/a 'sat ' : Saturday,
2144n/a 'scnd' : seconds,
2145n/a 'scpt' : script,
2146n/a 'sep ' : September,
2147n/a 'sf ' : alias_or_string,
2148n/a 'snd ' : sounds,
2149n/a 'sqft' : square_feet,
2150n/a 'sqkm' : square_kilometers,
2151n/a 'sqmi' : square_miles,
2152n/a 'sqrm' : square_meters,
2153n/a 'sqyd' : square_yards,
2154n/a 'styl' : styled_Clipboard_text,
2155n/a 'sun ' : Sunday,
2156n/a 'sutx' : styled_Unicode_text,
2157n/a 'thu ' : Thursday,
2158n/a 'tue ' : Tuesday,
2159n/a 'type' : type_class,
2160n/a 'undf' : empty_ae_name_,
2161n/a 'utxt' : Unicode_text,
2162n/a 'vect' : vector,
2163n/a 'vers' : version,
2164n/a 'wed ' : Wednesday,
2165n/a 'wkdy' : weekdays,
2166n/a 'yard' : yards,
2167n/a 'zone' : zones,
2168n/a}
2169n/a
2170n/a_propdeclarations = {
2171n/a 'ID ' : _Prop_id,
2172n/a 'ascr' : _Prop_AppleScript,
2173n/a 'c@#^' : _Prop__3c_Inheritance_3e_,
2174n/a 'day ' : _Prop_day,
2175n/a 'days' : _Prop_days,
2176n/a 'dstr' : _Prop_date_string,
2177n/a 'hour' : _Prop_hours,
2178n/a 'kMod' : _Prop_modifiers,
2179n/a 'kMsg' : _Prop_key,
2180n/a 'kknd' : _Prop_key_kind,
2181n/a 'leng' : _Prop_length,
2182n/a 'min ' : _Prop_minutes,
2183n/a 'mnth' : _Prop_month,
2184n/a 'pare' : _Prop_parent,
2185n/a 'pi ' : _Prop_pi,
2186n/a 'plcd' : _Prop_language_code,
2187n/a 'pnam' : _Prop_name,
2188n/a 'prdp' : _Prop_print_depth,
2189n/a 'prln' : _Prop_print_length,
2190n/a 'pscd' : _Prop_script_code,
2191n/a 'psxp' : _Prop_POSIX_path,
2192n/a 'rest' : _Prop_rest,
2193n/a 'ret ' : _Prop_return_,
2194n/a 'rslt' : _Prop_result,
2195n/a 'rvse' : _Prop_reverse,
2196n/a 'spac' : _Prop_space,
2197n/a 'tab ' : _Prop_tab,
2198n/a 'time' : _Prop_time,
2199n/a 'tstr' : _Prop_time_string,
2200n/a 'txdl' : _Prop_text_item_delimiters,
2201n/a 'week' : _Prop_weeks,
2202n/a 'wkdy' : _Prop_weekday,
2203n/a 'year' : _Prop_year,
2204n/a}
2205n/a
2206n/a_compdeclarations = {
2207n/a}
2208n/a
2209n/a_enumdeclarations = {
2210n/a 'boov' : _Enum_boov,
2211n/a 'cons' : _Enum_cons,
2212n/a 'eMds' : _Enum_eMds,
2213n/a 'ekst' : _Enum_ekst,
2214n/a 'misc' : _Enum_misc,
2215n/a}