rename array &rest to &arest
[swf2.git] / lib / player-class-decl.lisp
bloba34121cd7662cc990c58aff8a5dc30758286ff41
1 (in-package :avm2-compiler)
3 ;; wrapping the whole file in a let makes it take too long to compile, so
4 ;;; we save and restore *symbol-table* for now
5 ;; fixme: use a macro to let bind *symbol-table* for each class def?
6 (defparameter *%temp-symbol-table%* *symbol-table*)
7 (setf *symbol-table* *player-symbol-table*)
9 (declare-swf-class object ()
10 :swf-name "Object"
11 ;; :supers NIL
12 ;; = NIL
13 ;; :interfaces NIL
14 ;; = NIL
15 :constants
16 ((+length+ :swf-name "length" :type int))
17 :properties
19 :methods
20 ((:has-own-property :swf-name "hasOwnProperty" :return-type boolean :declared-by object
21 :args ((:index 1 :type * :optional T)))
22 (:is-prototype-of :swf-name "isPrototypeOf" :return-type boolean :declared-by object
23 :args ((:index 1 :type * :optional T)))
24 (:property-is-enumerable :swf-name "propertyIsEnumerable" :return-type boolean :declared-by object
25 :args ((:index 1 :type * :optional T)))))
27 (declare-swf-class class (object)
28 :swf-name "Class"
29 ;; :supers (object)
30 ;; = ("Object")
31 ;; :interfaces NIL
32 ;; = NIL
33 :constants
34 ((:+length+ :swf-name "length" :type int))
35 :properties
36 ((:prototype :swf-name "prototype" :type * :access :readonly :declared-by class))
37 :methods
38 ())
40 (declare-swf-class function (object)
41 :swf-name "Function"
42 ;; :supers (object)
43 ;; = ("Object")
44 ;; :interfaces NIL
45 ;; = NIL
46 :constants
47 ((:+length+ :swf-name "length" :type int))
48 :properties
49 ((:prototype :swf-name "prototype" :type * :access :readwrite :declared-by function)
50 (:length :swf-name "length" :type int :access :readonly :declared-by function))
51 :methods
52 ())
54 (declare-swf-class namespace (object)
55 :swf-name "Namespace"
56 ;; :supers (object)
57 ;; = ("Object")
58 ;; :interfaces NIL
59 ;; = NIL
60 :constants
61 ((:+length+ :swf-name "length" :type *))
62 :properties
63 ((:prefix :swf-name "prefix" :type * :access :readonly :declared-by namespace)
64 (:uri :swf-name "uri" :type string :access :readonly :declared-by namespace))
65 :methods
66 ())
68 (declare-swf-class boolean (object)
69 :swf-name "Boolean"
70 ;; :supers (object)
71 ;; = ("Object")
72 ;; :interfaces NIL
73 ;; = NIL
74 :constants
75 ((:+length+ :swf-name "length" :type int))
76 :properties
78 :methods
79 ())
81 (declare-swf-class number (object)
82 :swf-name "Number"
83 ;; :supers (object)
84 ;; = ("Object")
85 ;; :interfaces NIL
86 ;; = NIL
87 :constants
88 ((:+nan+ :swf-name "NaN" :type number)
89 (:+length+ :swf-name "length" :type int)
90 (:+positive-infinity+ :swf-name "POSITIVE_INFINITY" :type number)
91 (:+max-value+ :swf-name "MAX_VALUE" :type number)
92 (:+min-value+ :swf-name "MIN_VALUE" :type number)
93 (:+negative-infinity+ :swf-name "NEGATIVE_INFINITY" :type number))
94 :properties
96 :methods
97 ())
99 (declare-swf-class int (object)
100 :swf-name "int"
101 ;; :supers (object)
102 ;; = ("Object")
103 ;; :interfaces NIL
104 ;; = NIL
105 :constants
106 ((:+min-value+ :swf-name "MIN_VALUE" :type int)
107 (:+max-value+ :swf-name "MAX_VALUE" :type int)
108 (:+length+ :swf-name "length" :type int))
109 :properties
111 :methods
114 (declare-swf-class uint (object)
115 :swf-name "uint"
116 ;; :supers (object)
117 ;; = ("Object")
118 ;; :interfaces NIL
119 ;; = NIL
120 :constants
121 ((:+min-value+ :swf-name "MIN_VALUE" :type uint)
122 (:+max-value+ :swf-name "MAX_VALUE" :type uint)
123 (:+length+ :swf-name "length" :type int))
124 :properties
126 :methods
129 (declare-swf-class string (object)
130 :swf-name "String"
131 ;; :supers (object)
132 ;; = ("Object")
133 ;; :interfaces NIL
134 ;; = NIL
135 :constants
136 ((:+length+ :swf-name "length" :type int))
137 :properties
138 ((:length :swf-name "length" :type int :access :readonly :declared-by string))
139 :methods
142 (declare-swf-class array (object)
143 :swf-name "Array"
144 ;; :supers (object)
145 ;; = ("Object")
146 ;; :interfaces NIL
147 ;; = NIL
148 :constants
149 ((:+returnindexedarray+ :swf-name "RETURNINDEXEDARRAY" :type uint)
150 (:+numeric+ :swf-name "NUMERIC" :type uint)
151 (:+uniquesort+ :swf-name "UNIQUESORT" :type uint)
152 (:+caseinsensitive+ :swf-name "CASEINSENSITIVE" :type uint)
153 (:+length+ :swf-name "length" :type int)
154 (:+descending+ :swf-name "DESCENDING" :type uint))
155 :properties
156 ((:length :swf-name "length" :type uint :access :readwrite :declared-by array))
157 :methods
160 (declare-swf-class flash.sampler::stack-frame (object)
161 :swf-name "flash.sampler::StackFrame"
162 ;; :supers (object)
163 ;; = ("Object")
164 ;; :interfaces NIL
165 ;; = NIL
166 :constants
167 ((:+name+ :swf-name "name" :type string)
168 (:+line+ :swf-name "line" :type uint)
169 (:+file+ :swf-name "file" :type string))
170 :properties
172 :methods
173 ((:to-string :swf-name "toString" :return-type string :declared-by flash.sampler::stack-frame
174 :args ())))
176 (declare-swf-class flash.sampler::sample (object)
177 :swf-name "flash.sampler::Sample"
178 ;; :supers (object)
179 ;; = ("Object")
180 ;; :interfaces NIL
181 ;; = NIL
182 :constants
183 ((:+stack+ :swf-name "stack" :type array)
184 (:+time+ :swf-name "time" :type number))
185 :properties
187 :methods
190 (declare-swf-class flash.sampler::new-object-sample (flash.sampler::sample)
191 :swf-name "flash.sampler::NewObjectSample"
192 ;; :supers (flash.sampler::sample object)
193 ;; = ("flash.sampler::Sample" "Object")
194 ;; :interfaces NIL
195 ;; = NIL
196 :constants
197 ((:+type+ :swf-name "type" :type class)
198 (:+id+ :swf-name "id" :type number)
199 (:+stack+ :swf-name "stack" :type array)
200 (:+time+ :swf-name "time" :type number))
201 :properties
202 ((:object :swf-name "object" :type * :access :readonly :declared-by flash.sampler::new-object-sample))
203 :methods
206 (declare-swf-class flash.sampler::delete-object-sample (flash.sampler::sample)
207 :swf-name "flash.sampler::DeleteObjectSample"
208 ;; :supers (flash.sampler::sample object)
209 ;; = ("flash.sampler::Sample" "Object")
210 ;; :interfaces NIL
211 ;; = NIL
212 :constants
213 ((:+size+ :swf-name "size" :type number)
214 (:+id+ :swf-name "id" :type number)
215 (:+stack+ :swf-name "stack" :type array)
216 (:+time+ :swf-name "time" :type number))
217 :properties
219 :methods
222 (declare-swf-class flash.system::system (object)
223 :swf-name "flash.system::System"
224 ;; :supers (object)
225 ;; = ("Object")
226 ;; :interfaces NIL
227 ;; = NIL
228 :constants
230 :properties
232 :methods
235 (declare-swf-class flash.events::event (object)
236 :swf-name "flash.events::Event"
237 ;; :supers (object)
238 ;; = ("Object")
239 ;; :interfaces NIL
240 ;; = NIL
241 :constants
242 ((:+complete+ :swf-name "COMPLETE" :type string)
243 (:+close+ :swf-name "CLOSE" :type string)
244 (:+render+ :swf-name "RENDER" :type string)
245 (:+removed-from-stage+ :swf-name "REMOVED_FROM_STAGE" :type string)
246 (:+change+ :swf-name "CHANGE" :type string)
247 (:+cancel+ :swf-name "CANCEL" :type string)
248 (:+added-to-stage+ :swf-name "ADDED_TO_STAGE" :type string)
249 (:+fullscreen+ :swf-name "FULLSCREEN" :type string)
250 (:+tab-enabled-change+ :swf-name "TAB_ENABLED_CHANGE" :type string)
251 (:+removed+ :swf-name "REMOVED" :type string)
252 (:+tab-children-change+ :swf-name "TAB_CHILDREN_CHANGE" :type string)
253 (:+open+ :swf-name "OPEN" :type string)
254 (:+sound-complete+ :swf-name "SOUND_COMPLETE" :type string)
255 (:+mouse-leave+ :swf-name "MOUSE_LEAVE" :type string)
256 (:+id3+ :swf-name "ID3" :type string)
257 (:+init+ :swf-name "INIT" :type string)
258 (:+enter-frame+ :swf-name "ENTER_FRAME" :type string)
259 (:+tab-index-change+ :swf-name "TAB_INDEX_CHANGE" :type string)
260 (:+activate+ :swf-name "ACTIVATE" :type string)
261 (:+scroll+ :swf-name "SCROLL" :type string)
262 (:+unload+ :swf-name "UNLOAD" :type string)
263 (:+deactivate+ :swf-name "DEACTIVATE" :type string)
264 (:+connect+ :swf-name "CONNECT" :type string)
265 (:+select+ :swf-name "SELECT" :type string)
266 (:+resize+ :swf-name "RESIZE" :type string)
267 (:+added+ :swf-name "ADDED" :type string))
268 :properties
269 ((:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
270 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
271 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
272 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
273 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
274 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
275 :methods
276 ((:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
277 :args ())
278 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
279 :args ((:index 1 :type string :optional NIL)))
280 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event
281 :args ())
282 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
283 :args ())
284 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::event
285 :args ())
286 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
287 :args ())
288 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
289 :args ())))
291 (declare-swf-class flash.events::text-event (flash.events::event)
292 :swf-name "flash.events::TextEvent"
293 ;; :supers (flash.events::event object)
294 ;; = ("flash.events::Event" "Object")
295 ;; :interfaces NIL
296 ;; = NIL
297 :constants
298 ((:+text-input+ :swf-name "TEXT_INPUT" :type string)
299 (:+link+ :swf-name "LINK" :type string))
300 :properties
301 ((:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
302 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
303 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
304 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
305 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
306 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
307 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
308 :methods
309 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::text-event
310 :args ())
311 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::text-event
312 :args ())
313 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
314 :args ())
315 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
316 :args ((:index 1 :type string :optional NIL)))
317 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
318 :args ())
319 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
320 :args ())
321 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
322 :args ())))
324 (declare-swf-class flash.events::error-event (flash.events::text-event)
325 :swf-name "flash.events::ErrorEvent"
326 ;; :supers (flash.events::text-event flash.events::event object)
327 ;; = ("flash.events::TextEvent" "flash.events::Event" "Object")
328 ;; :interfaces NIL
329 ;; = NIL
330 :constants
331 ((:+error+ :swf-name "ERROR" :type string))
332 :properties
333 ((:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
334 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
335 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
336 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
337 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
338 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
339 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
340 :methods
341 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::error-event
342 :args ())
343 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::error-event
344 :args ())
345 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
346 :args ())
347 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
348 :args ((:index 1 :type string :optional NIL)))
349 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
350 :args ())
351 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
352 :args ())
353 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
354 :args ())))
356 (declare-swf-class flash.events::async-error-event (flash.events::error-event)
357 :swf-name "flash.events::AsyncErrorEvent"
358 ;; :supers (flash.events::error-event flash.events::text-event
359 ;; flash.events::event object)
360 ;; = ("flash.events::ErrorEvent" "flash.events::TextEvent"
361 ;; "flash.events::Event" "Object")
362 ;; :interfaces NIL
363 ;; = NIL
364 :constants
365 ((:+async-error+ :swf-name "ASYNC_ERROR" :type string))
366 :properties
367 ((:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
368 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
369 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
370 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
371 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
372 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
373 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
374 :methods
375 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::async-error-event
376 :args ())
377 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::async-error-event
378 :args ())
379 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
380 :args ())
381 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
382 :args ((:index 1 :type string :optional NIL)))
383 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
384 :args ())
385 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
386 :args ())
387 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
388 :args ())))
390 (declare-swf-class flash.utils::i-data-output ()
391 :swf-name "flash.utils::IDataOutput"
392 ;; :supers NIL
393 ;; = NIL
394 ;; :interfaces NIL
395 ;; = NIL
396 :constants
398 :properties
399 ((:endian :swf-name "endian" :type string :access :readwrite :declared-by flash.utils::i-data-output)
400 (:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.utils::i-data-output))
401 :methods
402 ((:write-float :swf-name "writeFloat" :return-type void :declared-by flash.utils::i-data-output
403 :args ((:index 1 :type number :optional NIL)))
404 (:write-object :swf-name "writeObject" :return-type void :declared-by flash.utils::i-data-output
405 :args ((:index 1 :type * :optional NIL)))
406 (:write-utf :swf-name "writeUTF" :return-type void :declared-by flash.utils::i-data-output
407 :args ((:index 1 :type string :optional NIL)))
408 (:write-double :swf-name "writeDouble" :return-type void :declared-by flash.utils::i-data-output
409 :args ((:index 1 :type number :optional NIL)))
410 (:write-byte :swf-name "writeByte" :return-type void :declared-by flash.utils::i-data-output
411 :args ((:index 1 :type int :optional NIL)))
412 (:write-short :swf-name "writeShort" :return-type void :declared-by flash.utils::i-data-output
413 :args ((:index 1 :type int :optional NIL)))
414 (:write-unsigned-int :swf-name "writeUnsignedInt" :return-type void :declared-by flash.utils::i-data-output
415 :args ((:index 1 :type uint :optional NIL)))
416 (:write-utf-bytes :swf-name "writeUTFBytes" :return-type void :declared-by flash.utils::i-data-output
417 :args ((:index 1 :type string :optional NIL)))
418 (:write-multi-byte :swf-name "writeMultiByte" :return-type void :declared-by flash.utils::i-data-output
419 :args ((:index 1 :type string :optional NIL)
420 (:index 2 :type string :optional NIL)))
421 (:write-bytes :swf-name "writeBytes" :return-type void :declared-by flash.utils::i-data-output
422 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
423 (:index 2 :type uint :optional T)
424 (:index 3 :type uint :optional T)))
425 (:write-boolean :swf-name "writeBoolean" :return-type void :declared-by flash.utils::i-data-output
426 :args ((:index 1 :type boolean :optional NIL)))
427 (:write-int :swf-name "writeInt" :return-type void :declared-by flash.utils::i-data-output
428 :args ((:index 1 :type int :optional NIL)))))
430 (declare-swf-class flash.utils::i-data-input ()
431 :swf-name "flash.utils::IDataInput"
432 ;; :supers NIL
433 ;; = NIL
434 ;; :interfaces NIL
435 ;; = NIL
436 :constants
438 :properties
439 ((:endian :swf-name "endian" :type string :access :readwrite :declared-by flash.utils::i-data-input)
440 (:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.utils::i-data-input)
441 (:bytes-available :swf-name "bytesAvailable" :type uint :access :readonly :declared-by flash.utils::i-data-input))
442 :methods
443 ((:read-unsigned-int :swf-name "readUnsignedInt" :return-type uint :declared-by flash.utils::i-data-input
444 :args ())
445 (:read-unsigned-short :swf-name "readUnsignedShort" :return-type uint :declared-by flash.utils::i-data-input
446 :args ())
447 (:read-byte :swf-name "readByte" :return-type int :declared-by flash.utils::i-data-input
448 :args ())
449 (:read-double :swf-name "readDouble" :return-type number :declared-by flash.utils::i-data-input
450 :args ())
451 (:read-float :swf-name "readFloat" :return-type number :declared-by flash.utils::i-data-input
452 :args ())
453 (:read-utf :swf-name "readUTF" :return-type string :declared-by flash.utils::i-data-input
454 :args ())
455 (:read-multi-byte :swf-name "readMultiByte" :return-type string :declared-by flash.utils::i-data-input
456 :args ((:index 1 :type uint :optional NIL)
457 (:index 2 :type string :optional NIL)))
458 (:read-object :swf-name "readObject" :return-type * :declared-by flash.utils::i-data-input
459 :args ())
460 (:read-utf-bytes :swf-name "readUTFBytes" :return-type string :declared-by flash.utils::i-data-input
461 :args ((:index 1 :type uint :optional NIL)))
462 (:read-unsigned-byte :swf-name "readUnsignedByte" :return-type uint :declared-by flash.utils::i-data-input
463 :args ())
464 (:read-bytes :swf-name "readBytes" :return-type void :declared-by flash.utils::i-data-input
465 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
466 (:index 2 :type uint :optional T)
467 (:index 3 :type uint :optional T)))
468 (:read-short :swf-name "readShort" :return-type int :declared-by flash.utils::i-data-input
469 :args ())
470 (:read-int :swf-name "readInt" :return-type int :declared-by flash.utils::i-data-input
471 :args ())
472 (:read-boolean :swf-name "readBoolean" :return-type boolean :declared-by flash.utils::i-data-input
473 :args ())))
475 (declare-swf-class flash.utils::byte-array (object)
476 :swf-name "flash.utils::ByteArray"
477 ;; :supers (object)
478 ;; = ("Object")
479 ;; :interfaces (flash.utils::i-data-output flash.utils::i-data-input)
480 ;; = ("flash.utils::IDataOutput" "flash.utils::IDataInput")
481 :constants
483 :properties
484 ((:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.utils::byte-array)
485 (:bytes-available :swf-name "bytesAvailable" :type uint :access :readonly :declared-by flash.utils::byte-array)
486 (:position :swf-name "position" :type uint :access :readwrite :declared-by flash.utils::byte-array)
487 (:length :swf-name "length" :type uint :access :readwrite :declared-by flash.utils::byte-array)
488 (:endian :swf-name "endian" :type string :access :readwrite :declared-by flash.utils::byte-array))
489 :methods
490 ((:read-double :swf-name "readDouble" :return-type number :declared-by flash.utils::byte-array
491 :args ())
492 (:read-unsigned-short :swf-name "readUnsignedShort" :return-type uint :declared-by flash.utils::byte-array
493 :args ())
494 (:write-unsigned-int :swf-name "writeUnsignedInt" :return-type void :declared-by flash.utils::byte-array
495 :args ((:index 1 :type uint :optional NIL)))
496 (:to-string :swf-name "toString" :return-type string :declared-by flash.utils::byte-array
497 :args ())
498 (:write-float :swf-name "writeFloat" :return-type void :declared-by flash.utils::byte-array
499 :args ((:index 1 :type number :optional NIL)))
500 (:write-double :swf-name "writeDouble" :return-type void :declared-by flash.utils::byte-array
501 :args ((:index 1 :type number :optional NIL)))
502 (:read-multi-byte :swf-name "readMultiByte" :return-type string :declared-by flash.utils::byte-array
503 :args ((:index 1 :type uint :optional NIL)
504 (:index 2 :type string :optional NIL)))
505 (:write-int :swf-name "writeInt" :return-type void :declared-by flash.utils::byte-array
506 :args ((:index 1 :type int :optional NIL)))
507 (:read-short :swf-name "readShort" :return-type int :declared-by flash.utils::byte-array
508 :args ())
509 (:write-bytes :swf-name "writeBytes" :return-type void :declared-by flash.utils::byte-array
510 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
511 (:index 2 :type uint :optional T)
512 (:index 3 :type uint :optional T)))
513 (:read-unsigned-int :swf-name "readUnsignedInt" :return-type uint :declared-by flash.utils::byte-array
514 :args ())
515 (:write-object :swf-name "writeObject" :return-type void :declared-by flash.utils::byte-array
516 :args ((:index 1 :type * :optional NIL)))
517 (:read-float :swf-name "readFloat" :return-type number :declared-by flash.utils::byte-array
518 :args ())
519 (:write-utf :swf-name "writeUTF" :return-type void :declared-by flash.utils::byte-array
520 :args ((:index 1 :type string :optional NIL)))
521 (:write-byte :swf-name "writeByte" :return-type void :declared-by flash.utils::byte-array
522 :args ((:index 1 :type int :optional NIL)))
523 (:uncompress :swf-name "uncompress" :return-type void :declared-by flash.utils::byte-array
524 :args ())
525 (:write-short :swf-name "writeShort" :return-type void :declared-by flash.utils::byte-array
526 :args ((:index 1 :type int :optional NIL)))
527 (:compress :swf-name "compress" :return-type void :declared-by flash.utils::byte-array
528 :args ())
529 (:write-boolean :swf-name "writeBoolean" :return-type void :declared-by flash.utils::byte-array
530 :args ((:index 1 :type boolean :optional NIL)))
531 (:write-multi-byte :swf-name "writeMultiByte" :return-type void :declared-by flash.utils::byte-array
532 :args ((:index 1 :type string :optional NIL)
533 (:index 2 :type string :optional NIL)))
534 (:write-utf-bytes :swf-name "writeUTFBytes" :return-type void :declared-by flash.utils::byte-array
535 :args ((:index 1 :type string :optional NIL)))
536 (:read-object :swf-name "readObject" :return-type * :declared-by flash.utils::byte-array
537 :args ())
538 (:read-byte :swf-name "readByte" :return-type int :declared-by flash.utils::byte-array
539 :args ())
540 (:read-utf-bytes :swf-name "readUTFBytes" :return-type string :declared-by flash.utils::byte-array
541 :args ((:index 1 :type uint :optional NIL)))
542 (:read-int :swf-name "readInt" :return-type int :declared-by flash.utils::byte-array
543 :args ())
544 (:read-utf :swf-name "readUTF" :return-type string :declared-by flash.utils::byte-array
545 :args ())
546 (:read-bytes :swf-name "readBytes" :return-type void :declared-by flash.utils::byte-array
547 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
548 (:index 2 :type uint :optional T)
549 (:index 3 :type uint :optional T)))
550 (:read-unsigned-byte :swf-name "readUnsignedByte" :return-type uint :declared-by flash.utils::byte-array
551 :args ())
552 (:read-boolean :swf-name "readBoolean" :return-type boolean :declared-by flash.utils::byte-array
553 :args ())))
555 (declare-swf-class error (object)
556 :swf-name "Error"
557 ;; :supers (object)
558 ;; = ("Object")
559 ;; :interfaces NIL
560 ;; = NIL
561 :constants
562 ((:+length+ :swf-name "length" :type int))
563 :properties
564 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
565 :methods
566 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
567 :args ())))
569 (declare-swf-class definition-error (error)
570 :swf-name "DefinitionError"
571 ;; :supers (error object)
572 ;; = ("Error" "Object")
573 ;; :interfaces NIL
574 ;; = NIL
575 :constants
576 ((:+length+ :swf-name "length" :type int))
577 :properties
578 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
579 :methods
580 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
581 :args ())))
583 (declare-swf-class eval-error (error)
584 :swf-name "EvalError"
585 ;; :supers (error object)
586 ;; = ("Error" "Object")
587 ;; :interfaces NIL
588 ;; = NIL
589 :constants
590 ((:+length+ :swf-name "length" :type int))
591 :properties
592 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
593 :methods
594 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
595 :args ())))
597 (declare-swf-class range-error (error)
598 :swf-name "RangeError"
599 ;; :supers (error object)
600 ;; = ("Error" "Object")
601 ;; :interfaces NIL
602 ;; = NIL
603 :constants
604 ((:+length+ :swf-name "length" :type int))
605 :properties
606 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
607 :methods
608 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
609 :args ())))
611 (declare-swf-class reference-error (error)
612 :swf-name "ReferenceError"
613 ;; :supers (error object)
614 ;; = ("Error" "Object")
615 ;; :interfaces NIL
616 ;; = NIL
617 :constants
618 ((:+length+ :swf-name "length" :type int))
619 :properties
620 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
621 :methods
622 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
623 :args ())))
625 (declare-swf-class security-error (error)
626 :swf-name "SecurityError"
627 ;; :supers (error object)
628 ;; = ("Error" "Object")
629 ;; :interfaces NIL
630 ;; = NIL
631 :constants
632 ((:+length+ :swf-name "length" :type int))
633 :properties
634 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
635 :methods
636 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
637 :args ())))
639 (declare-swf-class syntax-error (error)
640 :swf-name "SyntaxError"
641 ;; :supers (error object)
642 ;; = ("Error" "Object")
643 ;; :interfaces NIL
644 ;; = NIL
645 :constants
646 ((:+length+ :swf-name "length" :type int))
647 :properties
648 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
649 :methods
650 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
651 :args ())))
653 (declare-swf-class type-error (error)
654 :swf-name "TypeError"
655 ;; :supers (error object)
656 ;; = ("Error" "Object")
657 ;; :interfaces NIL
658 ;; = NIL
659 :constants
660 ((:+length+ :swf-name "length" :type int))
661 :properties
662 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
663 :methods
664 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
665 :args ())))
667 (declare-swf-class uri-error (error)
668 :swf-name "URIError"
669 ;; :supers (error object)
670 ;; = ("Error" "Object")
671 ;; :interfaces NIL
672 ;; = NIL
673 :constants
674 ((:+length+ :swf-name "length" :type int))
675 :properties
676 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
677 :methods
678 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
679 :args ())))
681 (declare-swf-class verify-error (error)
682 :swf-name "VerifyError"
683 ;; :supers (error object)
684 ;; = ("Error" "Object")
685 ;; :interfaces NIL
686 ;; = NIL
687 :constants
688 ((:+length+ :swf-name "length" :type int))
689 :properties
690 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
691 :methods
692 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
693 :args ())))
695 (declare-swf-class uninitialized-error (error)
696 :swf-name "UninitializedError"
697 ;; :supers (error object)
698 ;; = ("Error" "Object")
699 ;; :interfaces NIL
700 ;; = NIL
701 :constants
702 ((:+length+ :swf-name "length" :type int))
703 :properties
704 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
705 :methods
706 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
707 :args ())))
709 (declare-swf-class argument-error (error)
710 :swf-name "ArgumentError"
711 ;; :supers (error object)
712 ;; = ("Error" "Object")
713 ;; :interfaces NIL
714 ;; = NIL
715 :constants
716 ((:+length+ :swf-name "length" :type int))
717 :properties
718 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
719 :methods
720 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
721 :args ())))
723 (declare-swf-class math (object)
724 :swf-name "Math"
725 ;; :supers (object)
726 ;; = ("Object")
727 ;; :interfaces NIL
728 ;; = NIL
729 :constants
730 ((:+e+ :swf-name "E" :type number)
731 (:+sqrt2+ :swf-name "SQRT2" :type number)
732 (:+log10e+ :swf-name "LOG10E" :type number)
733 (:+sqrt1-2+ :swf-name "SQRT1_2" :type number)
734 (:+log2e+ :swf-name "LOG2E" :type number)
735 (:+ln2+ :swf-name "LN2" :type number)
736 (:+ln10+ :swf-name "LN10" :type number)
737 (:+pi+ :swf-name "PI" :type number))
738 :properties
740 :methods
743 (declare-swf-class reg-exp (object)
744 :swf-name "RegExp"
745 ;; :supers (object)
746 ;; = ("Object")
747 ;; :interfaces NIL
748 ;; = NIL
749 :constants
750 ((:+length+ :swf-name "length" :type int))
751 :properties
752 ((:multiline :swf-name "multiline" :type boolean :access :readonly :declared-by reg-exp)
753 (:dotall :swf-name "dotall" :type boolean :access :readonly :declared-by reg-exp)
754 (:source :swf-name "source" :type string :access :readonly :declared-by reg-exp)
755 (:last-index :swf-name "lastIndex" :type int :access :readwrite :declared-by reg-exp)
756 (:ignore-case :swf-name "ignoreCase" :type boolean :access :readonly :declared-by reg-exp)
757 (:extended :swf-name "extended" :type boolean :access :readonly :declared-by reg-exp)
758 (:global :swf-name "global" :type boolean :access :readonly :declared-by reg-exp))
759 :methods
762 (declare-swf-class flash.events::i-event-dispatcher ()
763 :swf-name "flash.events::IEventDispatcher"
764 ;; :supers NIL
765 ;; = NIL
766 ;; :interfaces NIL
767 ;; = NIL
768 :constants
770 :properties
772 :methods
773 ((:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::i-event-dispatcher
774 :args ((:index 1 :type flash.events::event :optional NIL)))
775 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::i-event-dispatcher
776 :args ((:index 1 :type string :optional NIL)
777 (:index 2 :type function :optional NIL)
778 (:index 3 :type boolean :optional T)
779 (:index 4 :type int :optional T)
780 (:index 5 :type boolean :optional T)))
781 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::i-event-dispatcher
782 :args ((:index 1 :type string :optional NIL)
783 (:index 2 :type function :optional NIL)
784 (:index 3 :type boolean :optional T)))
785 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::i-event-dispatcher
786 :args ((:index 1 :type string :optional NIL)))
787 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::i-event-dispatcher
788 :args ((:index 1 :type string :optional NIL)))))
790 (declare-swf-class flash.events::event-dispatcher (object)
791 :swf-name "flash.events::EventDispatcher"
792 ;; :supers (object)
793 ;; = ("Object")
794 ;; :interfaces (flash.events::i-event-dispatcher)
795 ;; = ("flash.events::IEventDispatcher")
796 :constants
798 :properties
800 :methods
801 ((:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
802 :args ((:index 1 :type string :optional NIL)))
803 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
804 :args ())
805 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
806 :args ((:index 1 :type string :optional NIL)
807 (:index 2 :type function :optional NIL)
808 (:index 3 :type boolean :optional T)))
809 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
810 :args ((:index 1 :type string :optional NIL)
811 (:index 2 :type function :optional NIL)
812 (:index 3 :type boolean :optional T)
813 (:index 4 :type int :optional T)
814 (:index 5 :type boolean :optional T)))
815 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
816 :args ((:index 1 :type string :optional NIL)))
817 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
818 :args ((:index 1 :type flash.events::event :optional NIL)))))
820 (declare-swf-class flash.ui::context-menu-item (flash.events::event-dispatcher)
821 :swf-name "flash.ui::ContextMenuItem"
822 ;; :supers (flash.events::event-dispatcher object)
823 ;; = ("flash.events::EventDispatcher" "Object")
824 ;; :interfaces (flash.events::i-event-dispatcher)
825 ;; = ("flash.events::IEventDispatcher")
826 :constants
828 :properties
829 ((:enabled :swf-name "enabled" :type boolean :access :readwrite :declared-by flash.ui::context-menu-item)
830 (:separator-before :swf-name "separatorBefore" :type boolean :access :readwrite :declared-by flash.ui::context-menu-item)
831 (:caption :swf-name "caption" :type string :access :readwrite :declared-by flash.ui::context-menu-item)
832 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.ui::context-menu-item))
833 :methods
834 ((:clone :swf-name "clone" :return-type flash.ui::context-menu-item :declared-by flash.ui::context-menu-item
835 :args ())
836 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
837 :args ((:index 1 :type string :optional NIL)))
838 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
839 :args ())
840 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
841 :args ((:index 1 :type string :optional NIL)
842 (:index 2 :type function :optional NIL)
843 (:index 3 :type boolean :optional T)))
844 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
845 :args ((:index 1 :type string :optional NIL)
846 (:index 2 :type function :optional NIL)
847 (:index 3 :type boolean :optional T)
848 (:index 4 :type int :optional T)
849 (:index 5 :type boolean :optional T)))
850 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
851 :args ((:index 1 :type string :optional NIL)))
852 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
853 :args ((:index 1 :type flash.events::event :optional NIL)))))
855 (declare-swf-class flash.system::application-domain (object)
856 :swf-name "flash.system::ApplicationDomain"
857 ;; :supers (object)
858 ;; = ("Object")
859 ;; :interfaces NIL
860 ;; = NIL
861 :constants
863 :properties
864 ((:parent-domain :swf-name "parentDomain" :type flash.system::application-domain :access :readonly :declared-by flash.system::application-domain))
865 :methods
866 ((:get-definition :swf-name "getDefinition" :return-type object :declared-by flash.system::application-domain
867 :args ((:index 1 :type string :optional NIL)))
868 (:has-definition :swf-name "hasDefinition" :return-type boolean :declared-by flash.system::application-domain
869 :args ((:index 1 :type string :optional NIL)))))
871 (declare-swf-class flash.display::scene (object)
872 :swf-name "flash.display::Scene"
873 ;; :supers (object)
874 ;; = ("Object")
875 ;; :interfaces NIL
876 ;; = NIL
877 :constants
879 :properties
880 ((:labels :swf-name "labels" :type array :access :readonly :declared-by flash.display::scene)
881 (:num-frames :swf-name "numFrames" :type int :access :readonly :declared-by flash.display::scene)
882 (:name :swf-name "name" :type string :access :readonly :declared-by flash.display::scene))
883 :methods
886 (declare-swf-class flash.printing::print-job (flash.events::event-dispatcher)
887 :swf-name "flash.printing::PrintJob"
888 ;; :supers (flash.events::event-dispatcher object)
889 ;; = ("flash.events::EventDispatcher" "Object")
890 ;; :interfaces (flash.events::i-event-dispatcher)
891 ;; = ("flash.events::IEventDispatcher")
892 :constants
894 :properties
895 ((:orientation :swf-name "orientation" :type string :access :readonly :declared-by flash.printing::print-job)
896 (:page-width :swf-name "pageWidth" :type int :access :readonly :declared-by flash.printing::print-job)
897 (:paper-width :swf-name "paperWidth" :type int :access :readonly :declared-by flash.printing::print-job)
898 (:page-height :swf-name "pageHeight" :type int :access :readonly :declared-by flash.printing::print-job)
899 (:paper-height :swf-name "paperHeight" :type int :access :readonly :declared-by flash.printing::print-job))
900 :methods
901 ((:send :swf-name "send" :return-type void :declared-by flash.printing::print-job
902 :args ())
903 (:add-page :swf-name "addPage" :return-type void :declared-by flash.printing::print-job
904 :args ((:index 1 :type flash.display::sprite :optional NIL)
905 (:index 2 :type flash.geom::rectangle :optional T)
906 (:index 3 :type flash.printing::print-job-options :optional T)
907 (:index 4 :type int :optional T)))
908 (:start :swf-name "start" :return-type boolean :declared-by flash.printing::print-job
909 :args ())
910 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
911 :args ((:index 1 :type string :optional NIL)))
912 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
913 :args ())
914 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
915 :args ((:index 1 :type string :optional NIL)
916 (:index 2 :type function :optional NIL)
917 (:index 3 :type boolean :optional T)))
918 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
919 :args ((:index 1 :type string :optional NIL)
920 (:index 2 :type function :optional NIL)
921 (:index 3 :type boolean :optional T)
922 (:index 4 :type int :optional T)
923 (:index 5 :type boolean :optional T)))
924 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
925 :args ((:index 1 :type string :optional NIL)))
926 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
927 :args ((:index 1 :type flash.events::event :optional NIL)))))
929 (declare-swf-class flash.geom::matrix (object)
930 :swf-name "flash.geom::Matrix"
931 ;; :supers (object)
932 ;; = ("Object")
933 ;; :interfaces NIL
934 ;; = NIL
935 :constants
937 :properties
939 :methods
940 ((:create-box :swf-name "createBox" :return-type void :declared-by flash.geom::matrix
941 :args ((:index 1 :type number :optional NIL)
942 (:index 2 :type number :optional NIL)
943 (:index 3 :type number :optional T)
944 (:index 4 :type number :optional T)
945 (:index 5 :type number :optional T)))
946 (:concat :swf-name "concat" :return-type void :declared-by flash.geom::matrix
947 :args ((:index 1 :type flash.geom::matrix :optional NIL)))
948 (:scale :swf-name "scale" :return-type void :declared-by flash.geom::matrix
949 :args ((:index 1 :type number :optional NIL)
950 (:index 2 :type number :optional NIL)))
951 (:rotate :swf-name "rotate" :return-type void :declared-by flash.geom::matrix
952 :args ((:index 1 :type number :optional NIL)))
953 (:clone :swf-name "clone" :return-type flash.geom::matrix :declared-by flash.geom::matrix
954 :args ())
955 (:delta-transform-point :swf-name "deltaTransformPoint" :return-type flash.geom::point :declared-by flash.geom::matrix
956 :args ((:index 1 :type flash.geom::point :optional NIL)))
957 (:transform-point :swf-name "transformPoint" :return-type flash.geom::point :declared-by flash.geom::matrix
958 :args ((:index 1 :type flash.geom::point :optional NIL)))
959 (:to-string :swf-name "toString" :return-type string :declared-by flash.geom::matrix
960 :args ())
961 (:create-gradient-box :swf-name "createGradientBox" :return-type void :declared-by flash.geom::matrix
962 :args ((:index 1 :type number :optional NIL)
963 (:index 2 :type number :optional NIL)
964 (:index 3 :type number :optional T)
965 (:index 4 :type number :optional T)
966 (:index 5 :type number :optional T)))
967 (:identity :swf-name "identity" :return-type void :declared-by flash.geom::matrix
968 :args ())
969 (:translate :swf-name "translate" :return-type void :declared-by flash.geom::matrix
970 :args ((:index 1 :type number :optional NIL)
971 (:index 2 :type number :optional NIL)))
972 (:invert :swf-name "invert" :return-type void :declared-by flash.geom::matrix
973 :args ())))
975 (declare-swf-class flash.display::i-bitmap-drawable ()
976 :swf-name "flash.display::IBitmapDrawable"
977 ;; :supers NIL
978 ;; = NIL
979 ;; :interfaces NIL
980 ;; = NIL
981 :constants
983 :properties
985 :methods
988 (declare-swf-class flash.display::display-object (flash.events::event-dispatcher)
989 :swf-name "flash.display::DisplayObject"
990 ;; :supers (flash.events::event-dispatcher object)
991 ;; = ("flash.events::EventDispatcher" "Object")
992 ;; :interfaces (flash.display::i-bitmap-drawable
993 ;; flash.events::i-event-dispatcher)
994 ;; = ("flash.display::IBitmapDrawable"
995 ;; "flash.events::IEventDispatcher")
996 :constants
998 :properties
999 ((:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
1000 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
1001 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
1002 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
1003 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
1004 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
1005 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
1006 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
1007 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
1008 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
1009 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
1010 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
1011 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
1012 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
1013 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
1014 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
1015 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
1016 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
1017 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
1018 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
1019 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
1020 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
1021 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
1022 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
1023 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
1024 :methods
1025 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
1026 :args ((:index 1 :type flash.display::display-object :optional NIL)))
1027 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
1028 :args ((:index 1 :type flash.geom::point :optional NIL)))
1029 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
1030 :args ((:index 1 :type flash.geom::point :optional NIL)))
1031 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
1032 :args ((:index 1 :type flash.display::display-object :optional NIL)))
1033 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
1034 :args ((:index 1 :type flash.display::display-object :optional NIL)))
1035 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
1036 :args ((:index 1 :type number :optional NIL)
1037 (:index 2 :type number :optional NIL)
1038 (:index 3 :type boolean :optional T)))
1039 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
1040 :args ((:index 1 :type string :optional NIL)))
1041 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
1042 :args ())
1043 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
1044 :args ((:index 1 :type string :optional NIL)
1045 (:index 2 :type function :optional NIL)
1046 (:index 3 :type boolean :optional T)))
1047 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
1048 :args ((:index 1 :type string :optional NIL)
1049 (:index 2 :type function :optional NIL)
1050 (:index 3 :type boolean :optional T)
1051 (:index 4 :type int :optional T)
1052 (:index 5 :type boolean :optional T)))
1053 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
1054 :args ((:index 1 :type string :optional NIL)))
1055 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
1056 :args ((:index 1 :type flash.events::event :optional NIL)))))
1058 (declare-swf-class flash.display::bitmap (flash.display::display-object)
1059 :swf-name "flash.display::Bitmap"
1060 ;; :supers (flash.display::display-object flash.events::event-dispatcher
1061 ;; object)
1062 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
1063 ;; "Object")
1064 ;; :interfaces (flash.display::i-bitmap-drawable
1065 ;; flash.events::i-event-dispatcher)
1066 ;; = ("flash.display::IBitmapDrawable"
1067 ;; "flash.events::IEventDispatcher")
1068 :constants
1070 :properties
1071 ((:smoothing :swf-name "smoothing" :type boolean :access :readwrite :declared-by flash.display::bitmap)
1072 (:bitmap-data :swf-name "bitmapData" :type flash.display::bitmap-data :access :readwrite :declared-by flash.display::bitmap)
1073 (:pixel-snapping :swf-name "pixelSnapping" :type string :access :readwrite :declared-by flash.display::bitmap)
1074 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
1075 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
1076 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
1077 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
1078 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
1079 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
1080 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
1081 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
1082 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
1083 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
1084 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
1085 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
1086 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
1087 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
1088 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
1089 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
1090 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
1091 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
1092 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
1093 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
1094 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
1095 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
1096 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
1097 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
1098 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
1099 :methods
1100 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
1101 :args ((:index 1 :type flash.display::display-object :optional NIL)))
1102 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
1103 :args ((:index 1 :type flash.geom::point :optional NIL)))
1104 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
1105 :args ((:index 1 :type flash.geom::point :optional NIL)))
1106 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
1107 :args ((:index 1 :type flash.display::display-object :optional NIL)))
1108 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
1109 :args ((:index 1 :type flash.display::display-object :optional NIL)))
1110 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
1111 :args ((:index 1 :type number :optional NIL)
1112 (:index 2 :type number :optional NIL)
1113 (:index 3 :type boolean :optional T)))
1114 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
1115 :args ((:index 1 :type string :optional NIL)))
1116 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
1117 :args ())
1118 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
1119 :args ((:index 1 :type string :optional NIL)
1120 (:index 2 :type function :optional NIL)
1121 (:index 3 :type boolean :optional T)))
1122 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
1123 :args ((:index 1 :type string :optional NIL)
1124 (:index 2 :type function :optional NIL)
1125 (:index 3 :type boolean :optional T)
1126 (:index 4 :type int :optional T)
1127 (:index 5 :type boolean :optional T)))
1128 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
1129 :args ((:index 1 :type string :optional NIL)))
1130 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
1131 :args ((:index 1 :type flash.events::event :optional NIL)))))
1133 (declare-swf-class flash.xml::-xml-node (object)
1134 :swf-name "flash.xml::XMLNode"
1135 ;; :supers (object)
1136 ;; = ("Object")
1137 ;; :interfaces NIL
1138 ;; = NIL
1139 :constants
1141 :properties
1142 ((:child-nodes :swf-name "childNodes" :type array :access :readonly :declared-by flash.xml::-xml-node)
1143 (:namespace-uri :swf-name "namespaceURI" :type string :access :readonly :declared-by flash.xml::-xml-node)
1144 (:local-name :swf-name "localName" :type string :access :readonly :declared-by flash.xml::-xml-node)
1145 (:attributes :swf-name "attributes" :type object :access :readwrite :declared-by flash.xml::-xml-node)
1146 (:prefix :swf-name "prefix" :type string :access :readonly :declared-by flash.xml::-xml-node))
1147 :methods
1148 ((:to-string :swf-name "toString" :return-type string :declared-by flash.xml::-xml-node
1149 :args ())
1150 (:get-prefix-for-namespace :swf-name "getPrefixForNamespace" :return-type string :declared-by flash.xml::-xml-node
1151 :args ((:index 1 :type string :optional NIL)))
1152 (:has-child-nodes :swf-name "hasChildNodes" :return-type boolean :declared-by flash.xml::-xml-node
1153 :args ())
1154 (:clone-node :swf-name "cloneNode" :return-type flash.xml::-xml-node :declared-by flash.xml::-xml-node
1155 :args ((:index 1 :type boolean :optional NIL)))
1156 (:remove-node :swf-name "removeNode" :return-type void :declared-by flash.xml::-xml-node
1157 :args ())
1158 (:insert-before :swf-name "insertBefore" :return-type void :declared-by flash.xml::-xml-node
1159 :args ((:index 1 :type flash.xml::-xml-node :optional NIL)
1160 (:index 2 :type flash.xml::-xml-node :optional NIL)))
1161 (:get-namespace-for-prefix :swf-name "getNamespaceForPrefix" :return-type string :declared-by flash.xml::-xml-node
1162 :args ((:index 1 :type string :optional NIL)))
1163 (:append-child :swf-name "appendChild" :return-type void :declared-by flash.xml::-xml-node
1164 :args ((:index 1 :type flash.xml::-xml-node :optional NIL)))))
1166 (declare-swf-class flash.xml::-xml-document (flash.xml::-xml-node)
1167 :swf-name "flash.xml::XMLDocument"
1168 ;; :supers (flash.xml::-xml-node object)
1169 ;; = ("flash.xml::XMLNode" "Object")
1170 ;; :interfaces NIL
1171 ;; = NIL
1172 :constants
1174 :properties
1175 ((:child-nodes :swf-name "childNodes" :type array :access :readonly :declared-by flash.xml::-xml-node)
1176 (:namespace-uri :swf-name "namespaceURI" :type string :access :readonly :declared-by flash.xml::-xml-node)
1177 (:local-name :swf-name "localName" :type string :access :readonly :declared-by flash.xml::-xml-node)
1178 (:attributes :swf-name "attributes" :type object :access :readwrite :declared-by flash.xml::-xml-node)
1179 (:prefix :swf-name "prefix" :type string :access :readonly :declared-by flash.xml::-xml-node))
1180 :methods
1181 ((:create-text-node :swf-name "createTextNode" :return-type flash.xml::-xml-node :declared-by flash.xml::-xml-document
1182 :args ((:index 1 :type string :optional NIL)))
1183 (:to-string :swf-name "toString" :return-type string :declared-by flash.xml::-xml-document
1184 :args ())
1185 (:create-element :swf-name "createElement" :return-type flash.xml::-xml-node :declared-by flash.xml::-xml-document
1186 :args ((:index 1 :type string :optional NIL)))
1187 (:parse-xml :swf-name "parseXML" :return-type void :declared-by flash.xml::-xml-document
1188 :args ((:index 1 :type string :optional NIL)))
1189 (:get-prefix-for-namespace :swf-name "getPrefixForNamespace" :return-type string :declared-by flash.xml::-xml-node
1190 :args ((:index 1 :type string :optional NIL)))
1191 (:has-child-nodes :swf-name "hasChildNodes" :return-type boolean :declared-by flash.xml::-xml-node
1192 :args ())
1193 (:clone-node :swf-name "cloneNode" :return-type flash.xml::-xml-node :declared-by flash.xml::-xml-node
1194 :args ((:index 1 :type boolean :optional NIL)))
1195 (:remove-node :swf-name "removeNode" :return-type void :declared-by flash.xml::-xml-node
1196 :args ())
1197 (:insert-before :swf-name "insertBefore" :return-type void :declared-by flash.xml::-xml-node
1198 :args ((:index 1 :type flash.xml::-xml-node :optional NIL)
1199 (:index 2 :type flash.xml::-xml-node :optional NIL)))
1200 (:get-namespace-for-prefix :swf-name "getNamespaceForPrefix" :return-type string :declared-by flash.xml::-xml-node
1201 :args ((:index 1 :type string :optional NIL)))
1202 (:append-child :swf-name "appendChild" :return-type void :declared-by flash.xml::-xml-node
1203 :args ((:index 1 :type flash.xml::-xml-node :optional NIL)))))
1205 (declare-swf-class flash.text::text-renderer (object)
1206 :swf-name "flash.text::TextRenderer"
1207 ;; :supers (object)
1208 ;; = ("Object")
1209 ;; :interfaces NIL
1210 ;; = NIL
1211 :constants
1213 :properties
1215 :methods
1218 (declare-swf-class xml (object)
1219 :swf-name "XML"
1220 ;; :supers (object)
1221 ;; = ("Object")
1222 ;; :interfaces NIL
1223 ;; = NIL
1224 :constants
1225 ((:+length+ :swf-name "length" :type *))
1226 :properties
1228 :methods
1231 (declare-swf-class xml-list (object)
1232 :swf-name "XMLList"
1233 ;; :supers (object)
1234 ;; = ("Object")
1235 ;; :interfaces NIL
1236 ;; = NIL
1237 :constants
1238 ((:+length+ :swf-name "length" :type *))
1239 :properties
1241 :methods
1244 (declare-swf-class q-name (object)
1245 :swf-name "QName"
1246 ;; :supers (object)
1247 ;; = ("Object")
1248 ;; :interfaces NIL
1249 ;; = NIL
1250 :constants
1251 ((:+length+ :swf-name "length" :type *))
1252 :properties
1253 ((:local-name :swf-name "localName" :type string :access :readonly :declared-by q-name)
1254 (:uri :swf-name "uri" :type * :access :readonly :declared-by q-name))
1255 :methods
1258 (declare-swf-class flash.display::stage-align (object)
1259 :swf-name "flash.display::StageAlign"
1260 ;; :supers (object)
1261 ;; = ("Object")
1262 ;; :interfaces NIL
1263 ;; = NIL
1264 :constants
1265 ((:+top-right+ :swf-name "TOP_RIGHT" :type string)
1266 (:+bottom-left+ :swf-name "BOTTOM_LEFT" :type string)
1267 (:+left+ :swf-name "LEFT" :type string)
1268 (:+right+ :swf-name "RIGHT" :type string)
1269 (:+bottom-right+ :swf-name "BOTTOM_RIGHT" :type string)
1270 (:+bottom+ :swf-name "BOTTOM" :type string)
1271 (:+top-left+ :swf-name "TOP_LEFT" :type string)
1272 (:+top+ :swf-name "TOP" :type string))
1273 :properties
1275 :methods
1278 (declare-swf-class flash.errors::illegal-operation-error (error)
1279 :swf-name "flash.errors::IllegalOperationError"
1280 ;; :supers (error object)
1281 ;; = ("Error" "Object")
1282 ;; :interfaces NIL
1283 ;; = NIL
1284 :constants
1286 :properties
1287 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1288 :methods
1289 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1290 :args ())))
1292 (declare-swf-class flash.errors::-io-error (error)
1293 :swf-name "flash.errors::IOError"
1294 ;; :supers (error object)
1295 ;; = ("Error" "Object")
1296 ;; :interfaces NIL
1297 ;; = NIL
1298 :constants
1300 :properties
1301 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1302 :methods
1303 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1304 :args ())))
1306 (declare-swf-class flash.errors::memory-error (error)
1307 :swf-name "flash.errors::MemoryError"
1308 ;; :supers (error object)
1309 ;; = ("Error" "Object")
1310 ;; :interfaces NIL
1311 ;; = NIL
1312 :constants
1314 :properties
1315 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1316 :methods
1317 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1318 :args ())))
1320 (declare-swf-class flash.errors::-eof-error (flash.errors::-io-error)
1321 :swf-name "flash.errors::EOFError"
1322 ;; :supers (flash.errors::-io-error error object)
1323 ;; = ("flash.errors::IOError" "Error" "Object")
1324 ;; :interfaces NIL
1325 ;; = NIL
1326 :constants
1328 :properties
1329 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1330 :methods
1331 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1332 :args ())))
1334 (declare-swf-class flash.errors::stack-overflow-error (error)
1335 :swf-name "flash.errors::StackOverflowError"
1336 ;; :supers (error object)
1337 ;; = ("Error" "Object")
1338 ;; :interfaces NIL
1339 ;; = NIL
1340 :constants
1342 :properties
1343 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1344 :methods
1345 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1346 :args ())))
1348 (declare-swf-class flash.errors::script-timeout-error (error)
1349 :swf-name "flash.errors::ScriptTimeoutError"
1350 ;; :supers (error object)
1351 ;; = ("Error" "Object")
1352 ;; :interfaces NIL
1353 ;; = NIL
1354 :constants
1356 :properties
1357 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1358 :methods
1359 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1360 :args ())))
1362 (declare-swf-class flash.errors::invalid-swf-error (error)
1363 :swf-name "flash.errors::InvalidSWFError"
1364 ;; :supers (error object)
1365 ;; = ("Error" "Object")
1366 ;; :interfaces NIL
1367 ;; = NIL
1368 :constants
1370 :properties
1371 ((:error-id :swf-name "errorID" :type int :access :readonly :declared-by error))
1372 :methods
1373 ((:get-stack-trace :swf-name "getStackTrace" :return-type string :declared-by error
1374 :args ())))
1376 (declare-swf-class flash.display::line-scale-mode (object)
1377 :swf-name "flash.display::LineScaleMode"
1378 ;; :supers (object)
1379 ;; = ("Object")
1380 ;; :interfaces NIL
1381 ;; = NIL
1382 :constants
1383 ((:+normal+ :swf-name "NORMAL" :type string)
1384 (:+vertical+ :swf-name "VERTICAL" :type string)
1385 (:+horizontal+ :swf-name "HORIZONTAL" :type string)
1386 (:+none+ :swf-name "NONE" :type string))
1387 :properties
1389 :methods
1392 (declare-swf-class flash.text::font-style (object)
1393 :swf-name "flash.text::FontStyle"
1394 ;; :supers (object)
1395 ;; = ("Object")
1396 ;; :interfaces NIL
1397 ;; = NIL
1398 :constants
1399 ((:+bold+ :swf-name "BOLD" :type string)
1400 (:+bold-italic+ :swf-name "BOLD_ITALIC" :type string)
1401 (:+italic+ :swf-name "ITALIC" :type string)
1402 (:+regular+ :swf-name "REGULAR" :type string))
1403 :properties
1405 :methods
1408 (declare-swf-class flash.system::-ime-conversion-mode (object)
1409 :swf-name "flash.system::IMEConversionMode"
1410 ;; :supers (object)
1411 ;; = ("Object")
1412 ;; :interfaces NIL
1413 ;; = NIL
1414 :constants
1415 ((:+korean+ :swf-name "KOREAN" :type string)
1416 (:+alphanumeric-full+ :swf-name "ALPHANUMERIC_FULL" :type string)
1417 (:+chinese+ :swf-name "CHINESE" :type string)
1418 (:+japanese-katakana-full+ :swf-name "JAPANESE_KATAKANA_FULL" :type string)
1419 (:+alphanumeric-half+ :swf-name "ALPHANUMERIC_HALF" :type string)
1420 (:+japanese-katakana-half+ :swf-name "JAPANESE_KATAKANA_HALF" :type string)
1421 (:+japanese-hiragana+ :swf-name "JAPANESE_HIRAGANA" :type string)
1422 (:+unknown+ :swf-name "UNKNOWN" :type string))
1423 :properties
1425 :methods
1428 (declare-swf-class flash.net::net-stream (flash.events::event-dispatcher)
1429 :swf-name "flash.net::NetStream"
1430 ;; :supers (flash.events::event-dispatcher object)
1431 ;; = ("flash.events::EventDispatcher" "Object")
1432 ;; :interfaces (flash.events::i-event-dispatcher)
1433 ;; = ("flash.events::IEventDispatcher")
1434 :constants
1436 :properties
1437 ((:check-policy-file :swf-name "checkPolicyFile" :type boolean :access :readwrite :declared-by flash.net::net-stream)
1438 (:current-fps :swf-name "currentFPS" :type number :access :readonly :declared-by flash.net::net-stream)
1439 (:decoded-frames :swf-name "decodedFrames" :type uint :access :readonly :declared-by flash.net::net-stream)
1440 (:client :swf-name "client" :type object :access :readwrite :declared-by flash.net::net-stream)
1441 (:bytes-total :swf-name "bytesTotal" :type uint :access :readonly :declared-by flash.net::net-stream)
1442 (:object-encoding :swf-name "objectEncoding" :type uint :access :readonly :declared-by flash.net::net-stream)
1443 (:video-codec :swf-name "videoCodec" :type uint :access :readonly :declared-by flash.net::net-stream)
1444 (:bytes-loaded :swf-name "bytesLoaded" :type uint :access :readonly :declared-by flash.net::net-stream)
1445 (:buffer-length :swf-name "bufferLength" :type number :access :readonly :declared-by flash.net::net-stream)
1446 (:audio-codec :swf-name "audioCodec" :type uint :access :readonly :declared-by flash.net::net-stream)
1447 (:live-delay :swf-name "liveDelay" :type number :access :readonly :declared-by flash.net::net-stream)
1448 (:time :swf-name "time" :type number :access :readonly :declared-by flash.net::net-stream)
1449 (:buffer-time :swf-name "bufferTime" :type number :access :readwrite :declared-by flash.net::net-stream)
1450 (:sound-transform :swf-name "soundTransform" :type flash.media::sound-transform :access :readwrite :declared-by flash.net::net-stream))
1451 :methods
1452 ((:receive-audio :swf-name "receiveAudio" :return-type void :declared-by flash.net::net-stream
1453 :args ((:index 1 :type boolean :optional NIL)))
1454 (:attach-camera :swf-name "attachCamera" :return-type void :declared-by flash.net::net-stream
1455 :args ((:index 1 :type flash.media::camera :optional NIL)
1456 (:index 2 :type int :optional T)))
1457 (:pause :swf-name "pause" :return-type void :declared-by flash.net::net-stream
1458 :args ())
1459 (:send :swf-name "send" :return-type void :declared-by flash.net::net-stream
1460 :args ((:index 1 :type string :optional NIL)))
1461 (:play :swf-name "play" :return-type void :declared-by flash.net::net-stream
1462 :args ())
1463 (:attach-audio :swf-name "attachAudio" :return-type void :declared-by flash.net::net-stream
1464 :args ((:index 1 :type flash.media::microphone :optional NIL)))
1465 (:toggle-pause :swf-name "togglePause" :return-type void :declared-by flash.net::net-stream
1466 :args ())
1467 (:resume :swf-name "resume" :return-type void :declared-by flash.net::net-stream
1468 :args ())
1469 (:publish :swf-name "publish" :return-type void :declared-by flash.net::net-stream
1470 :args ((:index 1 :type string :optional T)
1471 (:index 2 :type string :optional T)))
1472 (:receive-video-fps :swf-name "receiveVideoFPS" :return-type void :declared-by flash.net::net-stream
1473 :args ((:index 1 :type number :optional NIL)))
1474 (:seek :swf-name "seek" :return-type void :declared-by flash.net::net-stream
1475 :args ((:index 1 :type number :optional NIL)))
1476 (:receive-video :swf-name "receiveVideo" :return-type void :declared-by flash.net::net-stream
1477 :args ((:index 1 :type boolean :optional NIL)))
1478 (:close :swf-name "close" :return-type void :declared-by flash.net::net-stream
1479 :args ())
1480 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
1481 :args ((:index 1 :type string :optional NIL)))
1482 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
1483 :args ())
1484 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
1485 :args ((:index 1 :type string :optional NIL)
1486 (:index 2 :type function :optional NIL)
1487 (:index 3 :type boolean :optional T)))
1488 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
1489 :args ((:index 1 :type string :optional NIL)
1490 (:index 2 :type function :optional NIL)
1491 (:index 3 :type boolean :optional T)
1492 (:index 4 :type int :optional T)
1493 (:index 5 :type boolean :optional T)))
1494 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
1495 :args ((:index 1 :type string :optional NIL)))
1496 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
1497 :args ((:index 1 :type flash.events::event :optional NIL)))))
1499 (declare-swf-class flash.xml::-xml-node-type (object)
1500 :swf-name "flash.xml::XMLNodeType"
1501 ;; :supers (object)
1502 ;; = ("Object")
1503 ;; :interfaces NIL
1504 ;; = NIL
1505 :constants
1506 ((:+element-node+ :swf-name "ELEMENT_NODE" :type uint)
1507 (:+processing-instruct-io-n-node+ :swf-name "PROCESSING_INSTRUCTION_NODE" :type uint)
1508 (:+document-type-node+ :swf-name "DOCUMENT_TYPE_NODE" :type uint)
1509 (:+xml-declarat-io-n+ :swf-name "XML_DECLARATION" :type uint)
1510 (:+comment-node+ :swf-name "COMMENT_NODE" :type uint)
1511 (:+cdata-node+ :swf-name "CDATA_NODE" :type uint)
1512 (:+text-node+ :swf-name "TEXT_NODE" :type uint))
1513 :properties
1515 :methods
1518 (declare-swf-class flash.events::-ime-event (flash.events::text-event)
1519 :swf-name "flash.events::IMEEvent"
1520 ;; :supers (flash.events::text-event flash.events::event object)
1521 ;; = ("flash.events::TextEvent" "flash.events::Event" "Object")
1522 ;; :interfaces NIL
1523 ;; = NIL
1524 :constants
1525 ((:+ime-composit-io-n+ :swf-name "IME_COMPOSITION" :type string))
1526 :properties
1527 ((:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
1528 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
1529 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
1530 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
1531 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
1532 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
1533 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
1534 :methods
1535 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::-ime-event
1536 :args ())
1537 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::-ime-event
1538 :args ())
1539 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
1540 :args ())
1541 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
1542 :args ((:index 1 :type string :optional NIL)))
1543 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
1544 :args ())
1545 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
1546 :args ())
1547 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
1548 :args ())))
1550 (declare-swf-class flash.filters::bitmap-filter (object)
1551 :swf-name "flash.filters::BitmapFilter"
1552 ;; :supers (object)
1553 ;; = ("Object")
1554 ;; :interfaces NIL
1555 ;; = NIL
1556 :constants
1558 :properties
1560 :methods
1561 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::bitmap-filter
1562 :args ())))
1564 (declare-swf-class flash.filters::drop-shadow-filter (flash.filters::bitmap-filter)
1565 :swf-name "flash.filters::DropShadowFilter"
1566 ;; :supers (flash.filters::bitmap-filter object)
1567 ;; = ("flash.filters::BitmapFilter" "Object")
1568 ;; :interfaces NIL
1569 ;; = NIL
1570 :constants
1572 :properties
1573 ((:blur-y :swf-name "blurY" :type number :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1574 (:angle :swf-name "angle" :type number :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1575 (:hide-object :swf-name "hideObject" :type boolean :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1576 (:blur-x :swf-name "blurX" :type number :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1577 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1578 (:color :swf-name "color" :type uint :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1579 (:distance :swf-name "distance" :type number :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1580 (:inner :swf-name "inner" :type boolean :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1581 (:knockout :swf-name "knockout" :type boolean :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1582 (:strength :swf-name "strength" :type number :access :readwrite :declared-by flash.filters::drop-shadow-filter)
1583 (:quality :swf-name "quality" :type int :access :readwrite :declared-by flash.filters::drop-shadow-filter))
1584 :methods
1585 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::drop-shadow-filter
1586 :args ())))
1588 (declare-swf-class flash.utils::timer (flash.events::event-dispatcher)
1589 :swf-name "flash.utils::Timer"
1590 ;; :supers (flash.events::event-dispatcher object)
1591 ;; = ("flash.events::EventDispatcher" "Object")
1592 ;; :interfaces (flash.events::i-event-dispatcher)
1593 ;; = ("flash.events::IEventDispatcher")
1594 :constants
1596 :properties
1597 ((:delay :swf-name "delay" :type number :access :readwrite :declared-by flash.utils::timer)
1598 (:running :swf-name "running" :type boolean :access :readonly :declared-by flash.utils::timer)
1599 (:repeat-count :swf-name "repeatCount" :type int :access :readwrite :declared-by flash.utils::timer)
1600 (:current-count :swf-name "currentCount" :type int :access :readonly :declared-by flash.utils::timer))
1601 :methods
1602 ((:start :swf-name "start" :return-type void :declared-by flash.utils::timer
1603 :args ())
1604 (:stop :swf-name "stop" :return-type void :declared-by flash.utils::timer
1605 :args ())
1606 (:reset :swf-name "reset" :return-type void :declared-by flash.utils::timer
1607 :args ())
1608 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
1609 :args ((:index 1 :type string :optional NIL)))
1610 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
1611 :args ())
1612 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
1613 :args ((:index 1 :type string :optional NIL)
1614 (:index 2 :type function :optional NIL)
1615 (:index 3 :type boolean :optional T)))
1616 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
1617 :args ((:index 1 :type string :optional NIL)
1618 (:index 2 :type function :optional NIL)
1619 (:index 3 :type boolean :optional T)
1620 (:index 4 :type int :optional T)
1621 (:index 5 :type boolean :optional T)))
1622 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
1623 :args ((:index 1 :type string :optional NIL)))
1624 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
1625 :args ((:index 1 :type flash.events::event :optional NIL)))))
1627 (declare-swf-class flash.ui::keyboard (object)
1628 :swf-name "flash.ui::Keyboard"
1629 ;; :supers (object)
1630 ;; = ("Object")
1631 ;; :interfaces NIL
1632 ;; = NIL
1633 :constants
1634 ((:+numpad-2+ :swf-name "NUMPAD_2" :type uint)
1635 (:+delete+ :swf-name "DELETE" :type uint)
1636 (:+control+ :swf-name "CONTROL" :type uint)
1637 (:+up+ :swf-name "UP" :type uint)
1638 (:+tab+ :swf-name "TAB" :type uint)
1639 (:+numpad-1+ :swf-name "NUMPAD_1" :type uint)
1640 (:+space+ :swf-name "SPACE" :type uint)
1641 (:+left+ :swf-name "LEFT" :type uint)
1642 (:+caps-lock+ :swf-name "CAPS_LOCK" :type uint)
1643 (:+right+ :swf-name "RIGHT" :type uint)
1644 (:+shift+ :swf-name "SHIFT" :type uint)
1645 (:+insert+ :swf-name "INSERT" :type uint)
1646 (:+numpad-0+ :swf-name "NUMPAD_0" :type uint)
1647 (:+page-up+ :swf-name "PAGE_UP" :type uint)
1648 (:+f15+ :swf-name "F15" :type uint)
1649 (:+backspace+ :swf-name "BACKSPACE" :type uint)
1650 (:+page-down+ :swf-name "PAGE_DOWN" :type uint)
1651 (:+f13+ :swf-name "F13" :type uint)
1652 (:+home+ :swf-name "HOME" :type uint)
1653 (:+f12+ :swf-name "F12" :type uint)
1654 (:+numpad-subtract+ :swf-name "NUMPAD_SUBTRACT" :type uint)
1655 (:+numpad-enter+ :swf-name "NUMPAD_ENTER" :type uint)
1656 (:+f14+ :swf-name "F14" :type uint)
1657 (:+numpad-div-id-e+ :swf-name "NUMPAD_DIVIDE" :type uint)
1658 (:+f11+ :swf-name "F11" :type uint)
1659 (:+f9+ :swf-name "F9" :type uint)
1660 (:+f10+ :swf-name "F10" :type uint)
1661 (:+numpad-add+ :swf-name "NUMPAD_ADD" :type uint)
1662 (:+numpad-decimal+ :swf-name "NUMPAD_DECIMAL" :type uint)
1663 (:+f7+ :swf-name "F7" :type uint)
1664 (:+f8+ :swf-name "F8" :type uint)
1665 (:+numpad-9+ :swf-name "NUMPAD_9" :type uint)
1666 (:+f6+ :swf-name "F6" :type uint)
1667 (:+f5+ :swf-name "F5" :type uint)
1668 (:+numpad-multiply+ :swf-name "NUMPAD_MULTIPLY" :type uint)
1669 (:+f4+ :swf-name "F4" :type uint)
1670 (:+numpad-8+ :swf-name "NUMPAD_8" :type uint)
1671 (:+numpad-7+ :swf-name "NUMPAD_7" :type uint)
1672 (:+f2+ :swf-name "F2" :type uint)
1673 (:+f3+ :swf-name "F3" :type uint)
1674 (:+f1+ :swf-name "F1" :type uint)
1675 (:+numpad-6+ :swf-name "NUMPAD_6" :type uint)
1676 (:+escape+ :swf-name "ESCAPE" :type uint)
1677 (:+enter+ :swf-name "ENTER" :type uint)
1678 (:+numpad-5+ :swf-name "NUMPAD_5" :type uint)
1679 (:+end+ :swf-name "END" :type uint)
1680 (:+numpad-4+ :swf-name "NUMPAD_4" :type uint)
1681 (:+numpad-3+ :swf-name "NUMPAD_3" :type uint)
1682 (:+down+ :swf-name "DOWN" :type uint))
1683 :properties
1685 :methods
1688 (declare-swf-class flash.media::sound-mixer (object)
1689 :swf-name "flash.media::SoundMixer"
1690 ;; :supers (object)
1691 ;; = ("Object")
1692 ;; :interfaces NIL
1693 ;; = NIL
1694 :constants
1696 :properties
1698 :methods
1701 (declare-swf-class flash.display::bitmap-data (object)
1702 :swf-name "flash.display::BitmapData"
1703 ;; :supers (object)
1704 ;; = ("Object")
1705 ;; :interfaces (flash.display::i-bitmap-drawable)
1706 ;; = ("flash.display::IBitmapDrawable")
1707 :constants
1709 :properties
1710 ((:transparent :swf-name "transparent" :type boolean :access :readonly :declared-by flash.display::bitmap-data)
1711 (:rect :swf-name "rect" :type flash.geom::rectangle :access :readonly :declared-by flash.display::bitmap-data)
1712 (:width :swf-name "width" :type int :access :readonly :declared-by flash.display::bitmap-data)
1713 (:height :swf-name "height" :type int :access :readonly :declared-by flash.display::bitmap-data))
1714 :methods
1715 ((:set-pixel :swf-name "setPixel" :return-type void :declared-by flash.display::bitmap-data
1716 :args ((:index 1 :type int :optional NIL)
1717 (:index 2 :type int :optional NIL)
1718 (:index 3 :type uint :optional NIL)))
1719 (:get-pixel32 :swf-name "getPixel32" :return-type uint :declared-by flash.display::bitmap-data
1720 :args ((:index 1 :type int :optional NIL)
1721 (:index 2 :type int :optional NIL)))
1722 (:copy-pixels :swf-name "copyPixels" :return-type void :declared-by flash.display::bitmap-data
1723 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1724 (:index 2 :type flash.geom::rectangle :optional NIL)
1725 (:index 3 :type flash.geom::point :optional NIL)
1726 (:index 4 :type flash.display::bitmap-data :optional T)
1727 (:index 5 :type flash.geom::point :optional T)
1728 (:index 6 :type boolean :optional T)))
1729 (:noise :swf-name "noise" :return-type void :declared-by flash.display::bitmap-data
1730 :args ((:index 1 :type int :optional NIL)
1731 (:index 2 :type uint :optional T)
1732 (:index 3 :type uint :optional T)
1733 (:index 4 :type uint :optional T)
1734 (:index 5 :type boolean :optional T)))
1735 (:scroll :swf-name "scroll" :return-type void :declared-by flash.display::bitmap-data
1736 :args ((:index 1 :type int :optional NIL)
1737 (:index 2 :type int :optional NIL)))
1738 (:pixel-dissolve :swf-name "pixelDissolve" :return-type int :declared-by flash.display::bitmap-data
1739 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1740 (:index 2 :type flash.geom::rectangle :optional NIL)
1741 (:index 3 :type flash.geom::point :optional NIL)
1742 (:index 4 :type int :optional T)
1743 (:index 5 :type int :optional T)
1744 (:index 6 :type uint :optional T)))
1745 (:get-pixels :swf-name "getPixels" :return-type flash.utils::byte-array :declared-by flash.display::bitmap-data
1746 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
1747 (:merge :swf-name "merge" :return-type void :declared-by flash.display::bitmap-data
1748 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1749 (:index 2 :type flash.geom::rectangle :optional NIL)
1750 (:index 3 :type flash.geom::point :optional NIL)
1751 (:index 4 :type uint :optional NIL)
1752 (:index 5 :type uint :optional NIL)
1753 (:index 6 :type uint :optional NIL)
1754 (:index 7 :type uint :optional NIL)))
1755 (:copy-channel :swf-name "copyChannel" :return-type void :declared-by flash.display::bitmap-data
1756 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1757 (:index 2 :type flash.geom::rectangle :optional NIL)
1758 (:index 3 :type flash.geom::point :optional NIL)
1759 (:index 4 :type uint :optional NIL)
1760 (:index 5 :type uint :optional NIL)))
1761 (:unlock :swf-name "unlock" :return-type void :declared-by flash.display::bitmap-data
1762 :args ((:index 1 :type flash.geom::rectangle :optional T)))
1763 (:threshold :swf-name "threshold" :return-type uint :declared-by flash.display::bitmap-data
1764 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1765 (:index 2 :type flash.geom::rectangle :optional NIL)
1766 (:index 3 :type flash.geom::point :optional NIL)
1767 (:index 4 :type string :optional NIL)
1768 (:index 5 :type uint :optional NIL)
1769 (:index 6 :type uint :optional T)
1770 (:index 7 :type uint :optional T)
1771 (:index 8 :type boolean :optional T)))
1772 (:palette-map :swf-name "paletteMap" :return-type void :declared-by flash.display::bitmap-data
1773 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1774 (:index 2 :type flash.geom::rectangle :optional NIL)
1775 (:index 3 :type flash.geom::point :optional NIL)
1776 (:index 4 :type array :optional T)
1777 (:index 5 :type array :optional T)
1778 (:index 6 :type array :optional T)
1779 (:index 7 :type array :optional T)))
1780 (:color-transform :swf-name "colorTransform" :return-type void :declared-by flash.display::bitmap-data
1781 :args ((:index 1 :type flash.geom::rectangle :optional NIL)
1782 (:index 2 :type flash.geom::color-transform :optional NIL)))
1783 (:lock :swf-name "lock" :return-type void :declared-by flash.display::bitmap-data
1784 :args ())
1785 (:perlin-noise :swf-name "perlinNoise" :return-type void :declared-by flash.display::bitmap-data
1786 :args ((:index 1 :type number :optional NIL)
1787 (:index 2 :type number :optional NIL)
1788 (:index 3 :type uint :optional NIL)
1789 (:index 4 :type int :optional NIL)
1790 (:index 5 :type boolean :optional NIL)
1791 (:index 6 :type boolean :optional NIL)
1792 (:index 7 :type uint :optional T)
1793 (:index 8 :type boolean :optional T)
1794 (:index 9 :type array :optional T)))
1795 (:compare :swf-name "compare" :return-type object :declared-by flash.display::bitmap-data
1796 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)))
1797 (:generate-filter-rect :swf-name "generateFilterRect" :return-type flash.geom::rectangle :declared-by flash.display::bitmap-data
1798 :args ((:index 1 :type flash.geom::rectangle :optional NIL)
1799 (:index 2 :type flash.filters::bitmap-filter :optional NIL)))
1800 (:get-pixel :swf-name "getPixel" :return-type uint :declared-by flash.display::bitmap-data
1801 :args ((:index 1 :type int :optional NIL)
1802 (:index 2 :type int :optional NIL)))
1803 (:clone :swf-name "clone" :return-type flash.display::bitmap-data :declared-by flash.display::bitmap-data
1804 :args ())
1805 (:fill-rect :swf-name "fillRect" :return-type void :declared-by flash.display::bitmap-data
1806 :args ((:index 1 :type flash.geom::rectangle :optional NIL)
1807 (:index 2 :type uint :optional NIL)))
1808 (:set-pixel32 :swf-name "setPixel32" :return-type void :declared-by flash.display::bitmap-data
1809 :args ((:index 1 :type int :optional NIL)
1810 (:index 2 :type int :optional NIL)
1811 (:index 3 :type uint :optional NIL)))
1812 (:apply-filter :swf-name "applyFilter" :return-type void :declared-by flash.display::bitmap-data
1813 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
1814 (:index 2 :type flash.geom::rectangle :optional NIL)
1815 (:index 3 :type flash.geom::point :optional NIL)
1816 (:index 4 :type flash.filters::bitmap-filter :optional NIL)))
1817 (:flood-fill :swf-name "floodFill" :return-type void :declared-by flash.display::bitmap-data
1818 :args ((:index 1 :type int :optional NIL)
1819 (:index 2 :type int :optional NIL)
1820 (:index 3 :type uint :optional NIL)))
1821 (:set-pixels :swf-name "setPixels" :return-type void :declared-by flash.display::bitmap-data
1822 :args ((:index 1 :type flash.geom::rectangle :optional NIL)
1823 (:index 2 :type flash.utils::byte-array :optional NIL)))
1824 (:draw :swf-name "draw" :return-type void :declared-by flash.display::bitmap-data
1825 :args ((:index 1 :type flash.display::i-bitmap-drawable :optional NIL)
1826 (:index 2 :type flash.geom::matrix :optional T)
1827 (:index 3 :type flash.geom::color-transform :optional T)
1828 (:index 4 :type string :optional T)
1829 (:index 5 :type flash.geom::rectangle :optional T)
1830 (:index 6 :type boolean :optional T)))
1831 (:hit-test :swf-name "hitTest" :return-type boolean :declared-by flash.display::bitmap-data
1832 :args ((:index 1 :type flash.geom::point :optional NIL)
1833 (:index 2 :type uint :optional NIL)
1834 (:index 3 :type object :optional NIL)
1835 (:index 4 :type flash.geom::point :optional T)
1836 (:index 5 :type uint :optional T)))
1837 (:get-color-bounds-rect :swf-name "getColorBoundsRect" :return-type flash.geom::rectangle :declared-by flash.display::bitmap-data
1838 :args ((:index 1 :type uint :optional NIL)
1839 (:index 2 :type uint :optional NIL)
1840 (:index 3 :type boolean :optional T)))
1841 (:dispose :swf-name "dispose" :return-type void :declared-by flash.display::bitmap-data
1842 :args ())))
1844 (declare-swf-class flash.text::text-field-type (object)
1845 :swf-name "flash.text::TextFieldType"
1846 ;; :supers (object)
1847 ;; = ("Object")
1848 ;; :interfaces NIL
1849 ;; = NIL
1850 :constants
1851 ((:+input+ :swf-name "INPUT" :type string)
1852 (:+dynamic+ :swf-name "DYNAMIC" :type string))
1853 :properties
1855 :methods
1858 (declare-swf-class flash.events::net-filter-event (flash.events::event)
1859 :swf-name "flash.events::NetFilterEvent"
1860 ;; :supers (flash.events::event object)
1861 ;; = ("flash.events::Event" "Object")
1862 ;; :interfaces NIL
1863 ;; = NIL
1864 :constants
1866 :properties
1867 ((:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
1868 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
1869 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
1870 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
1871 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
1872 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
1873 :methods
1874 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::net-filter-event
1875 :args ())
1876 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::net-filter-event
1877 :args ())
1878 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
1879 :args ())
1880 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
1881 :args ((:index 1 :type string :optional NIL)))
1882 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
1883 :args ())
1884 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
1885 :args ())
1886 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
1887 :args ())))
1889 (declare-swf-class flash.display::gradient-type (object)
1890 :swf-name "flash.display::GradientType"
1891 ;; :supers (object)
1892 ;; = ("Object")
1893 ;; :interfaces NIL
1894 ;; = NIL
1895 :constants
1896 ((:+linear+ :swf-name "LINEAR" :type string)
1897 (:+radial+ :swf-name "RADIAL" :type string))
1898 :properties
1900 :methods
1903 (declare-swf-class flash.net::-url-request-method (object)
1904 :swf-name "flash.net::URLRequestMethod"
1905 ;; :supers (object)
1906 ;; = ("Object")
1907 ;; :interfaces NIL
1908 ;; = NIL
1909 :constants
1910 ((:+post+ :swf-name "POST" :type string)
1911 (:+get+ :swf-name "GET" :type string))
1912 :properties
1914 :methods
1917 (declare-swf-class flash.accessibility::accessibility-implementation (object)
1918 :swf-name "flash.accessibility::AccessibilityImplementation"
1919 ;; :supers (object)
1920 ;; = ("Object")
1921 ;; :interfaces NIL
1922 ;; = NIL
1923 :constants
1925 :properties
1927 :methods
1928 ((:get-acc-role :swf-name "get_accRole" :return-type uint :declared-by flash.accessibility::accessibility-implementation
1929 :args ((:index 1 :type uint :optional NIL)))
1930 (:get-acc-default-action :swf-name "get_accDefaultAction" :return-type string :declared-by flash.accessibility::accessibility-implementation
1931 :args ((:index 1 :type uint :optional NIL)))
1932 (:get-acc-name :swf-name "get_accName" :return-type string :declared-by flash.accessibility::accessibility-implementation
1933 :args ((:index 1 :type uint :optional NIL)))
1934 (:acc-do-default-action :swf-name "accDoDefaultAction" :return-type void :declared-by flash.accessibility::accessibility-implementation
1935 :args ((:index 1 :type uint :optional NIL)))
1936 (:get-acc-focus :swf-name "get_accFocus" :return-type uint :declared-by flash.accessibility::accessibility-implementation
1937 :args ())
1938 (:acc-select :swf-name "accSelect" :return-type void :declared-by flash.accessibility::accessibility-implementation
1939 :args ((:index 1 :type uint :optional NIL)
1940 (:index 2 :type uint :optional NIL)))
1941 (:get-acc-value :swf-name "get_accValue" :return-type string :declared-by flash.accessibility::accessibility-implementation
1942 :args ((:index 1 :type uint :optional NIL)))
1943 (:acc-location :swf-name "accLocation" :return-type * :declared-by flash.accessibility::accessibility-implementation
1944 :args ((:index 1 :type uint :optional NIL)))
1945 (:is-labeled-by :swf-name "isLabeledBy" :return-type boolean :declared-by flash.accessibility::accessibility-implementation
1946 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
1947 (:get-acc-selection :swf-name "get_accSelection" :return-type array :declared-by flash.accessibility::accessibility-implementation
1948 :args ())
1949 (:get-acc-state :swf-name "get_accState" :return-type uint :declared-by flash.accessibility::accessibility-implementation
1950 :args ((:index 1 :type uint :optional NIL)))
1951 (:get-child-id-array :swf-name "getChildIDArray" :return-type array :declared-by flash.accessibility::accessibility-implementation
1952 :args ())))
1954 (declare-swf-class flash.media::camera (flash.events::event-dispatcher)
1955 :swf-name "flash.media::Camera"
1956 ;; :supers (flash.events::event-dispatcher object)
1957 ;; = ("flash.events::EventDispatcher" "Object")
1958 ;; :interfaces (flash.events::i-event-dispatcher)
1959 ;; = ("flash.events::IEventDispatcher")
1960 :constants
1962 :properties
1963 ((:loopback :swf-name "loopback" :type boolean :access :readonly :declared-by flash.media::camera)
1964 (:bandwidth :swf-name "bandwidth" :type int :access :readonly :declared-by flash.media::camera)
1965 (:motion-timeout :swf-name "motionTimeout" :type int :access :readonly :declared-by flash.media::camera)
1966 (:muted :swf-name "muted" :type boolean :access :readonly :declared-by flash.media::camera)
1967 (:fps :swf-name "fps" :type number :access :readonly :declared-by flash.media::camera)
1968 (:index :swf-name "index" :type int :access :readonly :declared-by flash.media::camera)
1969 (:key-frame-interval :swf-name "keyFrameInterval" :type int :access :readonly :declared-by flash.media::camera)
1970 (:activity-level :swf-name "activityLevel" :type number :access :readonly :declared-by flash.media::camera)
1971 (:width :swf-name "width" :type int :access :readonly :declared-by flash.media::camera)
1972 (:name :swf-name "name" :type string :access :readonly :declared-by flash.media::camera)
1973 (:height :swf-name "height" :type int :access :readonly :declared-by flash.media::camera)
1974 (:motion-level :swf-name "motionLevel" :type int :access :readonly :declared-by flash.media::camera)
1975 (:quality :swf-name "quality" :type int :access :readonly :declared-by flash.media::camera)
1976 (:current-fps :swf-name "currentFPS" :type number :access :readonly :declared-by flash.media::camera))
1977 :methods
1978 ((:set-quality :swf-name "setQuality" :return-type void :declared-by flash.media::camera
1979 :args ((:index 1 :type int :optional NIL)
1980 (:index 2 :type int :optional NIL)))
1981 (:set-key-frame-interval :swf-name "setKeyFrameInterval" :return-type void :declared-by flash.media::camera
1982 :args ((:index 1 :type int :optional NIL)))
1983 (:set-motion-level :swf-name "setMotionLevel" :return-type void :declared-by flash.media::camera
1984 :args ((:index 1 :type int :optional NIL)
1985 (:index 2 :type int :optional T)))
1986 (:set-mode :swf-name "setMode" :return-type void :declared-by flash.media::camera
1987 :args ((:index 1 :type int :optional NIL)
1988 (:index 2 :type int :optional NIL)
1989 (:index 3 :type number :optional NIL)
1990 (:index 4 :type boolean :optional T)))
1991 (:set-cursor :swf-name "setCursor" :return-type void :declared-by flash.media::camera
1992 :args ((:index 1 :type boolean :optional NIL)))
1993 (:set-loopback :swf-name "setLoopback" :return-type void :declared-by flash.media::camera
1994 :args ((:index 1 :type boolean :optional T)))
1995 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
1996 :args ((:index 1 :type string :optional NIL)))
1997 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
1998 :args ())
1999 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2000 :args ((:index 1 :type string :optional NIL)
2001 (:index 2 :type function :optional NIL)
2002 (:index 3 :type boolean :optional T)))
2003 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2004 :args ((:index 1 :type string :optional NIL)
2005 (:index 2 :type function :optional NIL)
2006 (:index 3 :type boolean :optional T)
2007 (:index 4 :type int :optional T)
2008 (:index 5 :type boolean :optional T)))
2009 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2010 :args ((:index 1 :type string :optional NIL)))
2011 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2012 :args ((:index 1 :type flash.events::event :optional NIL)))))
2014 (declare-swf-class flash.display::-avm1movie (flash.display::display-object)
2015 :swf-name "flash.display::AVM1Movie"
2016 ;; :supers (flash.display::display-object flash.events::event-dispatcher
2017 ;; object)
2018 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
2019 ;; "Object")
2020 ;; :interfaces (flash.display::i-bitmap-drawable
2021 ;; flash.events::i-event-dispatcher)
2022 ;; = ("flash.display::IBitmapDrawable"
2023 ;; "flash.events::IEventDispatcher")
2024 :constants
2026 :properties
2027 ((:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
2028 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
2029 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
2030 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
2031 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
2032 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
2033 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
2034 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
2035 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
2036 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
2037 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
2038 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
2039 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
2040 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
2041 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
2042 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
2043 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
2044 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
2045 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
2046 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
2047 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
2048 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
2049 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
2050 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
2051 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
2052 :methods
2053 ((:call :swf-name "call" :return-type * :declared-by flash.display::-avm1movie
2054 :args ((:index 1 :type string :optional NIL)))
2055 (:add-callback :swf-name "addCallback" :return-type void :declared-by flash.display::-avm1movie
2056 :args ((:index 1 :type string :optional NIL)
2057 (:index 2 :type function :optional NIL)))
2058 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
2059 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2060 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
2061 :args ((:index 1 :type flash.geom::point :optional NIL)))
2062 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
2063 :args ((:index 1 :type flash.geom::point :optional NIL)))
2064 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
2065 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2066 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
2067 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2068 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
2069 :args ((:index 1 :type number :optional NIL)
2070 (:index 2 :type number :optional NIL)
2071 (:index 3 :type boolean :optional T)))
2072 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2073 :args ((:index 1 :type string :optional NIL)))
2074 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2075 :args ())
2076 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2077 :args ((:index 1 :type string :optional NIL)
2078 (:index 2 :type function :optional NIL)
2079 (:index 3 :type boolean :optional T)))
2080 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2081 :args ((:index 1 :type string :optional NIL)
2082 (:index 2 :type function :optional NIL)
2083 (:index 3 :type boolean :optional T)
2084 (:index 4 :type int :optional T)
2085 (:index 5 :type boolean :optional T)))
2086 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2087 :args ((:index 1 :type string :optional NIL)))
2088 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2089 :args ((:index 1 :type flash.events::event :optional NIL)))))
2091 (declare-swf-class flash.filters::displacement-map-filter-mode (object)
2092 :swf-name "flash.filters::DisplacementMapFilterMode"
2093 ;; :supers (object)
2094 ;; = ("Object")
2095 ;; :interfaces NIL
2096 ;; = NIL
2097 :constants
2098 ((:+clamp+ :swf-name "CLAMP" :type string)
2099 (:+ignore+ :swf-name "IGNORE" :type string)
2100 (:+color+ :swf-name "COLOR" :type string)
2101 (:+wrap+ :swf-name "WRAP" :type string))
2102 :properties
2104 :methods
2107 (declare-swf-class flash.filters::gradient-glow-filter (flash.filters::bitmap-filter)
2108 :swf-name "flash.filters::GradientGlowFilter"
2109 ;; :supers (flash.filters::bitmap-filter object)
2110 ;; = ("flash.filters::BitmapFilter" "Object")
2111 ;; :interfaces NIL
2112 ;; = NIL
2113 :constants
2115 :properties
2116 ((:blur-y :swf-name "blurY" :type number :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2117 (:angle :swf-name "angle" :type number :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2118 (:blur-x :swf-name "blurX" :type number :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2119 (:alphas :swf-name "alphas" :type array :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2120 (:colors :swf-name "colors" :type array :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2121 (:quality :swf-name "quality" :type int :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2122 (:type :swf-name "type" :type string :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2123 (:knockout :swf-name "knockout" :type boolean :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2124 (:ratios :swf-name "ratios" :type array :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2125 (:strength :swf-name "strength" :type number :access :readwrite :declared-by flash.filters::gradient-glow-filter)
2126 (:distance :swf-name "distance" :type number :access :readwrite :declared-by flash.filters::gradient-glow-filter))
2127 :methods
2128 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::gradient-glow-filter
2129 :args ())))
2131 (declare-swf-class flash.display::joint-style (object)
2132 :swf-name "flash.display::JointStyle"
2133 ;; :supers (object)
2134 ;; = ("Object")
2135 ;; :interfaces NIL
2136 ;; = NIL
2137 :constants
2138 ((:+miter+ :swf-name "MITER" :type string)
2139 (:+round+ :swf-name "ROUND" :type string)
2140 (:+bevel+ :swf-name "BEVEL" :type string))
2141 :properties
2143 :methods
2146 (declare-swf-class flash.net::local-connection (flash.events::event-dispatcher)
2147 :swf-name "flash.net::LocalConnection"
2148 ;; :supers (flash.events::event-dispatcher object)
2149 ;; = ("flash.events::EventDispatcher" "Object")
2150 ;; :interfaces (flash.events::i-event-dispatcher)
2151 ;; = ("flash.events::IEventDispatcher")
2152 :constants
2154 :properties
2155 ((:client :swf-name "client" :type object :access :readwrite :declared-by flash.net::local-connection)
2156 (:domain :swf-name "domain" :type string :access :readonly :declared-by flash.net::local-connection))
2157 :methods
2158 ((:connect :swf-name "connect" :return-type void :declared-by flash.net::local-connection
2159 :args ((:index 1 :type string :optional NIL)))
2160 (:send :swf-name "send" :return-type void :declared-by flash.net::local-connection
2161 :args ((:index 1 :type string :optional NIL)
2162 (:index 2 :type string :optional NIL)))
2163 (:allow-insecure-domain :swf-name "allowInsecureDomain" :return-type void :declared-by flash.net::local-connection
2164 :args ())
2165 (:allow-domain :swf-name "allowDomain" :return-type void :declared-by flash.net::local-connection
2166 :args ())
2167 (:close :swf-name "close" :return-type void :declared-by flash.net::local-connection
2168 :args ())
2169 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2170 :args ((:index 1 :type string :optional NIL)))
2171 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2172 :args ())
2173 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2174 :args ((:index 1 :type string :optional NIL)
2175 (:index 2 :type function :optional NIL)
2176 (:index 3 :type boolean :optional T)))
2177 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2178 :args ((:index 1 :type string :optional NIL)
2179 (:index 2 :type function :optional NIL)
2180 (:index 3 :type boolean :optional T)
2181 (:index 4 :type int :optional T)
2182 (:index 5 :type boolean :optional T)))
2183 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2184 :args ((:index 1 :type string :optional NIL)))
2185 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2186 :args ((:index 1 :type flash.events::event :optional NIL)))))
2188 (declare-swf-class flash.net::-url-request (object)
2189 :swf-name "flash.net::URLRequest"
2190 ;; :supers (object)
2191 ;; = ("Object")
2192 ;; :interfaces NIL
2193 ;; = NIL
2194 :constants
2196 :properties
2197 ((:data :swf-name "data" :type object :access :readwrite :declared-by flash.net::-url-request)
2198 (:digest :swf-name "digest" :type string :access :readwrite :declared-by flash.net::-url-request)
2199 (:url :swf-name "url" :type string :access :readwrite :declared-by flash.net::-url-request)
2200 (:request-headers :swf-name "requestHeaders" :type array :access :readwrite :declared-by flash.net::-url-request)
2201 (:content-type :swf-name "contentType" :type string :access :readwrite :declared-by flash.net::-url-request)
2202 (:method :swf-name "method" :type string :access :readwrite :declared-by flash.net::-url-request))
2203 :methods
2206 (declare-swf-class flash.events::-io-error-event (flash.events::error-event)
2207 :swf-name "flash.events::IOErrorEvent"
2208 ;; :supers (flash.events::error-event flash.events::text-event
2209 ;; flash.events::event object)
2210 ;; = ("flash.events::ErrorEvent" "flash.events::TextEvent"
2211 ;; "flash.events::Event" "Object")
2212 ;; :interfaces NIL
2213 ;; = NIL
2214 :constants
2215 ((:+network-error+ :swf-name "NETWORK_ERROR" :type string)
2216 (:+io-error+ :swf-name "IO_ERROR" :type string)
2217 (:+disk-error+ :swf-name "DISK_ERROR" :type string)
2218 (:+verify-error+ :swf-name "VERIFY_ERROR" :type string))
2219 :properties
2220 ((:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
2221 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
2222 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
2223 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
2224 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
2225 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
2226 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
2227 :methods
2228 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::-io-error-event
2229 :args ())
2230 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::-io-error-event
2231 :args ())
2232 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
2233 :args ())
2234 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
2235 :args ((:index 1 :type string :optional NIL)))
2236 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
2237 :args ())
2238 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
2239 :args ())
2240 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
2241 :args ())))
2243 (declare-swf-class flash.filters::gradient-bevel-filter (flash.filters::bitmap-filter)
2244 :swf-name "flash.filters::GradientBevelFilter"
2245 ;; :supers (flash.filters::bitmap-filter object)
2246 ;; = ("flash.filters::BitmapFilter" "Object")
2247 ;; :interfaces NIL
2248 ;; = NIL
2249 :constants
2251 :properties
2252 ((:blur-y :swf-name "blurY" :type number :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2253 (:angle :swf-name "angle" :type number :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2254 (:blur-x :swf-name "blurX" :type number :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2255 (:alphas :swf-name "alphas" :type array :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2256 (:colors :swf-name "colors" :type array :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2257 (:quality :swf-name "quality" :type int :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2258 (:type :swf-name "type" :type string :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2259 (:knockout :swf-name "knockout" :type boolean :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2260 (:ratios :swf-name "ratios" :type array :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2261 (:strength :swf-name "strength" :type number :access :readwrite :declared-by flash.filters::gradient-bevel-filter)
2262 (:distance :swf-name "distance" :type number :access :readwrite :declared-by flash.filters::gradient-bevel-filter))
2263 :methods
2264 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::gradient-bevel-filter
2265 :args ())))
2267 (declare-swf-class flash.events::focus-event (flash.events::event)
2268 :swf-name "flash.events::FocusEvent"
2269 ;; :supers (flash.events::event object)
2270 ;; = ("flash.events::Event" "Object")
2271 ;; :interfaces NIL
2272 ;; = NIL
2273 :constants
2274 ((:+focus-out+ :swf-name "FOCUS_OUT" :type string)
2275 (:+focus-in+ :swf-name "FOCUS_IN" :type string)
2276 (:+mouse-focus-change+ :swf-name "MOUSE_FOCUS_CHANGE" :type string)
2277 (:+key-focus-change+ :swf-name "KEY_FOCUS_CHANGE" :type string))
2278 :properties
2279 ((:shift-key :swf-name "shiftKey" :type boolean :access :readwrite :declared-by flash.events::focus-event)
2280 (:related-object :swf-name "relatedObject" :type flash.display::interactive-object :access :readwrite :declared-by flash.events::focus-event)
2281 (:key-code :swf-name "keyCode" :type uint :access :readwrite :declared-by flash.events::focus-event)
2282 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
2283 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
2284 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
2285 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
2286 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
2287 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
2288 :methods
2289 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::focus-event
2290 :args ())
2291 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::focus-event
2292 :args ())
2293 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
2294 :args ())
2295 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
2296 :args ((:index 1 :type string :optional NIL)))
2297 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
2298 :args ())
2299 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
2300 :args ())
2301 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
2302 :args ())))
2304 (declare-swf-class flash.display::bitmap-data-channel (object)
2305 :swf-name "flash.display::BitmapDataChannel"
2306 ;; :supers (object)
2307 ;; = ("Object")
2308 ;; :interfaces NIL
2309 ;; = NIL
2310 :constants
2311 ((:+red+ :swf-name "RED" :type uint)
2312 (:+alpha+ :swf-name "ALPHA" :type uint)
2313 (:+green+ :swf-name "GREEN" :type uint)
2314 (:+blue+ :swf-name "BLUE" :type uint))
2315 :properties
2317 :methods
2320 (declare-swf-class flash.display::interactive-object (flash.display::display-object)
2321 :swf-name "flash.display::InteractiveObject"
2322 ;; :supers (flash.display::display-object flash.events::event-dispatcher
2323 ;; object)
2324 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
2325 ;; "Object")
2326 ;; :interfaces (flash.display::i-bitmap-drawable
2327 ;; flash.events::i-event-dispatcher)
2328 ;; = ("flash.display::IBitmapDrawable"
2329 ;; "flash.events::IEventDispatcher")
2330 :constants
2332 :properties
2333 ((:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
2334 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
2335 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
2336 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
2337 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
2338 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
2339 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
2340 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
2341 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
2342 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
2343 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
2344 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
2345 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
2346 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
2347 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
2348 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
2349 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
2350 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
2351 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
2352 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
2353 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
2354 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
2355 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
2356 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
2357 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
2358 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
2359 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
2360 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
2361 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
2362 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
2363 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
2364 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
2365 :methods
2366 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
2367 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2368 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
2369 :args ((:index 1 :type flash.geom::point :optional NIL)))
2370 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
2371 :args ((:index 1 :type flash.geom::point :optional NIL)))
2372 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
2373 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2374 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
2375 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2376 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
2377 :args ((:index 1 :type number :optional NIL)
2378 (:index 2 :type number :optional NIL)
2379 (:index 3 :type boolean :optional T)))
2380 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2381 :args ((:index 1 :type string :optional NIL)))
2382 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2383 :args ())
2384 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2385 :args ((:index 1 :type string :optional NIL)
2386 (:index 2 :type function :optional NIL)
2387 (:index 3 :type boolean :optional T)))
2388 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2389 :args ((:index 1 :type string :optional NIL)
2390 (:index 2 :type function :optional NIL)
2391 (:index 3 :type boolean :optional T)
2392 (:index 4 :type int :optional T)
2393 (:index 5 :type boolean :optional T)))
2394 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2395 :args ((:index 1 :type string :optional NIL)))
2396 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2397 :args ((:index 1 :type flash.events::event :optional NIL)))))
2399 (declare-swf-class flash.ui::context-menu (flash.events::event-dispatcher)
2400 :swf-name "flash.ui::ContextMenu"
2401 ;; :supers (flash.events::event-dispatcher object)
2402 ;; = ("flash.events::EventDispatcher" "Object")
2403 ;; :interfaces (flash.events::i-event-dispatcher)
2404 ;; = ("flash.events::IEventDispatcher")
2405 :constants
2407 :properties
2408 ((:custom-items :swf-name "customItems" :type array :access :readwrite :declared-by flash.ui::context-menu)
2409 (:built-in-items :swf-name "builtInItems" :type flash.ui::context-menu-built-in-items :access :readwrite :declared-by flash.ui::context-menu))
2410 :methods
2411 ((:hide-built-in-items :swf-name "hideBuiltInItems" :return-type void :declared-by flash.ui::context-menu
2412 :args ())
2413 (:clone :swf-name "clone" :return-type flash.ui::context-menu :declared-by flash.ui::context-menu
2414 :args ())
2415 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2416 :args ((:index 1 :type string :optional NIL)))
2417 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2418 :args ())
2419 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2420 :args ((:index 1 :type string :optional NIL)
2421 (:index 2 :type function :optional NIL)
2422 (:index 3 :type boolean :optional T)))
2423 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2424 :args ((:index 1 :type string :optional NIL)
2425 (:index 2 :type function :optional NIL)
2426 (:index 3 :type boolean :optional T)
2427 (:index 4 :type int :optional T)
2428 (:index 5 :type boolean :optional T)))
2429 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2430 :args ((:index 1 :type string :optional NIL)))
2431 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2432 :args ((:index 1 :type flash.events::event :optional NIL)))))
2434 (declare-swf-class flash.display::loader-info (flash.events::event-dispatcher)
2435 :swf-name "flash.display::LoaderInfo"
2436 ;; :supers (flash.events::event-dispatcher object)
2437 ;; = ("flash.events::EventDispatcher" "Object")
2438 ;; :interfaces (flash.events::i-event-dispatcher)
2439 ;; = ("flash.events::IEventDispatcher")
2440 :constants
2442 :properties
2443 ((:bytes-loaded :swf-name "bytesLoaded" :type uint :access :readonly :declared-by flash.display::loader-info)
2444 (:content :swf-name "content" :type flash.display::display-object :access :readonly :declared-by flash.display::loader-info)
2445 (:same-domain :swf-name "sameDomain" :type boolean :access :readonly :declared-by flash.display::loader-info)
2446 (:loader-url :swf-name "loaderURL" :type string :access :readonly :declared-by flash.display::loader-info)
2447 (:application-domain :swf-name "applicationDomain" :type flash.system::application-domain :access :readonly :declared-by flash.display::loader-info)
2448 (:shared-events :swf-name "sharedEvents" :type flash.events::event-dispatcher :access :readonly :declared-by flash.display::loader-info)
2449 (:bytes :swf-name "bytes" :type flash.utils::byte-array :access :readonly :declared-by flash.display::loader-info)
2450 (:frame-rate :swf-name "frameRate" :type number :access :readonly :declared-by flash.display::loader-info)
2451 (:loader :swf-name "loader" :type flash.display::loader :access :readonly :declared-by flash.display::loader-info)
2452 (:parameters :swf-name "parameters" :type object :access :readonly :declared-by flash.display::loader-info)
2453 (:child-allows-parent :swf-name "childAllowsParent" :type boolean :access :readonly :declared-by flash.display::loader-info)
2454 (:height :swf-name "height" :type int :access :readonly :declared-by flash.display::loader-info)
2455 (:content-type :swf-name "contentType" :type string :access :readonly :declared-by flash.display::loader-info)
2456 (:url :swf-name "url" :type string :access :readonly :declared-by flash.display::loader-info)
2457 (:action-script-version :swf-name "actionScriptVersion" :type uint :access :readonly :declared-by flash.display::loader-info)
2458 (:parent-allows-child :swf-name "parentAllowsChild" :type boolean :access :readonly :declared-by flash.display::loader-info)
2459 (:bytes-total :swf-name "bytesTotal" :type uint :access :readonly :declared-by flash.display::loader-info)
2460 (:swf-version :swf-name "swfVersion" :type uint :access :readonly :declared-by flash.display::loader-info)
2461 (:width :swf-name "width" :type int :access :readonly :declared-by flash.display::loader-info))
2462 :methods
2463 ((:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.display::loader-info
2464 :args ((:index 1 :type flash.events::event :optional NIL)))
2465 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2466 :args ((:index 1 :type string :optional NIL)))
2467 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2468 :args ())
2469 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2470 :args ((:index 1 :type string :optional NIL)
2471 (:index 2 :type function :optional NIL)
2472 (:index 3 :type boolean :optional T)))
2473 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2474 :args ((:index 1 :type string :optional NIL)
2475 (:index 2 :type function :optional NIL)
2476 (:index 3 :type boolean :optional T)
2477 (:index 4 :type int :optional T)
2478 (:index 5 :type boolean :optional T)))
2479 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2480 :args ((:index 1 :type string :optional NIL)))))
2482 (declare-swf-class flash.display::shape (flash.display::display-object)
2483 :swf-name "flash.display::Shape"
2484 ;; :supers (flash.display::display-object flash.events::event-dispatcher
2485 ;; object)
2486 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
2487 ;; "Object")
2488 ;; :interfaces (flash.display::i-bitmap-drawable
2489 ;; flash.events::i-event-dispatcher)
2490 ;; = ("flash.display::IBitmapDrawable"
2491 ;; "flash.events::IEventDispatcher")
2492 :constants
2494 :properties
2495 ((:graphics :swf-name "graphics" :type flash.display::graphics :access :readonly :declared-by flash.display::shape)
2496 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
2497 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
2498 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
2499 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
2500 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
2501 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
2502 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
2503 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
2504 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
2505 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
2506 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
2507 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
2508 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
2509 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
2510 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
2511 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
2512 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
2513 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
2514 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
2515 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
2516 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
2517 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
2518 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
2519 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
2520 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
2521 :methods
2522 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
2523 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2524 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
2525 :args ((:index 1 :type flash.geom::point :optional NIL)))
2526 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
2527 :args ((:index 1 :type flash.geom::point :optional NIL)))
2528 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
2529 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2530 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
2531 :args ((:index 1 :type flash.display::display-object :optional NIL)))
2532 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
2533 :args ((:index 1 :type number :optional NIL)
2534 (:index 2 :type number :optional NIL)
2535 (:index 3 :type boolean :optional T)))
2536 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2537 :args ((:index 1 :type string :optional NIL)))
2538 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2539 :args ())
2540 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2541 :args ((:index 1 :type string :optional NIL)
2542 (:index 2 :type function :optional NIL)
2543 (:index 3 :type boolean :optional T)))
2544 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2545 :args ((:index 1 :type string :optional NIL)
2546 (:index 2 :type function :optional NIL)
2547 (:index 3 :type boolean :optional T)
2548 (:index 4 :type int :optional T)
2549 (:index 5 :type boolean :optional T)))
2550 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2551 :args ((:index 1 :type string :optional NIL)))
2552 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2553 :args ((:index 1 :type flash.events::event :optional NIL)))))
2555 (declare-swf-class flash.events::sync-event (flash.events::event)
2556 :swf-name "flash.events::SyncEvent"
2557 ;; :supers (flash.events::event object)
2558 ;; = ("flash.events::Event" "Object")
2559 ;; :interfaces NIL
2560 ;; = NIL
2561 :constants
2562 ((:+sync+ :swf-name "SYNC" :type string))
2563 :properties
2564 ((:change-list :swf-name "changeList" :type array :access :readwrite :declared-by flash.events::sync-event)
2565 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
2566 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
2567 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
2568 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
2569 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
2570 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
2571 :methods
2572 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::sync-event
2573 :args ())
2574 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::sync-event
2575 :args ())
2576 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
2577 :args ())
2578 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
2579 :args ((:index 1 :type string :optional NIL)))
2580 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
2581 :args ())
2582 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
2583 :args ())
2584 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
2585 :args ())))
2587 (declare-swf-class flash.filters::bevel-filter (flash.filters::bitmap-filter)
2588 :swf-name "flash.filters::BevelFilter"
2589 ;; :supers (flash.filters::bitmap-filter object)
2590 ;; = ("flash.filters::BitmapFilter" "Object")
2591 ;; :interfaces NIL
2592 ;; = NIL
2593 :constants
2595 :properties
2596 ((:type :swf-name "type" :type string :access :readwrite :declared-by flash.filters::bevel-filter)
2597 (:angle :swf-name "angle" :type number :access :readwrite :declared-by flash.filters::bevel-filter)
2598 (:blur-x :swf-name "blurX" :type number :access :readwrite :declared-by flash.filters::bevel-filter)
2599 (:blur-y :swf-name "blurY" :type number :access :readwrite :declared-by flash.filters::bevel-filter)
2600 (:shadow-alpha :swf-name "shadowAlpha" :type number :access :readwrite :declared-by flash.filters::bevel-filter)
2601 (:quality :swf-name "quality" :type int :access :readwrite :declared-by flash.filters::bevel-filter)
2602 (:shadow-color :swf-name "shadowColor" :type uint :access :readwrite :declared-by flash.filters::bevel-filter)
2603 (:highlight-alpha :swf-name "highlightAlpha" :type number :access :readwrite :declared-by flash.filters::bevel-filter)
2604 (:highlight-color :swf-name "highlightColor" :type uint :access :readwrite :declared-by flash.filters::bevel-filter)
2605 (:knockout :swf-name "knockout" :type boolean :access :readwrite :declared-by flash.filters::bevel-filter)
2606 (:strength :swf-name "strength" :type number :access :readwrite :declared-by flash.filters::bevel-filter)
2607 (:distance :swf-name "distance" :type number :access :readwrite :declared-by flash.filters::bevel-filter))
2608 :methods
2609 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::bevel-filter
2610 :args ())))
2612 (declare-swf-class flash.geom::rectangle (object)
2613 :swf-name "flash.geom::Rectangle"
2614 ;; :supers (object)
2615 ;; = ("Object")
2616 ;; :interfaces NIL
2617 ;; = NIL
2618 :constants
2620 :properties
2621 ((:right :swf-name "right" :type number :access :readwrite :declared-by flash.geom::rectangle)
2622 (:top-left :swf-name "topLeft" :type flash.geom::point :access :readwrite :declared-by flash.geom::rectangle)
2623 (:left :swf-name "left" :type number :access :readwrite :declared-by flash.geom::rectangle)
2624 (:bottom :swf-name "bottom" :type number :access :readwrite :declared-by flash.geom::rectangle)
2625 (:bottom-right :swf-name "bottomRight" :type flash.geom::point :access :readwrite :declared-by flash.geom::rectangle)
2626 (:top :swf-name "top" :type number :access :readwrite :declared-by flash.geom::rectangle)
2627 (:size :swf-name "size" :type flash.geom::point :access :readwrite :declared-by flash.geom::rectangle))
2628 :methods
2629 ((:offset-point :swf-name "offsetPoint" :return-type void :declared-by flash.geom::rectangle
2630 :args ((:index 1 :type flash.geom::point :optional NIL)))
2631 (:set-empty :swf-name "setEmpty" :return-type void :declared-by flash.geom::rectangle
2632 :args ())
2633 (:contains :swf-name "contains" :return-type boolean :declared-by flash.geom::rectangle
2634 :args ((:index 1 :type number :optional NIL)
2635 (:index 2 :type number :optional NIL)))
2636 (:is-empty :swf-name "isEmpty" :return-type boolean :declared-by flash.geom::rectangle
2637 :args ())
2638 (:intersects :swf-name "intersects" :return-type boolean :declared-by flash.geom::rectangle
2639 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
2640 (:contains-rect :swf-name "containsRect" :return-type boolean :declared-by flash.geom::rectangle
2641 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
2642 (:inflate :swf-name "inflate" :return-type void :declared-by flash.geom::rectangle
2643 :args ((:index 1 :type number :optional NIL)
2644 (:index 2 :type number :optional NIL)))
2645 (:union :swf-name "union" :return-type flash.geom::rectangle :declared-by flash.geom::rectangle
2646 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
2647 (:equals :swf-name "equals" :return-type boolean :declared-by flash.geom::rectangle
2648 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
2649 (:intersection :swf-name "intersection" :return-type flash.geom::rectangle :declared-by flash.geom::rectangle
2650 :args ((:index 1 :type flash.geom::rectangle :optional NIL)))
2651 (:offset :swf-name "offset" :return-type void :declared-by flash.geom::rectangle
2652 :args ((:index 1 :type number :optional NIL)
2653 (:index 2 :type number :optional NIL)))
2654 (:clone :swf-name "clone" :return-type flash.geom::rectangle :declared-by flash.geom::rectangle
2655 :args ())
2656 (:inflate-point :swf-name "inflatePoint" :return-type void :declared-by flash.geom::rectangle
2657 :args ((:index 1 :type flash.geom::point :optional NIL)))
2658 (:contains-point :swf-name "containsPoint" :return-type boolean :declared-by flash.geom::rectangle
2659 :args ((:index 1 :type flash.geom::point :optional NIL)))
2660 (:to-string :swf-name "toString" :return-type string :declared-by flash.geom::rectangle
2661 :args ())))
2663 (declare-swf-class flash.display::-swf-version (object)
2664 :swf-name "flash.display::SWFVersion"
2665 ;; :supers (object)
2666 ;; = ("Object")
2667 ;; :interfaces NIL
2668 ;; = NIL
2669 :constants
2670 ((:+flash2+ :swf-name "FLASH2" :type uint)
2671 (:+flash7+ :swf-name "FLASH7" :type uint)
2672 (:+flash3+ :swf-name "FLASH3" :type uint)
2673 (:+flash8+ :swf-name "FLASH8" :type uint)
2674 (:+flash9+ :swf-name "FLASH9" :type uint)
2675 (:+flash6+ :swf-name "FLASH6" :type uint)
2676 (:+flash5+ :swf-name "FLASH5" :type uint)
2677 (:+flash1+ :swf-name "FLASH1" :type uint)
2678 (:+flash4+ :swf-name "FLASH4" :type uint))
2679 :properties
2681 :methods
2684 (declare-swf-class flash.net::responder (object)
2685 :swf-name "flash.net::Responder"
2686 ;; :supers (object)
2687 ;; = ("Object")
2688 ;; :interfaces NIL
2689 ;; = NIL
2690 :constants
2692 :properties
2694 :methods
2697 (declare-swf-class flash.system::capabilities (object)
2698 :swf-name "flash.system::Capabilities"
2699 ;; :supers (object)
2700 ;; = ("Object")
2701 ;; :interfaces NIL
2702 ;; = NIL
2703 :constants
2705 :properties
2707 :methods
2710 (declare-swf-class flash.net::i-dynamic-property-output ()
2711 :swf-name "flash.net::IDynamicPropertyOutput"
2712 ;; :supers NIL
2713 ;; = NIL
2714 ;; :interfaces NIL
2715 ;; = NIL
2716 :constants
2718 :properties
2720 :methods
2721 ((:write-dynamic-property :swf-name "writeDynamicProperty" :return-type void :declared-by flash.net::i-dynamic-property-output
2722 :args ((:index 1 :type string :optional NIL)
2723 (:index 2 :type * :optional NIL)))))
2725 (declare-swf-class flash.display::stage-display-state (object)
2726 :swf-name "flash.display::StageDisplayState"
2727 ;; :supers (object)
2728 ;; = ("Object")
2729 ;; :interfaces NIL
2730 ;; = NIL
2731 :constants
2732 ((:+full-screen+ :swf-name "FULL_SCREEN" :type string)
2733 (:+normal+ :swf-name "NORMAL" :type string))
2734 :properties
2736 :methods
2739 (declare-swf-class adobe.utils::product-manager (flash.events::event-dispatcher)
2740 :swf-name "adobe.utils::ProductManager"
2741 ;; :supers (flash.events::event-dispatcher object)
2742 ;; = ("flash.events::EventDispatcher" "Object")
2743 ;; :interfaces (flash.events::i-event-dispatcher)
2744 ;; = ("flash.events::IEventDispatcher")
2745 :constants
2747 :properties
2748 ((:installed :swf-name "installed" :type boolean :access :readonly :declared-by adobe.utils::product-manager)
2749 (:running :swf-name "running" :type boolean :access :readonly :declared-by adobe.utils::product-manager)
2750 (:installed-version :swf-name "installedVersion" :type string :access :readonly :declared-by adobe.utils::product-manager))
2751 :methods
2752 ((:download :swf-name "download" :return-type boolean :declared-by adobe.utils::product-manager
2753 :args ((:index 1 :type string :optional T)
2754 (:index 2 :type string :optional T)
2755 (:index 3 :type array :optional T)))
2756 (:launch :swf-name "launch" :return-type boolean :declared-by adobe.utils::product-manager
2757 :args ((:index 1 :type string :optional T)))
2758 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2759 :args ((:index 1 :type string :optional NIL)))
2760 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2761 :args ())
2762 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2763 :args ((:index 1 :type string :optional NIL)
2764 (:index 2 :type function :optional NIL)
2765 (:index 3 :type boolean :optional T)))
2766 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2767 :args ((:index 1 :type string :optional NIL)
2768 (:index 2 :type function :optional NIL)
2769 (:index 3 :type boolean :optional T)
2770 (:index 4 :type int :optional T)
2771 (:index 5 :type boolean :optional T)))
2772 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2773 :args ((:index 1 :type string :optional NIL)))
2774 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2775 :args ((:index 1 :type flash.events::event :optional NIL)))))
2777 (declare-swf-class flash.display::frame-label (object)
2778 :swf-name "flash.display::FrameLabel"
2779 ;; :supers (object)
2780 ;; = ("Object")
2781 ;; :interfaces NIL
2782 ;; = NIL
2783 :constants
2785 :properties
2786 ((:frame :swf-name "frame" :type int :access :readonly :declared-by flash.display::frame-label)
2787 (:name :swf-name "name" :type string :access :readonly :declared-by flash.display::frame-label))
2788 :methods
2791 (declare-swf-class flash.text::text-format-align (object)
2792 :swf-name "flash.text::TextFormatAlign"
2793 ;; :supers (object)
2794 ;; = ("Object")
2795 ;; :interfaces NIL
2796 ;; = NIL
2797 :constants
2798 ((:+justify+ :swf-name "JUSTIFY" :type string)
2799 (:+right+ :swf-name "RIGHT" :type string)
2800 (:+left+ :swf-name "LEFT" :type string)
2801 (:+center+ :swf-name "CENTER" :type string))
2802 :properties
2804 :methods
2807 (declare-swf-class flash.utils::dictionary (object)
2808 :swf-name "flash.utils::Dictionary"
2809 ;; :supers (object)
2810 ;; = ("Object")
2811 ;; :interfaces NIL
2812 ;; = NIL
2813 :constants
2815 :properties
2817 :methods
2820 (declare-swf-class flash.net::shared-object (flash.events::event-dispatcher)
2821 :swf-name "flash.net::SharedObject"
2822 ;; :supers (flash.events::event-dispatcher object)
2823 ;; = ("flash.events::EventDispatcher" "Object")
2824 ;; :interfaces (flash.events::i-event-dispatcher)
2825 ;; = ("flash.events::IEventDispatcher")
2826 :constants
2828 :properties
2829 ((:fps :swf-name "fps" :type number :access :writeonly :declared-by flash.net::shared-object)
2830 (:data :swf-name "data" :type object :access :readonly :declared-by flash.net::shared-object)
2831 (:size :swf-name "size" :type uint :access :readonly :declared-by flash.net::shared-object)
2832 (:client :swf-name "client" :type object :access :readwrite :declared-by flash.net::shared-object)
2833 (:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.net::shared-object))
2834 :methods
2835 ((:flush :swf-name "flush" :return-type string :declared-by flash.net::shared-object
2836 :args ((:index 1 :type int :optional T)))
2837 (:set-dirty :swf-name "setDirty" :return-type void :declared-by flash.net::shared-object
2838 :args ((:index 1 :type string :optional NIL)))
2839 (:set-property :swf-name "setProperty" :return-type void :declared-by flash.net::shared-object
2840 :args ((:index 1 :type string :optional NIL)
2841 (:index 2 :type object :optional T)))
2842 (:connect :swf-name "connect" :return-type void :declared-by flash.net::shared-object
2843 :args ((:index 1 :type flash.net::net-connection :optional NIL)
2844 (:index 2 :type string :optional T)))
2845 (:send :swf-name "send" :return-type void :declared-by flash.net::shared-object
2846 :args ())
2847 (:close :swf-name "close" :return-type void :declared-by flash.net::shared-object
2848 :args ())
2849 (:clear :swf-name "clear" :return-type void :declared-by flash.net::shared-object
2850 :args ())
2851 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2852 :args ((:index 1 :type string :optional NIL)))
2853 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2854 :args ())
2855 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2856 :args ((:index 1 :type string :optional NIL)
2857 (:index 2 :type function :optional NIL)
2858 (:index 3 :type boolean :optional T)))
2859 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2860 :args ((:index 1 :type string :optional NIL)
2861 (:index 2 :type function :optional NIL)
2862 (:index 3 :type boolean :optional T)
2863 (:index 4 :type int :optional T)
2864 (:index 5 :type boolean :optional T)))
2865 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2866 :args ((:index 1 :type string :optional NIL)))
2867 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2868 :args ((:index 1 :type flash.events::event :optional NIL)))))
2870 (declare-swf-class flash.net::socket (flash.events::event-dispatcher)
2871 :swf-name "flash.net::Socket"
2872 ;; :supers (flash.events::event-dispatcher object)
2873 ;; = ("flash.events::EventDispatcher" "Object")
2874 ;; :interfaces (flash.utils::i-data-output
2875 ;; flash.events::i-event-dispatcher
2876 ;; flash.utils::i-data-input)
2877 ;; = ("flash.utils::IDataOutput" "flash.events::IEventDispatcher"
2878 ;; "flash.utils::IDataInput")
2879 :constants
2881 :properties
2882 ((:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.net::socket)
2883 (:connected :swf-name "connected" :type boolean :access :readonly :declared-by flash.net::socket)
2884 (:bytes-available :swf-name "bytesAvailable" :type uint :access :readonly :declared-by flash.net::socket)
2885 (:endian :swf-name "endian" :type string :access :readwrite :declared-by flash.net::socket))
2886 :methods
2887 ((:read-double :swf-name "readDouble" :return-type number :declared-by flash.net::socket
2888 :args ())
2889 (:write-unsigned-int :swf-name "writeUnsignedInt" :return-type void :declared-by flash.net::socket
2890 :args ((:index 1 :type uint :optional NIL)))
2891 (:write-float :swf-name "writeFloat" :return-type void :declared-by flash.net::socket
2892 :args ((:index 1 :type number :optional NIL)))
2893 (:write-double :swf-name "writeDouble" :return-type void :declared-by flash.net::socket
2894 :args ((:index 1 :type number :optional NIL)))
2895 (:read-multi-byte :swf-name "readMultiByte" :return-type string :declared-by flash.net::socket
2896 :args ((:index 1 :type uint :optional NIL)
2897 (:index 2 :type string :optional NIL)))
2898 (:write-int :swf-name "writeInt" :return-type void :declared-by flash.net::socket
2899 :args ((:index 1 :type int :optional NIL)))
2900 (:write-bytes :swf-name "writeBytes" :return-type void :declared-by flash.net::socket
2901 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
2902 (:index 2 :type uint :optional T)
2903 (:index 3 :type uint :optional T)))
2904 (:read-short :swf-name "readShort" :return-type int :declared-by flash.net::socket
2905 :args ())
2906 (:read-unsigned-int :swf-name "readUnsignedInt" :return-type uint :declared-by flash.net::socket
2907 :args ())
2908 (:flush :swf-name "flush" :return-type void :declared-by flash.net::socket
2909 :args ())
2910 (:read-unsigned-short :swf-name "readUnsignedShort" :return-type uint :declared-by flash.net::socket
2911 :args ())
2912 (:read-float :swf-name "readFloat" :return-type number :declared-by flash.net::socket
2913 :args ())
2914 (:write-utf :swf-name "writeUTF" :return-type void :declared-by flash.net::socket
2915 :args ((:index 1 :type string :optional NIL)))
2916 (:write-byte :swf-name "writeByte" :return-type void :declared-by flash.net::socket
2917 :args ((:index 1 :type int :optional NIL)))
2918 (:write-short :swf-name "writeShort" :return-type void :declared-by flash.net::socket
2919 :args ((:index 1 :type int :optional NIL)))
2920 (:connect :swf-name "connect" :return-type void :declared-by flash.net::socket
2921 :args ((:index 1 :type string :optional NIL)
2922 (:index 2 :type int :optional NIL)))
2923 (:write-boolean :swf-name "writeBoolean" :return-type void :declared-by flash.net::socket
2924 :args ((:index 1 :type boolean :optional NIL)))
2925 (:write-multi-byte :swf-name "writeMultiByte" :return-type void :declared-by flash.net::socket
2926 :args ((:index 1 :type string :optional NIL)
2927 (:index 2 :type string :optional NIL)))
2928 (:write-utf-bytes :swf-name "writeUTFBytes" :return-type void :declared-by flash.net::socket
2929 :args ((:index 1 :type string :optional NIL)))
2930 (:read-byte :swf-name "readByte" :return-type int :declared-by flash.net::socket
2931 :args ())
2932 (:read-object :swf-name "readObject" :return-type * :declared-by flash.net::socket
2933 :args ())
2934 (:read-utf-bytes :swf-name "readUTFBytes" :return-type string :declared-by flash.net::socket
2935 :args ((:index 1 :type uint :optional NIL)))
2936 (:read-int :swf-name "readInt" :return-type int :declared-by flash.net::socket
2937 :args ())
2938 (:close :swf-name "close" :return-type void :declared-by flash.net::socket
2939 :args ())
2940 (:read-utf :swf-name "readUTF" :return-type string :declared-by flash.net::socket
2941 :args ())
2942 (:read-bytes :swf-name "readBytes" :return-type void :declared-by flash.net::socket
2943 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
2944 (:index 2 :type uint :optional T)
2945 (:index 3 :type uint :optional T)))
2946 (:read-unsigned-byte :swf-name "readUnsignedByte" :return-type uint :declared-by flash.net::socket
2947 :args ())
2948 (:read-boolean :swf-name "readBoolean" :return-type boolean :declared-by flash.net::socket
2949 :args ())
2950 (:write-object :swf-name "writeObject" :return-type void :declared-by flash.net::socket
2951 :args ((:index 1 :type * :optional NIL)))
2952 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
2953 :args ((:index 1 :type string :optional NIL)))
2954 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
2955 :args ())
2956 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
2957 :args ((:index 1 :type string :optional NIL)
2958 (:index 2 :type function :optional NIL)
2959 (:index 3 :type boolean :optional T)))
2960 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
2961 :args ((:index 1 :type string :optional NIL)
2962 (:index 2 :type function :optional NIL)
2963 (:index 3 :type boolean :optional T)
2964 (:index 4 :type int :optional T)
2965 (:index 5 :type boolean :optional T)))
2966 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
2967 :args ((:index 1 :type string :optional NIL)))
2968 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
2969 :args ((:index 1 :type flash.events::event :optional NIL)))))
2971 (declare-swf-class flash.filters::color-matrix-filter (flash.filters::bitmap-filter)
2972 :swf-name "flash.filters::ColorMatrixFilter"
2973 ;; :supers (flash.filters::bitmap-filter object)
2974 ;; = ("flash.filters::BitmapFilter" "Object")
2975 ;; :interfaces NIL
2976 ;; = NIL
2977 :constants
2979 :properties
2980 ((:matrix :swf-name "matrix" :type array :access :readwrite :declared-by flash.filters::color-matrix-filter))
2981 :methods
2982 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::color-matrix-filter
2983 :args ())))
2985 (declare-swf-class flash.filters::bitmap-filter-type (object)
2986 :swf-name "flash.filters::BitmapFilterType"
2987 ;; :supers (object)
2988 ;; = ("Object")
2989 ;; :interfaces NIL
2990 ;; = NIL
2991 :constants
2992 ((:+outer+ :swf-name "OUTER" :type string)
2993 (:+full+ :swf-name "FULL" :type string)
2994 (:+inner+ :swf-name "INNER" :type string))
2995 :properties
2997 :methods
3000 (declare-swf-class flash.text::text-color-type (object)
3001 :swf-name "flash.text::TextColorType"
3002 ;; :supers (object)
3003 ;; = ("Object")
3004 ;; :interfaces NIL
3005 ;; = NIL
3006 :constants
3007 ((:+dark-color+ :swf-name "DARK_COLOR" :type string)
3008 (:+light-color+ :swf-name "LIGHT_COLOR" :type string))
3009 :properties
3011 :methods
3014 (declare-swf-class flash.filters::displacement-map-filter (flash.filters::bitmap-filter)
3015 :swf-name "flash.filters::DisplacementMapFilter"
3016 ;; :supers (flash.filters::bitmap-filter object)
3017 ;; = ("flash.filters::BitmapFilter" "Object")
3018 ;; :interfaces NIL
3019 ;; = NIL
3020 :constants
3022 :properties
3023 ((:map-bitmap :swf-name "mapBitmap" :type flash.display::bitmap-data :access :readwrite :declared-by flash.filters::displacement-map-filter)
3024 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.filters::displacement-map-filter)
3025 (:component-y :swf-name "componentY" :type uint :access :readwrite :declared-by flash.filters::displacement-map-filter)
3026 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.filters::displacement-map-filter)
3027 (:color :swf-name "color" :type uint :access :readwrite :declared-by flash.filters::displacement-map-filter)
3028 (:component-x :swf-name "componentX" :type uint :access :readwrite :declared-by flash.filters::displacement-map-filter)
3029 (:mode :swf-name "mode" :type string :access :readwrite :declared-by flash.filters::displacement-map-filter)
3030 (:map-point :swf-name "mapPoint" :type flash.geom::point :access :readwrite :declared-by flash.filters::displacement-map-filter)
3031 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.filters::displacement-map-filter))
3032 :methods
3033 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::displacement-map-filter
3034 :args ())))
3036 (declare-swf-class flash.net::i-dynamic-property-writer ()
3037 :swf-name "flash.net::IDynamicPropertyWriter"
3038 ;; :supers NIL
3039 ;; = NIL
3040 ;; :interfaces NIL
3041 ;; = NIL
3042 :constants
3044 :properties
3046 :methods
3047 ((:write-dynamic-properties :swf-name "writeDynamicProperties" :return-type void :declared-by flash.net::i-dynamic-property-writer
3048 :args ((:index 1 :type object :optional NIL)
3049 (:index 2 :type flash.net::i-dynamic-property-output :optional NIL)))))
3051 (declare-swf-class flash.external::external-interface (object)
3052 :swf-name "flash.external::ExternalInterface"
3053 ;; :supers (object)
3054 ;; = ("Object")
3055 ;; :interfaces NIL
3056 ;; = NIL
3057 :constants
3059 :properties
3061 :methods
3064 (declare-swf-class flash.text::text-run (object)
3065 :swf-name "flash.text::TextRun"
3066 ;; :supers (object)
3067 ;; = ("Object")
3068 ;; :interfaces NIL
3069 ;; = NIL
3070 :constants
3072 :properties
3074 :methods
3077 (declare-swf-class flash.media::video (flash.display::display-object)
3078 :swf-name "flash.media::Video"
3079 ;; :supers (flash.display::display-object flash.events::event-dispatcher
3080 ;; object)
3081 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
3082 ;; "Object")
3083 ;; :interfaces (flash.display::i-bitmap-drawable
3084 ;; flash.events::i-event-dispatcher)
3085 ;; = ("flash.display::IBitmapDrawable"
3086 ;; "flash.events::IEventDispatcher")
3087 :constants
3089 :properties
3090 ((:deblocking :swf-name "deblocking" :type int :access :readwrite :declared-by flash.media::video)
3091 (:smoothing :swf-name "smoothing" :type boolean :access :readwrite :declared-by flash.media::video)
3092 (:video-width :swf-name "videoWidth" :type int :access :readonly :declared-by flash.media::video)
3093 (:video-height :swf-name "videoHeight" :type int :access :readonly :declared-by flash.media::video)
3094 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
3095 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
3096 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3097 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
3098 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
3099 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
3100 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
3101 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
3102 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
3103 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3104 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
3105 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
3106 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
3107 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
3108 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
3109 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
3110 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
3111 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
3112 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
3113 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
3114 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
3115 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
3116 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
3117 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
3118 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
3119 :methods
3120 ((:clear :swf-name "clear" :return-type void :declared-by flash.media::video
3121 :args ())
3122 (:attach-net-stream :swf-name "attachNetStream" :return-type void :declared-by flash.media::video
3123 :args ((:index 1 :type flash.net::net-stream :optional NIL)))
3124 (:attach-camera :swf-name "attachCamera" :return-type void :declared-by flash.media::video
3125 :args ((:index 1 :type flash.media::camera :optional NIL)))
3126 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3127 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3128 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
3129 :args ((:index 1 :type flash.geom::point :optional NIL)))
3130 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
3131 :args ((:index 1 :type flash.geom::point :optional NIL)))
3132 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
3133 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3134 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3135 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3136 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
3137 :args ((:index 1 :type number :optional NIL)
3138 (:index 2 :type number :optional NIL)
3139 (:index 3 :type boolean :optional T)))
3140 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
3141 :args ((:index 1 :type string :optional NIL)))
3142 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
3143 :args ())
3144 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
3145 :args ((:index 1 :type string :optional NIL)
3146 (:index 2 :type function :optional NIL)
3147 (:index 3 :type boolean :optional T)))
3148 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
3149 :args ((:index 1 :type string :optional NIL)
3150 (:index 2 :type function :optional NIL)
3151 (:index 3 :type boolean :optional T)
3152 (:index 4 :type int :optional T)
3153 (:index 5 :type boolean :optional T)))
3154 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
3155 :args ((:index 1 :type string :optional NIL)))
3156 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
3157 :args ((:index 1 :type flash.events::event :optional NIL)))))
3159 (declare-swf-class flash.text::text-format-display (object)
3160 :swf-name "flash.text::TextFormatDisplay"
3161 ;; :supers (object)
3162 ;; = ("Object")
3163 ;; :interfaces NIL
3164 ;; = NIL
3165 :constants
3166 ((:+inline+ :swf-name "INLINE" :type string)
3167 (:+block+ :swf-name "BLOCK" :type string))
3168 :properties
3170 :methods
3173 (declare-swf-class flash.media::-id3info (object)
3174 :swf-name "flash.media::ID3Info"
3175 ;; :supers (object)
3176 ;; = ("Object")
3177 ;; :interfaces NIL
3178 ;; = NIL
3179 :constants
3181 :properties
3183 :methods
3186 (declare-swf-class flash.media::sound-transform (object)
3187 :swf-name "flash.media::SoundTransform"
3188 ;; :supers (object)
3189 ;; = ("Object")
3190 ;; :interfaces NIL
3191 ;; = NIL
3192 :constants
3194 :properties
3195 ((:left-to-left :swf-name "leftToLeft" :type number :access :readwrite :declared-by flash.media::sound-transform)
3196 (:pan :swf-name "pan" :type number :access :readwrite :declared-by flash.media::sound-transform)
3197 (:volume :swf-name "volume" :type number :access :readwrite :declared-by flash.media::sound-transform)
3198 (:right-to-right :swf-name "rightToRight" :type number :access :readwrite :declared-by flash.media::sound-transform)
3199 (:right-to-left :swf-name "rightToLeft" :type number :access :readwrite :declared-by flash.media::sound-transform)
3200 (:left-to-right :swf-name "leftToRight" :type number :access :readwrite :declared-by flash.media::sound-transform))
3201 :methods
3204 (declare-swf-class flash.trace::trace (object)
3205 :swf-name "flash.trace::Trace"
3206 ;; :supers (object)
3207 ;; = ("Object")
3208 ;; :interfaces NIL
3209 ;; = NIL
3210 :constants
3211 ((:+methods-with-args+ :swf-name "METHODS_WITH_ARGS" :type int)
3212 (:+file+ :swf-name "FILE" :type *)
3213 (:+listener+ :swf-name "LISTENER" :type *)
3214 (:+off+ :swf-name "OFF" :type int)
3215 (:+methods+ :swf-name "METHODS" :type int)
3216 (:+methods-and-lines-with-args+ :swf-name "METHODS_AND_LINES_WITH_ARGS" :type int)
3217 (:+methods-and-lines+ :swf-name "METHODS_AND_LINES" :type int))
3218 :properties
3220 :methods
3223 (declare-swf-class flash.text::text-snapshot (object)
3224 :swf-name "flash.text::TextSnapshot"
3225 ;; :supers (object)
3226 ;; = ("Object")
3227 ;; :interfaces NIL
3228 ;; = NIL
3229 :constants
3231 :properties
3232 ((:char-count :swf-name "charCount" :type int :access :readonly :declared-by flash.text::text-snapshot))
3233 :methods
3234 ((:find-text :swf-name "findText" :return-type int :declared-by flash.text::text-snapshot
3235 :args ((:index 1 :type int :optional NIL)
3236 (:index 2 :type string :optional NIL)
3237 (:index 3 :type boolean :optional NIL)))
3238 (:hit-test-text-near-pos :swf-name "hitTestTextNearPos" :return-type number :declared-by flash.text::text-snapshot
3239 :args ((:index 1 :type number :optional NIL)
3240 (:index 2 :type number :optional NIL)
3241 (:index 3 :type number :optional T)))
3242 (:set-select-color :swf-name "setSelectColor" :return-type void :declared-by flash.text::text-snapshot
3243 :args ((:index 1 :type uint :optional T)))
3244 (:get-selected :swf-name "getSelected" :return-type boolean :declared-by flash.text::text-snapshot
3245 :args ((:index 1 :type int :optional NIL)
3246 (:index 2 :type int :optional NIL)))
3247 (:get-text-run-info :swf-name "getTextRunInfo" :return-type array :declared-by flash.text::text-snapshot
3248 :args ((:index 1 :type int :optional NIL)
3249 (:index 2 :type int :optional NIL)))
3250 (:get-text :swf-name "getText" :return-type string :declared-by flash.text::text-snapshot
3251 :args ((:index 1 :type int :optional NIL)
3252 (:index 2 :type int :optional NIL)
3253 (:index 3 :type boolean :optional T)))
3254 (:get-selected-text :swf-name "getSelectedText" :return-type string :declared-by flash.text::text-snapshot
3255 :args ((:index 1 :type boolean :optional T)))
3256 (:set-selected :swf-name "setSelected" :return-type void :declared-by flash.text::text-snapshot
3257 :args ((:index 1 :type int :optional NIL)
3258 (:index 2 :type int :optional NIL)
3259 (:index 3 :type boolean :optional NIL)))))
3261 (declare-swf-class flash.display::interpolation-method (object)
3262 :swf-name "flash.display::InterpolationMethod"
3263 ;; :supers (object)
3264 ;; = ("Object")
3265 ;; :interfaces NIL
3266 ;; = NIL
3267 :constants
3268 ((:+linear-rgb+ :swf-name "LINEAR_RGB" :type string)
3269 (:+rgb+ :swf-name "RGB" :type string))
3270 :properties
3272 :methods
3275 (declare-swf-class flash.text::text-extent (object)
3276 :swf-name "flash.text::TextExtent"
3277 ;; :supers (object)
3278 ;; = ("Object")
3279 ;; :interfaces NIL
3280 ;; = NIL
3281 :constants
3283 :properties
3285 :methods
3288 (declare-swf-class flash.ui::context-menu-built-in-items (object)
3289 :swf-name "flash.ui::ContextMenuBuiltInItems"
3290 ;; :supers (object)
3291 ;; = ("Object")
3292 ;; :interfaces NIL
3293 ;; = NIL
3294 :constants
3296 :properties
3298 :methods
3299 ((:clone :swf-name "clone" :return-type flash.ui::context-menu-built-in-items :declared-by flash.ui::context-menu-built-in-items
3300 :args ())))
3302 (declare-swf-class flash.system::security-domain (object)
3303 :swf-name "flash.system::SecurityDomain"
3304 ;; :supers (object)
3305 ;; = ("Object")
3306 ;; :interfaces NIL
3307 ;; = NIL
3308 :constants
3310 :properties
3312 :methods
3315 (declare-swf-class date (object)
3316 :swf-name "Date"
3317 ;; :supers (object)
3318 ;; = ("Object")
3319 ;; :interfaces NIL
3320 ;; = NIL
3321 :constants
3322 ((:+length+ :swf-name "length" :type int))
3323 :properties
3324 ((:hours-utc :swf-name "hoursUTC" :type number :access :readwrite :declared-by date)
3325 (:full-year :swf-name "fullYear" :type number :access :readwrite :declared-by date)
3326 (:date :swf-name "date" :type number :access :readwrite :declared-by date)
3327 (:month :swf-name "month" :type number :access :readwrite :declared-by date)
3328 (:seconds :swf-name "seconds" :type number :access :readwrite :declared-by date)
3329 (:time :swf-name "time" :type number :access :readwrite :declared-by date)
3330 (:hours :swf-name "hours" :type number :access :readwrite :declared-by date)
3331 (:timezone-offset :swf-name "timezoneOffset" :type number :access :readonly :declared-by date)
3332 (:full-year-utc :swf-name "fullYearUTC" :type number :access :readwrite :declared-by date)
3333 (:milliseconds-utc :swf-name "millisecondsUTC" :type number :access :readwrite :declared-by date)
3334 (:minutes :swf-name "minutes" :type number :access :readwrite :declared-by date)
3335 (:date-utc :swf-name "dateUTC" :type number :access :readwrite :declared-by date)
3336 (:day-utc :swf-name "dayUTC" :type number :access :readonly :declared-by date)
3337 (:milliseconds :swf-name "milliseconds" :type number :access :readwrite :declared-by date)
3338 (:month-utc :swf-name "monthUTC" :type number :access :readwrite :declared-by date)
3339 (:minutes-utc :swf-name "minutesUTC" :type number :access :readwrite :declared-by date)
3340 (:seconds-utc :swf-name "secondsUTC" :type number :access :readwrite :declared-by date)
3341 (:day :swf-name "day" :type number :access :readonly :declared-by date))
3342 :methods
3345 (declare-swf-class flash.events::status-event (flash.events::event)
3346 :swf-name "flash.events::StatusEvent"
3347 ;; :supers (flash.events::event object)
3348 ;; = ("flash.events::Event" "Object")
3349 ;; :interfaces NIL
3350 ;; = NIL
3351 :constants
3352 ((:+status+ :swf-name "STATUS" :type string))
3353 :properties
3354 ((:code :swf-name "code" :type string :access :readwrite :declared-by flash.events::status-event)
3355 (:level :swf-name "level" :type string :access :readwrite :declared-by flash.events::status-event)
3356 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
3357 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
3358 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
3359 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
3360 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
3361 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
3362 :methods
3363 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::status-event
3364 :args ())
3365 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::status-event
3366 :args ())
3367 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
3368 :args ())
3369 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
3370 :args ((:index 1 :type string :optional NIL)))
3371 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
3372 :args ())
3373 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
3374 :args ())
3375 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
3376 :args ())))
3378 (declare-swf-class flash.filters::blur-filter (flash.filters::bitmap-filter)
3379 :swf-name "flash.filters::BlurFilter"
3380 ;; :supers (flash.filters::bitmap-filter object)
3381 ;; = ("flash.filters::BitmapFilter" "Object")
3382 ;; :interfaces NIL
3383 ;; = NIL
3384 :constants
3386 :properties
3387 ((:blur-y :swf-name "blurY" :type number :access :readwrite :declared-by flash.filters::blur-filter)
3388 (:blur-x :swf-name "blurX" :type number :access :readwrite :declared-by flash.filters::blur-filter)
3389 (:quality :swf-name "quality" :type int :access :readwrite :declared-by flash.filters::blur-filter))
3390 :methods
3391 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::blur-filter
3392 :args ())))
3394 (declare-swf-class flash.geom::color-transform (object)
3395 :swf-name "flash.geom::ColorTransform"
3396 ;; :supers (object)
3397 ;; = ("Object")
3398 ;; :interfaces NIL
3399 ;; = NIL
3400 :constants
3402 :properties
3403 ((:color :swf-name "color" :type uint :access :readwrite :declared-by flash.geom::color-transform))
3404 :methods
3405 ((:concat :swf-name "concat" :return-type void :declared-by flash.geom::color-transform
3406 :args ((:index 1 :type flash.geom::color-transform :optional NIL)))
3407 (:to-string :swf-name "toString" :return-type string :declared-by flash.geom::color-transform
3408 :args ())))
3410 (declare-swf-class flash.text::static-text (flash.display::display-object)
3411 :swf-name "flash.text::StaticText"
3412 ;; :supers (flash.display::display-object flash.events::event-dispatcher
3413 ;; object)
3414 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
3415 ;; "Object")
3416 ;; :interfaces (flash.display::i-bitmap-drawable
3417 ;; flash.events::i-event-dispatcher)
3418 ;; = ("flash.display::IBitmapDrawable"
3419 ;; "flash.events::IEventDispatcher")
3420 :constants
3422 :properties
3423 ((:text :swf-name "text" :type string :access :readonly :declared-by flash.text::static-text)
3424 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
3425 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
3426 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3427 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
3428 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
3429 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
3430 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
3431 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
3432 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
3433 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3434 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
3435 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
3436 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
3437 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
3438 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
3439 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
3440 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
3441 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
3442 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
3443 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
3444 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
3445 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
3446 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
3447 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
3448 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
3449 :methods
3450 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3451 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3452 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
3453 :args ((:index 1 :type flash.geom::point :optional NIL)))
3454 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
3455 :args ((:index 1 :type flash.geom::point :optional NIL)))
3456 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
3457 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3458 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3459 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3460 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
3461 :args ((:index 1 :type number :optional NIL)
3462 (:index 2 :type number :optional NIL)
3463 (:index 3 :type boolean :optional T)))
3464 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
3465 :args ((:index 1 :type string :optional NIL)))
3466 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
3467 :args ())
3468 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
3469 :args ((:index 1 :type string :optional NIL)
3470 (:index 2 :type function :optional NIL)
3471 (:index 3 :type boolean :optional T)))
3472 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
3473 :args ((:index 1 :type string :optional NIL)
3474 (:index 2 :type function :optional NIL)
3475 (:index 3 :type boolean :optional T)
3476 (:index 4 :type int :optional T)
3477 (:index 5 :type boolean :optional T)))
3478 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
3479 :args ((:index 1 :type string :optional NIL)))
3480 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
3481 :args ((:index 1 :type flash.events::event :optional NIL)))))
3483 (declare-swf-class adobe.utils::custom-actions (object)
3484 :swf-name "adobe.utils::CustomActions"
3485 ;; :supers (object)
3486 ;; = ("Object")
3487 ;; :interfaces NIL
3488 ;; = NIL
3489 :constants
3491 :properties
3493 :methods
3496 (declare-swf-class flash.net::-url-stream (flash.events::event-dispatcher)
3497 :swf-name "flash.net::URLStream"
3498 ;; :supers (flash.events::event-dispatcher object)
3499 ;; = ("flash.events::EventDispatcher" "Object")
3500 ;; :interfaces (flash.events::i-event-dispatcher
3501 ;; flash.utils::i-data-input)
3502 ;; = ("flash.events::IEventDispatcher" "flash.utils::IDataInput")
3503 :constants
3505 :properties
3506 ((:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.net::-url-stream)
3507 (:connected :swf-name "connected" :type boolean :access :readonly :declared-by flash.net::-url-stream)
3508 (:bytes-available :swf-name "bytesAvailable" :type uint :access :readonly :declared-by flash.net::-url-stream)
3509 (:endian :swf-name "endian" :type string :access :readwrite :declared-by flash.net::-url-stream))
3510 :methods
3511 ((:read-double :swf-name "readDouble" :return-type number :declared-by flash.net::-url-stream
3512 :args ())
3513 (:read-unsigned-short :swf-name "readUnsignedShort" :return-type uint :declared-by flash.net::-url-stream
3514 :args ())
3515 (:read-object :swf-name "readObject" :return-type * :declared-by flash.net::-url-stream
3516 :args ())
3517 (:read-byte :swf-name "readByte" :return-type int :declared-by flash.net::-url-stream
3518 :args ())
3519 (:read-utf-bytes :swf-name "readUTFBytes" :return-type string :declared-by flash.net::-url-stream
3520 :args ((:index 1 :type uint :optional NIL)))
3521 (:read-float :swf-name "readFloat" :return-type number :declared-by flash.net::-url-stream
3522 :args ())
3523 (:read-multi-byte :swf-name "readMultiByte" :return-type string :declared-by flash.net::-url-stream
3524 :args ((:index 1 :type uint :optional NIL)
3525 (:index 2 :type string :optional NIL)))
3526 (:read-int :swf-name "readInt" :return-type int :declared-by flash.net::-url-stream
3527 :args ())
3528 (:load :swf-name "load" :return-type void :declared-by flash.net::-url-stream
3529 :args ((:index 1 :type flash.net::-url-request :optional NIL)))
3530 (:read-short :swf-name "readShort" :return-type int :declared-by flash.net::-url-stream
3531 :args ())
3532 (:read-utf :swf-name "readUTF" :return-type string :declared-by flash.net::-url-stream
3533 :args ())
3534 (:read-unsigned-int :swf-name "readUnsignedInt" :return-type uint :declared-by flash.net::-url-stream
3535 :args ())
3536 (:read-bytes :swf-name "readBytes" :return-type void :declared-by flash.net::-url-stream
3537 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
3538 (:index 2 :type uint :optional T)
3539 (:index 3 :type uint :optional T)))
3540 (:read-unsigned-byte :swf-name "readUnsignedByte" :return-type uint :declared-by flash.net::-url-stream
3541 :args ())
3542 (:read-boolean :swf-name "readBoolean" :return-type boolean :declared-by flash.net::-url-stream
3543 :args ())
3544 (:close :swf-name "close" :return-type void :declared-by flash.net::-url-stream
3545 :args ())
3546 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
3547 :args ((:index 1 :type string :optional NIL)))
3548 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
3549 :args ())
3550 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
3551 :args ((:index 1 :type string :optional NIL)
3552 (:index 2 :type function :optional NIL)
3553 (:index 3 :type boolean :optional T)))
3554 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
3555 :args ((:index 1 :type string :optional NIL)
3556 (:index 2 :type function :optional NIL)
3557 (:index 3 :type boolean :optional T)
3558 (:index 4 :type int :optional T)
3559 (:index 5 :type boolean :optional T)))
3560 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
3561 :args ((:index 1 :type string :optional NIL)))
3562 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
3563 :args ((:index 1 :type flash.events::event :optional NIL)))))
3565 (declare-swf-class flash.events::security-error-event (flash.events::error-event)
3566 :swf-name "flash.events::SecurityErrorEvent"
3567 ;; :supers (flash.events::error-event flash.events::text-event
3568 ;; flash.events::event object)
3569 ;; = ("flash.events::ErrorEvent" "flash.events::TextEvent"
3570 ;; "flash.events::Event" "Object")
3571 ;; :interfaces NIL
3572 ;; = NIL
3573 :constants
3574 ((:+sec-uri-ty-error+ :swf-name "SECURITY_ERROR" :type string))
3575 :properties
3576 ((:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
3577 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
3578 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
3579 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
3580 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
3581 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
3582 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
3583 :methods
3584 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::security-error-event
3585 :args ())
3586 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::security-error-event
3587 :args ())
3588 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
3589 :args ())
3590 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
3591 :args ((:index 1 :type string :optional NIL)))
3592 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
3593 :args ())
3594 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
3595 :args ())
3596 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
3597 :args ())))
3599 (declare-swf-class flash.display::morph-shape (flash.display::display-object)
3600 :swf-name "flash.display::MorphShape"
3601 ;; :supers (flash.display::display-object flash.events::event-dispatcher
3602 ;; object)
3603 ;; = ("flash.display::DisplayObject" "flash.events::EventDispatcher"
3604 ;; "Object")
3605 ;; :interfaces (flash.display::i-bitmap-drawable
3606 ;; flash.events::i-event-dispatcher)
3607 ;; = ("flash.display::IBitmapDrawable"
3608 ;; "flash.events::IEventDispatcher")
3609 :constants
3611 :properties
3612 ((:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
3613 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
3614 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3615 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
3616 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
3617 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
3618 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
3619 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
3620 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
3621 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3622 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
3623 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
3624 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
3625 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
3626 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
3627 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
3628 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
3629 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
3630 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
3631 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
3632 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
3633 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
3634 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
3635 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
3636 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
3637 :methods
3638 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3639 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3640 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
3641 :args ((:index 1 :type flash.geom::point :optional NIL)))
3642 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
3643 :args ((:index 1 :type flash.geom::point :optional NIL)))
3644 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
3645 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3646 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3647 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3648 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
3649 :args ((:index 1 :type number :optional NIL)
3650 (:index 2 :type number :optional NIL)
3651 (:index 3 :type boolean :optional T)))
3652 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
3653 :args ((:index 1 :type string :optional NIL)))
3654 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
3655 :args ())
3656 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
3657 :args ((:index 1 :type string :optional NIL)
3658 (:index 2 :type function :optional NIL)
3659 (:index 3 :type boolean :optional T)))
3660 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
3661 :args ((:index 1 :type string :optional NIL)
3662 (:index 2 :type function :optional NIL)
3663 (:index 3 :type boolean :optional T)
3664 (:index 4 :type int :optional T)
3665 (:index 5 :type boolean :optional T)))
3666 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
3667 :args ((:index 1 :type string :optional NIL)))
3668 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
3669 :args ((:index 1 :type flash.events::event :optional NIL)))))
3671 (declare-swf-class flash.text::anti-alias-type (object)
3672 :swf-name "flash.text::AntiAliasType"
3673 ;; :supers (object)
3674 ;; = ("Object")
3675 ;; :interfaces NIL
3676 ;; = NIL
3677 :constants
3678 ((:+advanced+ :swf-name "ADVANCED" :type string)
3679 (:+normal+ :swf-name "NORMAL" :type string))
3680 :properties
3682 :methods
3685 (declare-swf-class flash.media::microphone (flash.events::event-dispatcher)
3686 :swf-name "flash.media::Microphone"
3687 ;; :supers (flash.events::event-dispatcher object)
3688 ;; = ("flash.events::EventDispatcher" "Object")
3689 ;; :interfaces (flash.events::i-event-dispatcher)
3690 ;; = ("flash.events::IEventDispatcher")
3691 :constants
3693 :properties
3694 ((:silence-level :swf-name "silenceLevel" :type number :access :readonly :declared-by flash.media::microphone)
3695 (:silence-timeout :swf-name "silenceTimeout" :type int :access :readonly :declared-by flash.media::microphone)
3696 (:muted :swf-name "muted" :type boolean :access :readonly :declared-by flash.media::microphone)
3697 (:use-echo-suppression :swf-name "useEchoSuppression" :type boolean :access :readonly :declared-by flash.media::microphone)
3698 (:activity-level :swf-name "activityLevel" :type number :access :readonly :declared-by flash.media::microphone)
3699 (:rate :swf-name "rate" :type int :access :readwrite :declared-by flash.media::microphone)
3700 (:index :swf-name "index" :type int :access :readonly :declared-by flash.media::microphone)
3701 (:gain :swf-name "gain" :type number :access :readwrite :declared-by flash.media::microphone)
3702 (:name :swf-name "name" :type string :access :readonly :declared-by flash.media::microphone)
3703 (:sound-transform :swf-name "soundTransform" :type flash.media::sound-transform :access :readwrite :declared-by flash.media::microphone))
3704 :methods
3705 ((:set-use-echo-suppression :swf-name "setUseEchoSuppression" :return-type void :declared-by flash.media::microphone
3706 :args ((:index 1 :type boolean :optional NIL)))
3707 (:set-silence-level :swf-name "setSilenceLevel" :return-type void :declared-by flash.media::microphone
3708 :args ((:index 1 :type number :optional NIL)
3709 (:index 2 :type int :optional T)))
3710 (:set-loop-back :swf-name "setLoopBack" :return-type void :declared-by flash.media::microphone
3711 :args ((:index 1 :type boolean :optional T)))
3712 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
3713 :args ((:index 1 :type string :optional NIL)))
3714 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
3715 :args ())
3716 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
3717 :args ((:index 1 :type string :optional NIL)
3718 (:index 2 :type function :optional NIL)
3719 (:index 3 :type boolean :optional T)))
3720 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
3721 :args ((:index 1 :type string :optional NIL)
3722 (:index 2 :type function :optional NIL)
3723 (:index 3 :type boolean :optional T)
3724 (:index 4 :type int :optional T)
3725 (:index 5 :type boolean :optional T)))
3726 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
3727 :args ((:index 1 :type string :optional NIL)))
3728 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
3729 :args ((:index 1 :type flash.events::event :optional NIL)))))
3731 (declare-swf-class flash.net::-url-loader-data-format (object)
3732 :swf-name "flash.net::URLLoaderDataFormat"
3733 ;; :supers (object)
3734 ;; = ("Object")
3735 ;; :interfaces NIL
3736 ;; = NIL
3737 :constants
3738 ((:+binary+ :swf-name "BINARY" :type string)
3739 (:+text+ :swf-name "TEXT" :type string)
3740 (:+variables+ :swf-name "VARIABLES" :type string))
3741 :properties
3743 :methods
3746 (declare-swf-class flash.media::sound-channel (flash.events::event-dispatcher)
3747 :swf-name "flash.media::SoundChannel"
3748 ;; :supers (flash.events::event-dispatcher object)
3749 ;; = ("flash.events::EventDispatcher" "Object")
3750 ;; :interfaces (flash.events::i-event-dispatcher)
3751 ;; = ("flash.events::IEventDispatcher")
3752 :constants
3754 :properties
3755 ((:right-peak :swf-name "rightPeak" :type number :access :readonly :declared-by flash.media::sound-channel)
3756 (:sound-transform :swf-name "soundTransform" :type flash.media::sound-transform :access :readwrite :declared-by flash.media::sound-channel)
3757 (:position :swf-name "position" :type number :access :readonly :declared-by flash.media::sound-channel)
3758 (:left-peak :swf-name "leftPeak" :type number :access :readonly :declared-by flash.media::sound-channel))
3759 :methods
3760 ((:stop :swf-name "stop" :return-type void :declared-by flash.media::sound-channel
3761 :args ())
3762 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
3763 :args ((:index 1 :type string :optional NIL)))
3764 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
3765 :args ())
3766 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
3767 :args ((:index 1 :type string :optional NIL)
3768 (:index 2 :type function :optional NIL)
3769 (:index 3 :type boolean :optional T)))
3770 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
3771 :args ((:index 1 :type string :optional NIL)
3772 (:index 2 :type function :optional NIL)
3773 (:index 3 :type boolean :optional T)
3774 (:index 4 :type int :optional T)
3775 (:index 5 :type boolean :optional T)))
3776 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
3777 :args ((:index 1 :type string :optional NIL)))
3778 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
3779 :args ((:index 1 :type flash.events::event :optional NIL)))))
3781 (declare-swf-class flash.events::context-menu-event (flash.events::event)
3782 :swf-name "flash.events::ContextMenuEvent"
3783 ;; :supers (flash.events::event object)
3784 ;; = ("flash.events::Event" "Object")
3785 ;; :interfaces NIL
3786 ;; = NIL
3787 :constants
3788 ((:+menu-item-select+ :swf-name "MENU_ITEM_SELECT" :type string)
3789 (:+menu-select+ :swf-name "MENU_SELECT" :type string))
3790 :properties
3791 ((:context-menu-owner :swf-name "contextMenuOwner" :type flash.display::interactive-object :access :readwrite :declared-by flash.events::context-menu-event)
3792 (:mouse-target :swf-name "mouseTarget" :type flash.display::interactive-object :access :readwrite :declared-by flash.events::context-menu-event)
3793 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
3794 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
3795 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
3796 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
3797 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
3798 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
3799 :methods
3800 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::context-menu-event
3801 :args ())
3802 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::context-menu-event
3803 :args ())
3804 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
3805 :args ())
3806 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
3807 :args ((:index 1 :type string :optional NIL)))
3808 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
3809 :args ())
3810 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
3811 :args ())
3812 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
3813 :args ())))
3815 (declare-swf-class flash.events::progress-event (flash.events::event)
3816 :swf-name "flash.events::ProgressEvent"
3817 ;; :supers (flash.events::event object)
3818 ;; = ("flash.events::Event" "Object")
3819 ;; :interfaces NIL
3820 ;; = NIL
3821 :constants
3822 ((:+progress+ :swf-name "PROGRESS" :type string)
3823 (:+socket-data+ :swf-name "SOCKET_DATA" :type string))
3824 :properties
3825 ((:bytes-loaded :swf-name "bytesLoaded" :type uint :access :readwrite :declared-by flash.events::progress-event)
3826 (:bytes-total :swf-name "bytesTotal" :type uint :access :readwrite :declared-by flash.events::progress-event)
3827 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
3828 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
3829 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
3830 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
3831 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
3832 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
3833 :methods
3834 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::progress-event
3835 :args ())
3836 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::progress-event
3837 :args ())
3838 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
3839 :args ())
3840 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
3841 :args ((:index 1 :type string :optional NIL)))
3842 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
3843 :args ())
3844 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
3845 :args ())
3846 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
3847 :args ())))
3849 (declare-swf-class flash.text::text-field (flash.display::interactive-object)
3850 :swf-name "flash.text::TextField"
3851 ;; :supers (flash.display::interactive-object
3852 ;; flash.display::display-object flash.events::event-dispatcher
3853 ;; object)
3854 ;; = ("flash.display::InteractiveObject"
3855 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
3856 ;; "Object")
3857 ;; :interfaces (flash.display::i-bitmap-drawable
3858 ;; flash.events::i-event-dispatcher)
3859 ;; = ("flash.display::IBitmapDrawable"
3860 ;; "flash.events::IEventDispatcher")
3861 :constants
3863 :properties
3864 ((:max-scroll-v :swf-name "maxScrollV" :type int :access :readonly :declared-by flash.text::text-field)
3865 (:selectable :swf-name "selectable" :type boolean :access :readwrite :declared-by flash.text::text-field)
3866 (:caret-index :swf-name "caretIndex" :type int :access :readonly :declared-by flash.text::text-field)
3867 (:bottom-scroll-v :swf-name "bottomScrollV" :type int :access :readonly :declared-by flash.text::text-field)
3868 (:html-text :swf-name "htmlText" :type string :access :readwrite :declared-by flash.text::text-field)
3869 (:scroll-h :swf-name "scrollH" :type int :access :readwrite :declared-by flash.text::text-field)
3870 (:num-lines :swf-name "numLines" :type int :access :readonly :declared-by flash.text::text-field)
3871 (:max-scroll-h :swf-name "maxScrollH" :type int :access :readonly :declared-by flash.text::text-field)
3872 (:thickness :swf-name "thickness" :type number :access :readwrite :declared-by flash.text::text-field)
3873 (:text :swf-name "text" :type string :access :readwrite :declared-by flash.text::text-field)
3874 (:selected-text :swf-name "selectedText" :type string :access :readonly :declared-by flash.text::text-field)
3875 (:display-as-password :swf-name "displayAsPassword" :type boolean :access :readwrite :declared-by flash.text::text-field)
3876 (:type :swf-name "type" :type string :access :readwrite :declared-by flash.text::text-field)
3877 (:embed-fonts :swf-name "embedFonts" :type boolean :access :readwrite :declared-by flash.text::text-field)
3878 (:style-sheet :swf-name "styleSheet" :type flash.text::style-sheet :access :readwrite :declared-by flash.text::text-field)
3879 (:mouse-wheel-enabled :swf-name "mouseWheelEnabled" :type boolean :access :readwrite :declared-by flash.text::text-field)
3880 (:multiline :swf-name "multiline" :type boolean :access :readwrite :declared-by flash.text::text-field)
3881 (:auto-size :swf-name "autoSize" :type string :access :readwrite :declared-by flash.text::text-field)
3882 (:condense-white :swf-name "condenseWhite" :type boolean :access :readwrite :declared-by flash.text::text-field)
3883 (:default-text-format :swf-name "defaultTextFormat" :type flash.text::text-format :access :readwrite :declared-by flash.text::text-field)
3884 (:max-chars :swf-name "maxChars" :type int :access :readwrite :declared-by flash.text::text-field)
3885 (:text-color :swf-name "textColor" :type uint :access :readwrite :declared-by flash.text::text-field)
3886 (:text-height :swf-name "textHeight" :type number :access :readonly :declared-by flash.text::text-field)
3887 (:sharpness :swf-name "sharpness" :type number :access :readwrite :declared-by flash.text::text-field)
3888 (:background-color :swf-name "backgroundColor" :type uint :access :readwrite :declared-by flash.text::text-field)
3889 (:always-show-selection :swf-name "alwaysShowSelection" :type boolean :access :readwrite :declared-by flash.text::text-field)
3890 (:anti-alias-type :swf-name "antiAliasType" :type string :access :readwrite :declared-by flash.text::text-field)
3891 (:word-wrap :swf-name "wordWrap" :type boolean :access :readwrite :declared-by flash.text::text-field)
3892 (:border-color :swf-name "borderColor" :type uint :access :readwrite :declared-by flash.text::text-field)
3893 (:selection-begin-index :swf-name "selectionBeginIndex" :type int :access :readonly :declared-by flash.text::text-field)
3894 (:selection-end-index :swf-name "selectionEndIndex" :type int :access :readonly :declared-by flash.text::text-field)
3895 (:background :swf-name "background" :type boolean :access :readwrite :declared-by flash.text::text-field)
3896 (:text-width :swf-name "textWidth" :type number :access :readonly :declared-by flash.text::text-field)
3897 (:grid-fit-type :swf-name "gridFitType" :type string :access :readwrite :declared-by flash.text::text-field)
3898 (:length :swf-name "length" :type int :access :readonly :declared-by flash.text::text-field)
3899 (:border :swf-name "border" :type boolean :access :readwrite :declared-by flash.text::text-field)
3900 (:use-rich-text-clipboard :swf-name "useRichTextClipboard" :type boolean :access :readwrite :declared-by flash.text::text-field)
3901 (:restrict :swf-name "restrict" :type string :access :readwrite :declared-by flash.text::text-field)
3902 (:scroll-v :swf-name "scrollV" :type int :access :readwrite :declared-by flash.text::text-field)
3903 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
3904 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
3905 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
3906 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
3907 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
3908 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
3909 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
3910 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
3911 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
3912 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3913 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
3914 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
3915 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
3916 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
3917 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
3918 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
3919 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
3920 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
3921 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
3922 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
3923 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
3924 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
3925 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
3926 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
3927 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
3928 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
3929 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
3930 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
3931 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
3932 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
3933 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
3934 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
3935 :methods
3936 ((:get-line-index-at-point :swf-name "getLineIndexAtPoint" :return-type int :declared-by flash.text::text-field
3937 :args ((:index 1 :type number :optional NIL)
3938 (:index 2 :type number :optional NIL)))
3939 (:append-text :swf-name "appendText" :return-type void :declared-by flash.text::text-field
3940 :args ((:index 1 :type string :optional NIL)))
3941 (:set-text-format :swf-name "setTextFormat" :return-type void :declared-by flash.text::text-field
3942 :args ((:index 1 :type flash.text::text-format :optional NIL)
3943 (:index 2 :type int :optional T)
3944 (:index 3 :type int :optional T)))
3945 (:insert-xml-text :swf-name "insertXMLText" :return-type void :declared-by flash.text::text-field
3946 :args ((:index 1 :type int :optional NIL)
3947 (:index 2 :type int :optional NIL)
3948 (:index 3 :type string :optional NIL)
3949 (:index 4 :type boolean :optional T)))
3950 (:set-selection :swf-name "setSelection" :return-type void :declared-by flash.text::text-field
3951 :args ((:index 1 :type int :optional NIL)
3952 (:index 2 :type int :optional NIL)))
3953 (:get-paragraph-length :swf-name "getParagraphLength" :return-type int :declared-by flash.text::text-field
3954 :args ((:index 1 :type int :optional NIL)))
3955 (:get-char-index-at-point :swf-name "getCharIndexAtPoint" :return-type int :declared-by flash.text::text-field
3956 :args ((:index 1 :type number :optional NIL)
3957 (:index 2 :type number :optional NIL)))
3958 (:get-line-text :swf-name "getLineText" :return-type string :declared-by flash.text::text-field
3959 :args ((:index 1 :type int :optional NIL)))
3960 (:get-raw-text :swf-name "getRawText" :return-type string :declared-by flash.text::text-field
3961 :args ())
3962 (:get-line-length :swf-name "getLineLength" :return-type int :declared-by flash.text::text-field
3963 :args ((:index 1 :type int :optional NIL)))
3964 (:replace-selected-text :swf-name "replaceSelectedText" :return-type void :declared-by flash.text::text-field
3965 :args ((:index 1 :type string :optional NIL)))
3966 (:get-line-metrics :swf-name "getLineMetrics" :return-type flash.text::text-line-metrics :declared-by flash.text::text-field
3967 :args ((:index 1 :type int :optional NIL)))
3968 (:get-first-char-in-paragraph :swf-name "getFirstCharInParagraph" :return-type int :declared-by flash.text::text-field
3969 :args ((:index 1 :type int :optional NIL)))
3970 (:replace-text :swf-name "replaceText" :return-type void :declared-by flash.text::text-field
3971 :args ((:index 1 :type int :optional NIL)
3972 (:index 2 :type int :optional NIL)
3973 (:index 3 :type string :optional NIL)))
3974 (:get-char-boundaries :swf-name "getCharBoundaries" :return-type flash.geom::rectangle :declared-by flash.text::text-field
3975 :args ((:index 1 :type int :optional NIL)))
3976 (:get-text-format :swf-name "getTextFormat" :return-type flash.text::text-format :declared-by flash.text::text-field
3977 :args ((:index 1 :type int :optional T)
3978 (:index 2 :type int :optional T)))
3979 (:get-text-runs :swf-name "getTextRuns" :return-type array :declared-by flash.text::text-field
3980 :args ((:index 1 :type int :optional T)
3981 (:index 2 :type int :optional T)))
3982 (:get-xml-text :swf-name "getXMLText" :return-type string :declared-by flash.text::text-field
3983 :args ((:index 1 :type int :optional T)
3984 (:index 2 :type int :optional T)))
3985 (:get-image-reference :swf-name "getImageReference" :return-type flash.display::display-object :declared-by flash.text::text-field
3986 :args ((:index 1 :type string :optional NIL)))
3987 (:get-line-offset :swf-name "getLineOffset" :return-type int :declared-by flash.text::text-field
3988 :args ((:index 1 :type int :optional NIL)))
3989 (:get-line-index-of-char :swf-name "getLineIndexOfChar" :return-type int :declared-by flash.text::text-field
3990 :args ((:index 1 :type int :optional NIL)))
3991 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
3992 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3993 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
3994 :args ((:index 1 :type flash.geom::point :optional NIL)))
3995 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
3996 :args ((:index 1 :type flash.geom::point :optional NIL)))
3997 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
3998 :args ((:index 1 :type flash.display::display-object :optional NIL)))
3999 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4000 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4001 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
4002 :args ((:index 1 :type number :optional NIL)
4003 (:index 2 :type number :optional NIL)
4004 (:index 3 :type boolean :optional T)))
4005 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4006 :args ((:index 1 :type string :optional NIL)))
4007 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4008 :args ())
4009 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4010 :args ((:index 1 :type string :optional NIL)
4011 (:index 2 :type function :optional NIL)
4012 (:index 3 :type boolean :optional T)))
4013 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4014 :args ((:index 1 :type string :optional NIL)
4015 (:index 2 :type function :optional NIL)
4016 (:index 3 :type boolean :optional T)
4017 (:index 4 :type int :optional T)
4018 (:index 5 :type boolean :optional T)))
4019 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4020 :args ((:index 1 :type string :optional NIL)))
4021 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4022 :args ((:index 1 :type flash.events::event :optional NIL)))))
4024 (declare-swf-class adobe.utils::-xml-ui (object)
4025 :swf-name "adobe.utils::XMLUI"
4026 ;; :supers (object)
4027 ;; = ("Object")
4028 ;; :interfaces NIL
4029 ;; = NIL
4030 :constants
4032 :properties
4034 :methods
4037 (declare-swf-class flash.ui::mouse (object)
4038 :swf-name "flash.ui::Mouse"
4039 ;; :supers (object)
4040 ;; = ("Object")
4041 ;; :interfaces NIL
4042 ;; = NIL
4043 :constants
4045 :properties
4047 :methods
4050 (declare-swf-class flash.events::activity-event (flash.events::event)
4051 :swf-name "flash.events::ActivityEvent"
4052 ;; :supers (flash.events::event object)
4053 ;; = ("flash.events::Event" "Object")
4054 ;; :interfaces NIL
4055 ;; = NIL
4056 :constants
4057 ((:+activity+ :swf-name "ACTIVITY" :type string))
4058 :properties
4059 ((:activating :swf-name "activating" :type boolean :access :readwrite :declared-by flash.events::activity-event)
4060 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
4061 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
4062 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
4063 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
4064 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
4065 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
4066 :methods
4067 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::activity-event
4068 :args ())
4069 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::activity-event
4070 :args ())
4071 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
4072 :args ())
4073 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
4074 :args ((:index 1 :type string :optional NIL)))
4075 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
4076 :args ())
4077 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
4078 :args ())
4079 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
4080 :args ())))
4082 (declare-swf-class flash.system::-ime (flash.events::event-dispatcher)
4083 :swf-name "flash.system::IME"
4084 ;; :supers (flash.events::event-dispatcher object)
4085 ;; = ("flash.events::EventDispatcher" "Object")
4086 ;; :interfaces (flash.events::i-event-dispatcher)
4087 ;; = ("flash.events::IEventDispatcher")
4088 :constants
4090 :properties
4092 :methods
4093 ((:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4094 :args ((:index 1 :type string :optional NIL)))
4095 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4096 :args ())
4097 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4098 :args ((:index 1 :type string :optional NIL)
4099 (:index 2 :type function :optional NIL)
4100 (:index 3 :type boolean :optional T)))
4101 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4102 :args ((:index 1 :type string :optional NIL)
4103 (:index 2 :type function :optional NIL)
4104 (:index 3 :type boolean :optional T)
4105 (:index 4 :type int :optional T)
4106 (:index 5 :type boolean :optional T)))
4107 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4108 :args ((:index 1 :type string :optional NIL)))
4109 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4110 :args ((:index 1 :type flash.events::event :optional NIL)))))
4112 (declare-swf-class flash.net::object-encoding (object)
4113 :swf-name "flash.net::ObjectEncoding"
4114 ;; :supers (object)
4115 ;; = ("Object")
4116 ;; :interfaces NIL
4117 ;; = NIL
4118 :constants
4119 ((:+amf3+ :swf-name "AMF3" :type uint)
4120 (:+amf0+ :swf-name "AMF0" :type uint)
4121 (:+default+ :swf-name "DEFAULT" :type uint))
4122 :properties
4124 :methods
4127 (declare-swf-class flash.printing::print-job-options (object)
4128 :swf-name "flash.printing::PrintJobOptions"
4129 ;; :supers (object)
4130 ;; = ("Object")
4131 ;; :interfaces NIL
4132 ;; = NIL
4133 :constants
4135 :properties
4137 :methods
4140 (declare-swf-class flash.events::data-event (flash.events::text-event)
4141 :swf-name "flash.events::DataEvent"
4142 ;; :supers (flash.events::text-event flash.events::event object)
4143 ;; = ("flash.events::TextEvent" "flash.events::Event" "Object")
4144 ;; :interfaces NIL
4145 ;; = NIL
4146 :constants
4147 ((:+data+ :swf-name "DATA" :type string)
4148 (:+upload-complete-data+ :swf-name "UPLOAD_COMPLETE_DATA" :type string))
4149 :properties
4150 ((:data :swf-name "data" :type string :access :readwrite :declared-by flash.events::data-event)
4151 (:text :swf-name "text" :type string :access :readwrite :declared-by flash.events::text-event)
4152 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
4153 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
4154 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
4155 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
4156 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
4157 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
4158 :methods
4159 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::data-event
4160 :args ())
4161 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::data-event
4162 :args ())
4163 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
4164 :args ())
4165 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
4166 :args ((:index 1 :type string :optional NIL)))
4167 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
4168 :args ())
4169 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
4170 :args ())
4171 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
4172 :args ())))
4174 (declare-swf-class flash.display::stage-quality (object)
4175 :swf-name "flash.display::StageQuality"
4176 ;; :supers (object)
4177 ;; = ("Object")
4178 ;; :interfaces NIL
4179 ;; = NIL
4180 :constants
4181 ((:+medium+ :swf-name "MEDIUM" :type string)
4182 (:+low+ :swf-name "LOW" :type string)
4183 (:+best+ :swf-name "BEST" :type string)
4184 (:+high+ :swf-name "HIGH" :type string))
4185 :properties
4187 :methods
4190 (declare-swf-class flash.net::-xml-socket (flash.events::event-dispatcher)
4191 :swf-name "flash.net::XMLSocket"
4192 ;; :supers (flash.events::event-dispatcher object)
4193 ;; = ("flash.events::EventDispatcher" "Object")
4194 ;; :interfaces (flash.events::i-event-dispatcher)
4195 ;; = ("flash.events::IEventDispatcher")
4196 :constants
4198 :properties
4199 ((:connected :swf-name "connected" :type boolean :access :readonly :declared-by flash.net::-xml-socket))
4200 :methods
4201 ((:connect :swf-name "connect" :return-type void :declared-by flash.net::-xml-socket
4202 :args ((:index 1 :type string :optional NIL)
4203 (:index 2 :type int :optional NIL)))
4204 (:send :swf-name "send" :return-type void :declared-by flash.net::-xml-socket
4205 :args ((:index 1 :type * :optional NIL)))
4206 (:close :swf-name "close" :return-type void :declared-by flash.net::-xml-socket
4207 :args ())
4208 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4209 :args ((:index 1 :type string :optional NIL)))
4210 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4211 :args ())
4212 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4213 :args ((:index 1 :type string :optional NIL)
4214 (:index 2 :type function :optional NIL)
4215 (:index 3 :type boolean :optional T)))
4216 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4217 :args ((:index 1 :type string :optional NIL)
4218 (:index 2 :type function :optional NIL)
4219 (:index 3 :type boolean :optional T)
4220 (:index 4 :type int :optional T)
4221 (:index 5 :type boolean :optional T)))
4222 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4223 :args ((:index 1 :type string :optional NIL)))
4224 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4225 :args ((:index 1 :type flash.events::event :optional NIL)))))
4227 (declare-swf-class flash.accessibility::accessibility-properties (object)
4228 :swf-name "flash.accessibility::AccessibilityProperties"
4229 ;; :supers (object)
4230 ;; = ("Object")
4231 ;; :interfaces NIL
4232 ;; = NIL
4233 :constants
4235 :properties
4237 :methods
4240 (declare-swf-class flash.net::-url-loader (flash.events::event-dispatcher)
4241 :swf-name "flash.net::URLLoader"
4242 ;; :supers (flash.events::event-dispatcher object)
4243 ;; = ("flash.events::EventDispatcher" "Object")
4244 ;; :interfaces (flash.events::i-event-dispatcher)
4245 ;; = ("flash.events::IEventDispatcher")
4246 :constants
4248 :properties
4250 :methods
4251 ((:close :swf-name "close" :return-type void :declared-by flash.net::-url-loader
4252 :args ())
4253 (:load :swf-name "load" :return-type void :declared-by flash.net::-url-loader
4254 :args ((:index 1 :type flash.net::-url-request :optional NIL)))
4255 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4256 :args ((:index 1 :type string :optional NIL)))
4257 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4258 :args ())
4259 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4260 :args ((:index 1 :type string :optional NIL)
4261 (:index 2 :type function :optional NIL)
4262 (:index 3 :type boolean :optional T)))
4263 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4264 :args ((:index 1 :type string :optional NIL)
4265 (:index 2 :type function :optional NIL)
4266 (:index 3 :type boolean :optional T)
4267 (:index 4 :type int :optional T)
4268 (:index 5 :type boolean :optional T)))
4269 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4270 :args ((:index 1 :type string :optional NIL)))
4271 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4272 :args ((:index 1 :type flash.events::event :optional NIL)))))
4274 (declare-swf-class flash.net::net-connection (flash.events::event-dispatcher)
4275 :swf-name "flash.net::NetConnection"
4276 ;; :supers (flash.events::event-dispatcher object)
4277 ;; = ("flash.events::EventDispatcher" "Object")
4278 ;; :interfaces (flash.events::i-event-dispatcher)
4279 ;; = ("flash.events::IEventDispatcher")
4280 :constants
4282 :properties
4283 ((:proxy-type :swf-name "proxyType" :type string :access :readwrite :declared-by flash.net::net-connection)
4284 (:connected-proxy-type :swf-name "connectedProxyType" :type string :access :readonly :declared-by flash.net::net-connection)
4285 (:using-tls :swf-name "usingTLS" :type boolean :access :readonly :declared-by flash.net::net-connection)
4286 (:client :swf-name "client" :type object :access :readwrite :declared-by flash.net::net-connection)
4287 (:uri :swf-name "uri" :type string :access :readonly :declared-by flash.net::net-connection)
4288 (:connected :swf-name "connected" :type boolean :access :readonly :declared-by flash.net::net-connection)
4289 (:object-encoding :swf-name "objectEncoding" :type uint :access :readwrite :declared-by flash.net::net-connection))
4290 :methods
4291 ((:connect :swf-name "connect" :return-type void :declared-by flash.net::net-connection
4292 :args ((:index 1 :type string :optional NIL)))
4293 (:call :swf-name "call" :return-type void :declared-by flash.net::net-connection
4294 :args ((:index 1 :type string :optional NIL)
4295 (:index 2 :type flash.net::responder :optional NIL)))
4296 (:add-header :swf-name "addHeader" :return-type void :declared-by flash.net::net-connection
4297 :args ((:index 1 :type string :optional NIL)
4298 (:index 2 :type boolean :optional T)
4299 (:index 3 :type object :optional T)))
4300 (:close :swf-name "close" :return-type void :declared-by flash.net::net-connection
4301 :args ())
4302 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4303 :args ((:index 1 :type string :optional NIL)))
4304 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4305 :args ())
4306 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4307 :args ((:index 1 :type string :optional NIL)
4308 (:index 2 :type function :optional NIL)
4309 (:index 3 :type boolean :optional T)))
4310 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4311 :args ((:index 1 :type string :optional NIL)
4312 (:index 2 :type function :optional NIL)
4313 (:index 3 :type boolean :optional T)
4314 (:index 4 :type int :optional T)
4315 (:index 5 :type boolean :optional T)))
4316 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4317 :args ((:index 1 :type string :optional NIL)))
4318 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4319 :args ((:index 1 :type flash.events::event :optional NIL)))))
4321 (declare-swf-class flash.display::display-object-container (flash.display::interactive-object)
4322 :swf-name "flash.display::DisplayObjectContainer"
4323 ;; :supers (flash.display::interactive-object
4324 ;; flash.display::display-object flash.events::event-dispatcher
4325 ;; object)
4326 ;; = ("flash.display::InteractiveObject"
4327 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
4328 ;; "Object")
4329 ;; :interfaces (flash.display::i-bitmap-drawable
4330 ;; flash.events::i-event-dispatcher)
4331 ;; = ("flash.display::IBitmapDrawable"
4332 ;; "flash.events::IEventDispatcher")
4333 :constants
4335 :properties
4336 ((:num-children :swf-name "numChildren" :type int :access :readonly :declared-by flash.display::display-object-container)
4337 (:mouse-children :swf-name "mouseChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
4338 (:text-snapshot :swf-name "textSnapshot" :type flash.text::text-snapshot :access :readonly :declared-by flash.display::display-object-container)
4339 (:tab-children :swf-name "tabChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
4340 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4341 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4342 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
4343 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
4344 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4345 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
4346 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
4347 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
4348 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
4349 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4350 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
4351 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
4352 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
4353 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
4354 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
4355 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
4356 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4357 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
4358 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
4359 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
4360 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
4361 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
4362 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
4363 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
4364 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
4365 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
4366 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
4367 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
4368 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
4369 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
4370 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
4371 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
4372 :methods
4373 ((:add-child :swf-name "addChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4374 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4375 (:are-inaccessible-objects-under-point :swf-name "areInaccessibleObjectsUnderPoint" :return-type boolean :declared-by flash.display::display-object-container
4376 :args ((:index 1 :type flash.geom::point :optional NIL)))
4377 (:add-child-at :swf-name "addChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4378 :args ((:index 1 :type flash.display::display-object :optional NIL)
4379 (:index 2 :type int :optional NIL)))
4380 (:set-child-index :swf-name "setChildIndex" :return-type void :declared-by flash.display::display-object-container
4381 :args ((:index 1 :type flash.display::display-object :optional NIL)
4382 (:index 2 :type int :optional NIL)))
4383 (:remove-child-at :swf-name "removeChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4384 :args ((:index 1 :type int :optional NIL)))
4385 (:contains :swf-name "contains" :return-type boolean :declared-by flash.display::display-object-container
4386 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4387 (:get-child-index :swf-name "getChildIndex" :return-type int :declared-by flash.display::display-object-container
4388 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4389 (:get-objects-under-point :swf-name "getObjectsUnderPoint" :return-type array :declared-by flash.display::display-object-container
4390 :args ((:index 1 :type flash.geom::point :optional NIL)))
4391 (:swap-children :swf-name "swapChildren" :return-type void :declared-by flash.display::display-object-container
4392 :args ((:index 1 :type flash.display::display-object :optional NIL)
4393 (:index 2 :type flash.display::display-object :optional NIL)))
4394 (:get-child-by-name :swf-name "getChildByName" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4395 :args ((:index 1 :type string :optional NIL)))
4396 (:remove-child :swf-name "removeChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4397 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4398 (:get-child-at :swf-name "getChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4399 :args ((:index 1 :type int :optional NIL)))
4400 (:swap-children-at :swf-name "swapChildrenAt" :return-type void :declared-by flash.display::display-object-container
4401 :args ((:index 1 :type int :optional NIL)
4402 (:index 2 :type int :optional NIL)))
4403 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4404 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4405 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
4406 :args ((:index 1 :type flash.geom::point :optional NIL)))
4407 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
4408 :args ((:index 1 :type flash.geom::point :optional NIL)))
4409 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
4410 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4411 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4412 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4413 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
4414 :args ((:index 1 :type number :optional NIL)
4415 (:index 2 :type number :optional NIL)
4416 (:index 3 :type boolean :optional T)))
4417 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4418 :args ((:index 1 :type string :optional NIL)))
4419 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4420 :args ())
4421 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4422 :args ((:index 1 :type string :optional NIL)
4423 (:index 2 :type function :optional NIL)
4424 (:index 3 :type boolean :optional T)))
4425 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4426 :args ((:index 1 :type string :optional NIL)
4427 (:index 2 :type function :optional NIL)
4428 (:index 3 :type boolean :optional T)
4429 (:index 4 :type int :optional T)
4430 (:index 5 :type boolean :optional T)))
4431 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4432 :args ((:index 1 :type string :optional NIL)))
4433 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4434 :args ((:index 1 :type flash.events::event :optional NIL)))))
4436 (declare-swf-class flash.display::sprite (flash.display::display-object-container)
4437 :swf-name "flash.display::Sprite"
4438 ;; :supers (flash.display::display-object-container
4439 ;; flash.display::interactive-object
4440 ;; flash.display::display-object flash.events::event-dispatcher
4441 ;; object)
4442 ;; = ("flash.display::DisplayObjectContainer"
4443 ;; "flash.display::InteractiveObject"
4444 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
4445 ;; "Object")
4446 ;; :interfaces (flash.events::i-event-dispatcher
4447 ;; flash.display::i-bitmap-drawable)
4448 ;; = ("flash.events::IEventDispatcher"
4449 ;; "flash.display::IBitmapDrawable")
4450 :constants
4452 :properties
4453 ((:graphics :swf-name "graphics" :type flash.display::graphics :access :readonly :declared-by flash.display::sprite)
4454 (:button-mode :swf-name "buttonMode" :type boolean :access :readwrite :declared-by flash.display::sprite)
4455 (:use-hand-cursor :swf-name "useHandCursor" :type boolean :access :readwrite :declared-by flash.display::sprite)
4456 (:drop-target :swf-name "dropTarget" :type flash.display::display-object :access :readonly :declared-by flash.display::sprite)
4457 (:hit-area :swf-name "hitArea" :type flash.display::sprite :access :readwrite :declared-by flash.display::sprite)
4458 (:sound-transform :swf-name "soundTransform" :type flash.media::sound-transform :access :readwrite :declared-by flash.display::sprite)
4459 (:num-children :swf-name "numChildren" :type int :access :readonly :declared-by flash.display::display-object-container)
4460 (:mouse-children :swf-name "mouseChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
4461 (:text-snapshot :swf-name "textSnapshot" :type flash.text::text-snapshot :access :readonly :declared-by flash.display::display-object-container)
4462 (:tab-children :swf-name "tabChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
4463 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4464 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4465 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
4466 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
4467 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4468 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
4469 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
4470 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
4471 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
4472 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4473 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
4474 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
4475 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
4476 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
4477 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
4478 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
4479 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4480 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
4481 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
4482 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
4483 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
4484 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
4485 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
4486 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
4487 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
4488 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
4489 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
4490 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
4491 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
4492 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
4493 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
4494 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
4495 :methods
4496 ((:start-drag :swf-name "startDrag" :return-type void :declared-by flash.display::sprite
4497 :args ((:index 1 :type boolean :optional T)
4498 (:index 2 :type flash.geom::rectangle :optional T)))
4499 (:stop-drag :swf-name "stopDrag" :return-type void :declared-by flash.display::sprite
4500 :args ())
4501 (:add-child :swf-name "addChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4502 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4503 (:are-inaccessible-objects-under-point :swf-name "areInaccessibleObjectsUnderPoint" :return-type boolean :declared-by flash.display::display-object-container
4504 :args ((:index 1 :type flash.geom::point :optional NIL)))
4505 (:add-child-at :swf-name "addChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4506 :args ((:index 1 :type flash.display::display-object :optional NIL)
4507 (:index 2 :type int :optional NIL)))
4508 (:set-child-index :swf-name "setChildIndex" :return-type void :declared-by flash.display::display-object-container
4509 :args ((:index 1 :type flash.display::display-object :optional NIL)
4510 (:index 2 :type int :optional NIL)))
4511 (:remove-child-at :swf-name "removeChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4512 :args ((:index 1 :type int :optional NIL)))
4513 (:contains :swf-name "contains" :return-type boolean :declared-by flash.display::display-object-container
4514 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4515 (:get-child-index :swf-name "getChildIndex" :return-type int :declared-by flash.display::display-object-container
4516 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4517 (:get-objects-under-point :swf-name "getObjectsUnderPoint" :return-type array :declared-by flash.display::display-object-container
4518 :args ((:index 1 :type flash.geom::point :optional NIL)))
4519 (:swap-children :swf-name "swapChildren" :return-type void :declared-by flash.display::display-object-container
4520 :args ((:index 1 :type flash.display::display-object :optional NIL)
4521 (:index 2 :type flash.display::display-object :optional NIL)))
4522 (:get-child-by-name :swf-name "getChildByName" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4523 :args ((:index 1 :type string :optional NIL)))
4524 (:remove-child :swf-name "removeChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4525 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4526 (:get-child-at :swf-name "getChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4527 :args ((:index 1 :type int :optional NIL)))
4528 (:swap-children-at :swf-name "swapChildrenAt" :return-type void :declared-by flash.display::display-object-container
4529 :args ((:index 1 :type int :optional NIL)
4530 (:index 2 :type int :optional NIL)))
4531 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4532 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4533 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
4534 :args ((:index 1 :type flash.geom::point :optional NIL)))
4535 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
4536 :args ((:index 1 :type flash.geom::point :optional NIL)))
4537 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
4538 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4539 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4540 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4541 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
4542 :args ((:index 1 :type number :optional NIL)
4543 (:index 2 :type number :optional NIL)
4544 (:index 3 :type boolean :optional T)))
4545 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4546 :args ((:index 1 :type string :optional NIL)))
4547 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4548 :args ())
4549 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4550 :args ((:index 1 :type string :optional NIL)
4551 (:index 2 :type function :optional NIL)
4552 (:index 3 :type boolean :optional T)))
4553 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4554 :args ((:index 1 :type string :optional NIL)
4555 (:index 2 :type function :optional NIL)
4556 (:index 3 :type boolean :optional T)
4557 (:index 4 :type int :optional T)
4558 (:index 5 :type boolean :optional T)))
4559 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4560 :args ((:index 1 :type string :optional NIL)))
4561 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4562 :args ((:index 1 :type flash.events::event :optional NIL)))))
4564 (declare-swf-class flash.display::movie-clip (flash.display::sprite)
4565 :swf-name "flash.display::MovieClip"
4566 ;; :supers (flash.display::sprite
4567 ;; flash.display::display-object-container
4568 ;; flash.display::interactive-object
4569 ;; flash.display::display-object flash.events::event-dispatcher
4570 ;; object)
4571 ;; = ("flash.display::Sprite" "flash.display::DisplayObjectContainer"
4572 ;; "flash.display::InteractiveObject"
4573 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
4574 ;; "Object")
4575 ;; :interfaces (flash.events::i-event-dispatcher
4576 ;; flash.display::i-bitmap-drawable)
4577 ;; = ("flash.events::IEventDispatcher"
4578 ;; "flash.display::IBitmapDrawable")
4579 :constants
4581 :properties
4582 ((:frames-loaded :swf-name "framesLoaded" :type int :access :readonly :declared-by flash.display::movie-clip)
4583 (:enabled :swf-name "enabled" :type boolean :access :readwrite :declared-by flash.display::movie-clip)
4584 (:current-label :swf-name "currentLabel" :type string :access :readonly :declared-by flash.display::movie-clip)
4585 (:current-labels :swf-name "currentLabels" :type array :access :readonly :declared-by flash.display::movie-clip)
4586 (:scenes :swf-name "scenes" :type array :access :readonly :declared-by flash.display::movie-clip)
4587 (:current-scene :swf-name "currentScene" :type flash.display::scene :access :readonly :declared-by flash.display::movie-clip)
4588 (:current-frame :swf-name "currentFrame" :type int :access :readonly :declared-by flash.display::movie-clip)
4589 (:track-as-menu :swf-name "trackAsMenu" :type boolean :access :readwrite :declared-by flash.display::movie-clip)
4590 (:total-frames :swf-name "totalFrames" :type int :access :readonly :declared-by flash.display::movie-clip)
4591 (:graphics :swf-name "graphics" :type flash.display::graphics :access :readonly :declared-by flash.display::sprite)
4592 (:button-mode :swf-name "buttonMode" :type boolean :access :readwrite :declared-by flash.display::sprite)
4593 (:use-hand-cursor :swf-name "useHandCursor" :type boolean :access :readwrite :declared-by flash.display::sprite)
4594 (:drop-target :swf-name "dropTarget" :type flash.display::display-object :access :readonly :declared-by flash.display::sprite)
4595 (:hit-area :swf-name "hitArea" :type flash.display::sprite :access :readwrite :declared-by flash.display::sprite)
4596 (:sound-transform :swf-name "soundTransform" :type flash.media::sound-transform :access :readwrite :declared-by flash.display::sprite)
4597 (:num-children :swf-name "numChildren" :type int :access :readonly :declared-by flash.display::display-object-container)
4598 (:mouse-children :swf-name "mouseChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
4599 (:text-snapshot :swf-name "textSnapshot" :type flash.text::text-snapshot :access :readonly :declared-by flash.display::display-object-container)
4600 (:tab-children :swf-name "tabChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
4601 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4602 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4603 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
4604 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
4605 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4606 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
4607 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
4608 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
4609 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
4610 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4611 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
4612 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
4613 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
4614 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
4615 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
4616 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
4617 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4618 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
4619 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
4620 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
4621 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
4622 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
4623 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
4624 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
4625 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
4626 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
4627 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
4628 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
4629 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
4630 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
4631 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
4632 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
4633 :methods
4634 ((:play :swf-name "play" :return-type void :declared-by flash.display::movie-clip
4635 :args ())
4636 (:goto-and-play :swf-name "gotoAndPlay" :return-type void :declared-by flash.display::movie-clip
4637 :args ((:index 1 :type object :optional NIL)
4638 (:index 2 :type string :optional T)))
4639 (:prev-frame :swf-name "prevFrame" :return-type void :declared-by flash.display::movie-clip
4640 :args ())
4641 (:goto-and-stop :swf-name "gotoAndStop" :return-type void :declared-by flash.display::movie-clip
4642 :args ((:index 1 :type object :optional NIL)
4643 (:index 2 :type string :optional T)))
4644 (:add-frame-script :swf-name "addFrameScript" :return-type void :declared-by flash.display::movie-clip
4645 :args ())
4646 (:stop :swf-name "stop" :return-type void :declared-by flash.display::movie-clip
4647 :args ())
4648 (:prev-scene :swf-name "prevScene" :return-type void :declared-by flash.display::movie-clip
4649 :args ())
4650 (:next-frame :swf-name "nextFrame" :return-type void :declared-by flash.display::movie-clip
4651 :args ())
4652 (:next-scene :swf-name "nextScene" :return-type void :declared-by flash.display::movie-clip
4653 :args ())
4654 (:start-drag :swf-name "startDrag" :return-type void :declared-by flash.display::sprite
4655 :args ((:index 1 :type boolean :optional T)
4656 (:index 2 :type flash.geom::rectangle :optional T)))
4657 (:stop-drag :swf-name "stopDrag" :return-type void :declared-by flash.display::sprite
4658 :args ())
4659 (:add-child :swf-name "addChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4660 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4661 (:are-inaccessible-objects-under-point :swf-name "areInaccessibleObjectsUnderPoint" :return-type boolean :declared-by flash.display::display-object-container
4662 :args ((:index 1 :type flash.geom::point :optional NIL)))
4663 (:add-child-at :swf-name "addChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4664 :args ((:index 1 :type flash.display::display-object :optional NIL)
4665 (:index 2 :type int :optional NIL)))
4666 (:set-child-index :swf-name "setChildIndex" :return-type void :declared-by flash.display::display-object-container
4667 :args ((:index 1 :type flash.display::display-object :optional NIL)
4668 (:index 2 :type int :optional NIL)))
4669 (:remove-child-at :swf-name "removeChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4670 :args ((:index 1 :type int :optional NIL)))
4671 (:contains :swf-name "contains" :return-type boolean :declared-by flash.display::display-object-container
4672 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4673 (:get-child-index :swf-name "getChildIndex" :return-type int :declared-by flash.display::display-object-container
4674 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4675 (:get-objects-under-point :swf-name "getObjectsUnderPoint" :return-type array :declared-by flash.display::display-object-container
4676 :args ((:index 1 :type flash.geom::point :optional NIL)))
4677 (:swap-children :swf-name "swapChildren" :return-type void :declared-by flash.display::display-object-container
4678 :args ((:index 1 :type flash.display::display-object :optional NIL)
4679 (:index 2 :type flash.display::display-object :optional NIL)))
4680 (:get-child-by-name :swf-name "getChildByName" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4681 :args ((:index 1 :type string :optional NIL)))
4682 (:remove-child :swf-name "removeChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4683 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4684 (:get-child-at :swf-name "getChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
4685 :args ((:index 1 :type int :optional NIL)))
4686 (:swap-children-at :swf-name "swapChildrenAt" :return-type void :declared-by flash.display::display-object-container
4687 :args ((:index 1 :type int :optional NIL)
4688 (:index 2 :type int :optional NIL)))
4689 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4690 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4691 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
4692 :args ((:index 1 :type flash.geom::point :optional NIL)))
4693 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
4694 :args ((:index 1 :type flash.geom::point :optional NIL)))
4695 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
4696 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4697 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4698 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4699 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
4700 :args ((:index 1 :type number :optional NIL)
4701 (:index 2 :type number :optional NIL)
4702 (:index 3 :type boolean :optional T)))
4703 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4704 :args ((:index 1 :type string :optional NIL)))
4705 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4706 :args ())
4707 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4708 :args ((:index 1 :type string :optional NIL)
4709 (:index 2 :type function :optional NIL)
4710 (:index 3 :type boolean :optional T)))
4711 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4712 :args ((:index 1 :type string :optional NIL)
4713 (:index 2 :type function :optional NIL)
4714 (:index 3 :type boolean :optional T)
4715 (:index 4 :type int :optional T)
4716 (:index 5 :type boolean :optional T)))
4717 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4718 :args ((:index 1 :type string :optional NIL)))
4719 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4720 :args ((:index 1 :type flash.events::event :optional NIL)))))
4722 (declare-swf-class flash.events::net-status-event (flash.events::event)
4723 :swf-name "flash.events::NetStatusEvent"
4724 ;; :supers (flash.events::event object)
4725 ;; = ("flash.events::Event" "Object")
4726 ;; :interfaces NIL
4727 ;; = NIL
4728 :constants
4729 ((:+net-status+ :swf-name "NET_STATUS" :type string))
4730 :properties
4731 ((:info :swf-name "info" :type object :access :readwrite :declared-by flash.events::net-status-event)
4732 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
4733 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
4734 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
4735 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
4736 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
4737 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
4738 :methods
4739 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::net-status-event
4740 :args ())
4741 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::net-status-event
4742 :args ())
4743 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
4744 :args ())
4745 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
4746 :args ((:index 1 :type string :optional NIL)))
4747 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
4748 :args ())
4749 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
4750 :args ())
4751 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
4752 :args ())))
4754 (declare-swf-class flash.text::grid-fit-type (object)
4755 :swf-name "flash.text::GridFitType"
4756 ;; :supers (object)
4757 ;; = ("Object")
4758 ;; :interfaces NIL
4759 ;; = NIL
4760 :constants
4761 ((:+subpixel+ :swf-name "SUBPIXEL" :type string)
4762 (:+pixel+ :swf-name "PIXEL" :type string)
4763 (:+none+ :swf-name "NONE" :type string))
4764 :properties
4766 :methods
4769 (declare-swf-class flash.display::caps-style (object)
4770 :swf-name "flash.display::CapsStyle"
4771 ;; :supers (object)
4772 ;; = ("Object")
4773 ;; :interfaces NIL
4774 ;; = NIL
4775 :constants
4776 ((:+none+ :swf-name "NONE" :type string)
4777 (:+round+ :swf-name "ROUND" :type string)
4778 (:+square+ :swf-name "SQUARE" :type string))
4779 :properties
4781 :methods
4784 (declare-swf-class flash.net::file-filter (object)
4785 :swf-name "flash.net::FileFilter"
4786 ;; :supers (object)
4787 ;; = ("Object")
4788 ;; :interfaces NIL
4789 ;; = NIL
4790 :constants
4792 :properties
4793 ((:mac-type :swf-name "macType" :type string :access :readwrite :declared-by flash.net::file-filter)
4794 (:description :swf-name "description" :type string :access :readwrite :declared-by flash.net::file-filter)
4795 (:extension :swf-name "extension" :type string :access :readwrite :declared-by flash.net::file-filter))
4796 :methods
4799 (declare-swf-class flash.net::-url-request-header (object)
4800 :swf-name "flash.net::URLRequestHeader"
4801 ;; :supers (object)
4802 ;; = ("Object")
4803 ;; :interfaces NIL
4804 ;; = NIL
4805 :constants
4807 :properties
4809 :methods
4812 (declare-swf-class flash.text::text-display-mode (object)
4813 :swf-name "flash.text::TextDisplayMode"
4814 ;; :supers (object)
4815 ;; = ("Object")
4816 ;; :interfaces NIL
4817 ;; = NIL
4818 :constants
4819 ((:+default+ :swf-name "DEFAULT" :type string)
4820 (:+lcd+ :swf-name "LCD" :type string)
4821 (:+crt+ :swf-name "CRT" :type string))
4822 :properties
4824 :methods
4827 (declare-swf-class flash.text::-csm-settings (object)
4828 :swf-name "flash.text::CSMSettings"
4829 ;; :supers (object)
4830 ;; = ("Object")
4831 ;; :interfaces NIL
4832 ;; = NIL
4833 :constants
4835 :properties
4837 :methods
4840 (declare-swf-class flash.utils::endian (object)
4841 :swf-name "flash.utils::Endian"
4842 ;; :supers (object)
4843 ;; = ("Object")
4844 ;; :interfaces NIL
4845 ;; = NIL
4846 :constants
4847 ((:+big-endian+ :swf-name "BIG_ENDIAN" :type string)
4848 (:+little-endian+ :swf-name "LITTLE_ENDIAN" :type string))
4849 :properties
4851 :methods
4854 (declare-swf-class flash.text::font-type (object)
4855 :swf-name "flash.text::FontType"
4856 ;; :supers (object)
4857 ;; = ("Object")
4858 ;; :interfaces NIL
4859 ;; = NIL
4860 :constants
4861 ((:+embedded+ :swf-name "EMBEDDED" :type string)
4862 (:+device+ :swf-name "DEVICE" :type string))
4863 :properties
4865 :methods
4868 (declare-swf-class flash.display::simple-button (flash.display::interactive-object)
4869 :swf-name "flash.display::SimpleButton"
4870 ;; :supers (flash.display::interactive-object
4871 ;; flash.display::display-object flash.events::event-dispatcher
4872 ;; object)
4873 ;; = ("flash.display::InteractiveObject"
4874 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
4875 ;; "Object")
4876 ;; :interfaces (flash.display::i-bitmap-drawable
4877 ;; flash.events::i-event-dispatcher)
4878 ;; = ("flash.display::IBitmapDrawable"
4879 ;; "flash.events::IEventDispatcher")
4880 :constants
4882 :properties
4883 ((:enabled :swf-name "enabled" :type boolean :access :readwrite :declared-by flash.display::simple-button)
4884 (:down-state :swf-name "downState" :type flash.display::display-object :access :readwrite :declared-by flash.display::simple-button)
4885 (:over-state :swf-name "overState" :type flash.display::display-object :access :readwrite :declared-by flash.display::simple-button)
4886 (:track-as-menu :swf-name "trackAsMenu" :type boolean :access :readwrite :declared-by flash.display::simple-button)
4887 (:use-hand-cursor :swf-name "useHandCursor" :type boolean :access :readwrite :declared-by flash.display::simple-button)
4888 (:up-state :swf-name "upState" :type flash.display::display-object :access :readwrite :declared-by flash.display::simple-button)
4889 (:sound-transform :swf-name "soundTransform" :type flash.media::sound-transform :access :readwrite :declared-by flash.display::simple-button)
4890 (:hit-test-state :swf-name "hitTestState" :type flash.display::display-object :access :readwrite :declared-by flash.display::simple-button)
4891 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4892 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4893 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
4894 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
4895 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
4896 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
4897 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
4898 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
4899 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
4900 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4901 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
4902 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
4903 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
4904 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
4905 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
4906 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
4907 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
4908 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
4909 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
4910 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
4911 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
4912 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
4913 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
4914 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
4915 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
4916 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
4917 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
4918 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
4919 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
4920 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
4921 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
4922 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
4923 :methods
4924 ((:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4925 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4926 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
4927 :args ((:index 1 :type flash.geom::point :optional NIL)))
4928 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
4929 :args ((:index 1 :type flash.geom::point :optional NIL)))
4930 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
4931 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4932 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
4933 :args ((:index 1 :type flash.display::display-object :optional NIL)))
4934 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
4935 :args ((:index 1 :type number :optional NIL)
4936 (:index 2 :type number :optional NIL)
4937 (:index 3 :type boolean :optional T)))
4938 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
4939 :args ((:index 1 :type string :optional NIL)))
4940 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
4941 :args ())
4942 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
4943 :args ((:index 1 :type string :optional NIL)
4944 (:index 2 :type function :optional NIL)
4945 (:index 3 :type boolean :optional T)))
4946 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
4947 :args ((:index 1 :type string :optional NIL)
4948 (:index 2 :type function :optional NIL)
4949 (:index 3 :type boolean :optional T)
4950 (:index 4 :type int :optional T)
4951 (:index 5 :type boolean :optional T)))
4952 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
4953 :args ((:index 1 :type string :optional NIL)))
4954 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
4955 :args ((:index 1 :type flash.events::event :optional NIL)))))
4957 (declare-swf-class flash.utils::proxy (object)
4958 :swf-name "flash.utils::Proxy"
4959 ;; :supers (object)
4960 ;; = ("Object")
4961 ;; :interfaces NIL
4962 ;; = NIL
4963 :constants
4965 :properties
4967 :methods
4968 ((:next-value :swf-name "nextValue" :return-type * :declared-by flash.utils::proxy
4969 :args ((:index 1 :type int :optional NIL)))
4970 (:set-property :swf-name "setProperty" :return-type void :declared-by flash.utils::proxy
4971 :args ((:index 1 :type * :optional NIL)
4972 (:index 2 :type * :optional NIL)))
4973 (:next-name-index :swf-name "nextNameIndex" :return-type int :declared-by flash.utils::proxy
4974 :args ((:index 1 :type int :optional NIL)))
4975 (:delete-property :swf-name "deleteProperty" :return-type boolean :declared-by flash.utils::proxy
4976 :args ((:index 1 :type * :optional NIL)))
4977 (:has-property :swf-name "hasProperty" :return-type boolean :declared-by flash.utils::proxy
4978 :args ((:index 1 :type * :optional NIL)))
4979 (:get-descendants :swf-name "getDescendants" :return-type * :declared-by flash.utils::proxy
4980 :args ((:index 1 :type * :optional NIL)))
4981 (:get-property :swf-name "getProperty" :return-type * :declared-by flash.utils::proxy
4982 :args ((:index 1 :type * :optional NIL)))
4983 (:is-attribute :swf-name "isAttribute" :return-type boolean :declared-by flash.utils::proxy
4984 :args ((:index 1 :type * :optional NIL)))
4985 (:next-name :swf-name "nextName" :return-type string :declared-by flash.utils::proxy
4986 :args ((:index 1 :type int :optional NIL)))
4987 (:call-property :swf-name "callProperty" :return-type * :declared-by flash.utils::proxy
4988 :args ((:index 1 :type * :optional NIL)))))
4990 (declare-swf-class flash.system::security-panel (object)
4991 :swf-name "flash.system::SecurityPanel"
4992 ;; :supers (object)
4993 ;; = ("Object")
4994 ;; :interfaces NIL
4995 ;; = NIL
4996 :constants
4997 ((:+local-storage+ :swf-name "LOCAL_STORAGE" :type string)
4998 (:+default+ :swf-name "DEFAULT" :type string)
4999 (:+microphone+ :swf-name "MICROPHONE" :type string)
5000 (:+display+ :swf-name "DISPLAY" :type string)
5001 (:+privacy+ :swf-name "PRIVACY" :type string)
5002 (:+camera+ :swf-name "CAMERA" :type string)
5003 (:+settings-manager+ :swf-name "SETTINGS_MANAGER" :type string))
5004 :properties
5006 :methods
5009 (declare-swf-class flash.filters::glow-filter (flash.filters::bitmap-filter)
5010 :swf-name "flash.filters::GlowFilter"
5011 ;; :supers (flash.filters::bitmap-filter object)
5012 ;; = ("flash.filters::BitmapFilter" "Object")
5013 ;; :interfaces NIL
5014 ;; = NIL
5015 :constants
5017 :properties
5018 ((:blur-y :swf-name "blurY" :type number :access :readwrite :declared-by flash.filters::glow-filter)
5019 (:strength :swf-name "strength" :type number :access :readwrite :declared-by flash.filters::glow-filter)
5020 (:blur-x :swf-name "blurX" :type number :access :readwrite :declared-by flash.filters::glow-filter)
5021 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.filters::glow-filter)
5022 (:color :swf-name "color" :type uint :access :readwrite :declared-by flash.filters::glow-filter)
5023 (:knockout :swf-name "knockout" :type boolean :access :readwrite :declared-by flash.filters::glow-filter)
5024 (:inner :swf-name "inner" :type boolean :access :readwrite :declared-by flash.filters::glow-filter)
5025 (:quality :swf-name "quality" :type int :access :readwrite :declared-by flash.filters::glow-filter))
5026 :methods
5027 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::glow-filter
5028 :args ())))
5030 (declare-swf-class flash.net::-url-variables (object)
5031 :swf-name "flash.net::URLVariables"
5032 ;; :supers (object)
5033 ;; = ("Object")
5034 ;; :interfaces NIL
5035 ;; = NIL
5036 :constants
5038 :properties
5040 :methods
5041 ((:decode :swf-name "decode" :return-type void :declared-by flash.net::-url-variables
5042 :args ((:index 1 :type string :optional NIL)))
5043 (:to-string :swf-name "toString" :return-type string :declared-by flash.net::-url-variables
5044 :args ())))
5046 (declare-swf-class flash.events::full-screen-event (flash.events::activity-event)
5047 :swf-name "flash.events::FullScreenEvent"
5048 ;; :supers (flash.events::activity-event flash.events::event object)
5049 ;; = ("flash.events::ActivityEvent" "flash.events::Event" "Object")
5050 ;; :interfaces NIL
5051 ;; = NIL
5052 :constants
5053 ((:+full-screen+ :swf-name "FULL_SCREEN" :type string))
5054 :properties
5055 ((:full-screen :swf-name "fullScreen" :type boolean :access :readonly :declared-by flash.events::full-screen-event)
5056 (:activating :swf-name "activating" :type boolean :access :readwrite :declared-by flash.events::activity-event)
5057 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
5058 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
5059 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
5060 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
5061 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
5062 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
5063 :methods
5064 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::full-screen-event
5065 :args ())
5066 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::full-screen-event
5067 :args ())
5068 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
5069 :args ())
5070 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
5071 :args ((:index 1 :type string :optional NIL)))
5072 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
5073 :args ())
5074 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
5075 :args ())
5076 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
5077 :args ())))
5079 (declare-swf-class flash.media::sound-loader-context (object)
5080 :swf-name "flash.media::SoundLoaderContext"
5081 ;; :supers (object)
5082 ;; = ("Object")
5083 ;; :interfaces NIL
5084 ;; = NIL
5085 :constants
5087 :properties
5089 :methods
5092 (declare-swf-class flash.net::file-reference-list (flash.events::event-dispatcher)
5093 :swf-name "flash.net::FileReferenceList"
5094 ;; :supers (flash.events::event-dispatcher object)
5095 ;; = ("flash.events::EventDispatcher" "Object")
5096 ;; :interfaces (flash.events::i-event-dispatcher)
5097 ;; = ("flash.events::IEventDispatcher")
5098 :constants
5100 :properties
5101 ((:file-list :swf-name "fileList" :type array :access :readonly :declared-by flash.net::file-reference-list))
5102 :methods
5103 ((:browse :swf-name "browse" :return-type boolean :declared-by flash.net::file-reference-list
5104 :args ((:index 1 :type array :optional T)))
5105 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
5106 :args ((:index 1 :type string :optional NIL)))
5107 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
5108 :args ())
5109 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
5110 :args ((:index 1 :type string :optional NIL)
5111 (:index 2 :type function :optional NIL)
5112 (:index 3 :type boolean :optional T)))
5113 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
5114 :args ((:index 1 :type string :optional NIL)
5115 (:index 2 :type function :optional NIL)
5116 (:index 3 :type boolean :optional T)
5117 (:index 4 :type int :optional T)
5118 (:index 5 :type boolean :optional T)))
5119 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
5120 :args ((:index 1 :type string :optional NIL)))
5121 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
5122 :args ((:index 1 :type flash.events::event :optional NIL)))))
5124 (declare-swf-class flash.filters::bitmap-filter-quality (object)
5125 :swf-name "flash.filters::BitmapFilterQuality"
5126 ;; :supers (object)
5127 ;; = ("Object")
5128 ;; :interfaces NIL
5129 ;; = NIL
5130 :constants
5131 ((:+low+ :swf-name "LOW" :type int)
5132 (:+high+ :swf-name "HIGH" :type int)
5133 (:+medium+ :swf-name "MEDIUM" :type int))
5134 :properties
5136 :methods
5139 (declare-swf-class flash.display::graphics (object)
5140 :swf-name "flash.display::Graphics"
5141 ;; :supers (object)
5142 ;; = ("Object")
5143 ;; :interfaces NIL
5144 ;; = NIL
5145 :constants
5147 :properties
5149 :methods
5150 ((:begin-bitmap-fill :swf-name "beginBitmapFill" :return-type void :declared-by flash.display::graphics
5151 :args ((:index 1 :type flash.display::bitmap-data :optional NIL)
5152 (:index 2 :type flash.geom::matrix :optional T)
5153 (:index 3 :type boolean :optional T)
5154 (:index 4 :type boolean :optional T)))
5155 (:line-gradient-style :swf-name "lineGradientStyle" :return-type void :declared-by flash.display::graphics
5156 :args ((:index 1 :type string :optional NIL)
5157 (:index 2 :type array :optional NIL)
5158 (:index 3 :type array :optional NIL)
5159 (:index 4 :type array :optional NIL)
5160 (:index 5 :type flash.geom::matrix :optional T)
5161 (:index 6 :type string :optional T)
5162 (:index 7 :type string :optional T)
5163 (:index 8 :type number :optional T)))
5164 (:begin-fill :swf-name "beginFill" :return-type void :declared-by flash.display::graphics
5165 :args ((:index 1 :type uint :optional NIL)
5166 (:index 2 :type number :optional T)))
5167 (:draw-ellipse :swf-name "drawEllipse" :return-type void :declared-by flash.display::graphics
5168 :args ((:index 1 :type number :optional NIL)
5169 (:index 2 :type number :optional NIL)
5170 (:index 3 :type number :optional NIL)
5171 (:index 4 :type number :optional NIL)))
5172 (:line-style :swf-name "lineStyle" :return-type void :declared-by flash.display::graphics
5173 :args ((:index 1 :type number :optional T)
5174 (:index 2 :type uint :optional T)
5175 (:index 3 :type number :optional T)
5176 (:index 4 :type boolean :optional T)
5177 (:index 5 :type string :optional T)
5178 (:index 6 :type string :optional T)
5179 (:index 7 :type string :optional T)
5180 (:index 8 :type number :optional T)))
5181 (:draw-round-rect :swf-name "drawRoundRect" :return-type void :declared-by flash.display::graphics
5182 :args ((:index 1 :type number :optional NIL)
5183 (:index 2 :type number :optional NIL)
5184 (:index 3 :type number :optional NIL)
5185 (:index 4 :type number :optional NIL)
5186 (:index 5 :type number :optional NIL)
5187 (:index 6 :type number :optional T)))
5188 (:curve-to :swf-name "curveTo" :return-type void :declared-by flash.display::graphics
5189 :args ((:index 1 :type number :optional NIL)
5190 (:index 2 :type number :optional NIL)
5191 (:index 3 :type number :optional NIL)
5192 (:index 4 :type number :optional NIL)))
5193 (:clear :swf-name "clear" :return-type void :declared-by flash.display::graphics
5194 :args ())
5195 (:line-to :swf-name "lineTo" :return-type void :declared-by flash.display::graphics
5196 :args ((:index 1 :type number :optional NIL)
5197 (:index 2 :type number :optional NIL)))
5198 (:draw-rect :swf-name "drawRect" :return-type void :declared-by flash.display::graphics
5199 :args ((:index 1 :type number :optional NIL)
5200 (:index 2 :type number :optional NIL)
5201 (:index 3 :type number :optional NIL)
5202 (:index 4 :type number :optional NIL)))
5203 (:end-fill :swf-name "endFill" :return-type void :declared-by flash.display::graphics
5204 :args ())
5205 (:draw-circle :swf-name "drawCircle" :return-type void :declared-by flash.display::graphics
5206 :args ((:index 1 :type number :optional NIL)
5207 (:index 2 :type number :optional NIL)
5208 (:index 3 :type number :optional NIL)))
5209 (:draw-round-rect-complex :swf-name "drawRoundRectComplex" :return-type void :declared-by flash.display::graphics
5210 :args ((:index 1 :type number :optional NIL)
5211 (:index 2 :type number :optional NIL)
5212 (:index 3 :type number :optional NIL)
5213 (:index 4 :type number :optional NIL)
5214 (:index 5 :type number :optional NIL)
5215 (:index 6 :type number :optional NIL)
5216 (:index 7 :type number :optional NIL)
5217 (:index 8 :type number :optional NIL)))
5218 (:begin-gradient-fill :swf-name "beginGradientFill" :return-type void :declared-by flash.display::graphics
5219 :args ((:index 1 :type string :optional NIL)
5220 (:index 2 :type array :optional NIL)
5221 (:index 3 :type array :optional NIL)
5222 (:index 4 :type array :optional NIL)
5223 (:index 5 :type flash.geom::matrix :optional T)
5224 (:index 6 :type string :optional T)
5225 (:index 7 :type string :optional T)
5226 (:index 8 :type number :optional T)))
5227 (:move-to :swf-name "moveTo" :return-type void :declared-by flash.display::graphics
5228 :args ((:index 1 :type number :optional NIL)
5229 (:index 2 :type number :optional NIL)))))
5231 (declare-swf-class flash.text::text-format (object)
5232 :swf-name "flash.text::TextFormat"
5233 ;; :supers (object)
5234 ;; = ("Object")
5235 ;; :interfaces NIL
5236 ;; = NIL
5237 :constants
5239 :properties
5240 ((:indent :swf-name "indent" :type object :access :readwrite :declared-by flash.text::text-format)
5241 (:right-margin :swf-name "rightMargin" :type object :access :readwrite :declared-by flash.text::text-format)
5242 (:left-margin :swf-name "leftMargin" :type object :access :readwrite :declared-by flash.text::text-format)
5243 (:align :swf-name "align" :type string :access :readwrite :declared-by flash.text::text-format)
5244 (:display :swf-name "display" :type string :access :readwrite :declared-by flash.text::text-format)
5245 (:color :swf-name "color" :type object :access :readwrite :declared-by flash.text::text-format)
5246 (:leading :swf-name "leading" :type object :access :readwrite :declared-by flash.text::text-format)
5247 (:underline :swf-name "underline" :type object :access :readwrite :declared-by flash.text::text-format)
5248 (:target :swf-name "target" :type string :access :readwrite :declared-by flash.text::text-format)
5249 (:italic :swf-name "italic" :type object :access :readwrite :declared-by flash.text::text-format)
5250 (:url :swf-name "url" :type string :access :readwrite :declared-by flash.text::text-format)
5251 (:bold :swf-name "bold" :type object :access :readwrite :declared-by flash.text::text-format)
5252 (:font :swf-name "font" :type string :access :readwrite :declared-by flash.text::text-format)
5253 (:kerning :swf-name "kerning" :type object :access :readwrite :declared-by flash.text::text-format)
5254 (:size :swf-name "size" :type object :access :readwrite :declared-by flash.text::text-format)
5255 (:tab-stops :swf-name "tabStops" :type array :access :readwrite :declared-by flash.text::text-format)
5256 (:letter-spacing :swf-name "letterSpacing" :type object :access :readwrite :declared-by flash.text::text-format)
5257 (:block-indent :swf-name "blockIndent" :type object :access :readwrite :declared-by flash.text::text-format)
5258 (:bullet :swf-name "bullet" :type object :access :readwrite :declared-by flash.text::text-format))
5259 :methods
5262 (declare-swf-class flash.events::timer-event (flash.events::event)
5263 :swf-name "flash.events::TimerEvent"
5264 ;; :supers (flash.events::event object)
5265 ;; = ("flash.events::Event" "Object")
5266 ;; :interfaces NIL
5267 ;; = NIL
5268 :constants
5269 ((:+t-ime-r-complete+ :swf-name "TIMER_COMPLETE" :type string)
5270 (:+t-ime-r+ :swf-name "TIMER" :type string))
5271 :properties
5272 ((:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
5273 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
5274 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
5275 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
5276 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
5277 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
5278 :methods
5279 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::timer-event
5280 :args ())
5281 (:update-after-event :swf-name "updateAfterEvent" :return-type void :declared-by flash.events::timer-event
5282 :args ())
5283 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::timer-event
5284 :args ())
5285 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
5286 :args ())
5287 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
5288 :args ((:index 1 :type string :optional NIL)))
5289 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
5290 :args ())
5291 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
5292 :args ())
5293 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
5294 :args ())))
5296 (declare-swf-class flash.utils::i-externalizable ()
5297 :swf-name "flash.utils::IExternalizable"
5298 ;; :supers NIL
5299 ;; = NIL
5300 ;; :interfaces NIL
5301 ;; = NIL
5302 :constants
5304 :properties
5306 :methods
5307 ((:read-external :swf-name "readExternal" :return-type void :declared-by flash.utils::i-externalizable
5308 :args ((:index 1 :type flash.utils::i-data-input :optional NIL)))
5309 (:write-external :swf-name "writeExternal" :return-type void :declared-by flash.utils::i-externalizable
5310 :args ((:index 1 :type flash.utils::i-data-output :optional NIL)))))
5312 (declare-swf-class flash.media::sound (flash.events::event-dispatcher)
5313 :swf-name "flash.media::Sound"
5314 ;; :supers (flash.events::event-dispatcher object)
5315 ;; = ("flash.events::EventDispatcher" "Object")
5316 ;; :interfaces (flash.events::i-event-dispatcher)
5317 ;; = ("flash.events::IEventDispatcher")
5318 :constants
5320 :properties
5321 ((:id3 :swf-name "id3" :type flash.media::-id3info :access :readonly :declared-by flash.media::sound)
5322 (:bytes-loaded :swf-name "bytesLoaded" :type uint :access :readonly :declared-by flash.media::sound)
5323 (:is-buffering :swf-name "isBuffering" :type boolean :access :readonly :declared-by flash.media::sound)
5324 (:url :swf-name "url" :type string :access :readonly :declared-by flash.media::sound)
5325 (:bytes-total :swf-name "bytesTotal" :type int :access :readonly :declared-by flash.media::sound)
5326 (:length :swf-name "length" :type number :access :readonly :declared-by flash.media::sound))
5327 :methods
5328 ((:load :swf-name "load" :return-type void :declared-by flash.media::sound
5329 :args ((:index 1 :type flash.net::-url-request :optional NIL)
5330 (:index 2 :type flash.media::sound-loader-context :optional T)))
5331 (:close :swf-name "close" :return-type void :declared-by flash.media::sound
5332 :args ())
5333 (:play :swf-name "play" :return-type flash.media::sound-channel :declared-by flash.media::sound
5334 :args ((:index 1 :type number :optional T)
5335 (:index 2 :type int :optional T)
5336 (:index 3 :type flash.media::sound-transform :optional T)))
5337 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
5338 :args ((:index 1 :type string :optional NIL)))
5339 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
5340 :args ())
5341 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
5342 :args ((:index 1 :type string :optional NIL)
5343 (:index 2 :type function :optional NIL)
5344 (:index 3 :type boolean :optional T)))
5345 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
5346 :args ((:index 1 :type string :optional NIL)
5347 (:index 2 :type function :optional NIL)
5348 (:index 3 :type boolean :optional T)
5349 (:index 4 :type int :optional T)
5350 (:index 5 :type boolean :optional T)))
5351 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
5352 :args ((:index 1 :type string :optional NIL)))
5353 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
5354 :args ((:index 1 :type flash.events::event :optional NIL)))))
5356 (declare-swf-class flash.text::style-sheet (flash.events::event-dispatcher)
5357 :swf-name "flash.text::StyleSheet"
5358 ;; :supers (flash.events::event-dispatcher object)
5359 ;; = ("flash.events::EventDispatcher" "Object")
5360 ;; :interfaces (flash.events::i-event-dispatcher)
5361 ;; = ("flash.events::IEventDispatcher")
5362 :constants
5364 :properties
5365 ((:style-names :swf-name "styleNames" :type array :access :readonly :declared-by flash.text::style-sheet))
5366 :methods
5367 ((:parse-css :swf-name "parseCSS" :return-type void :declared-by flash.text::style-sheet
5368 :args ((:index 1 :type string :optional NIL)))
5369 (:set-style :swf-name "setStyle" :return-type void :declared-by flash.text::style-sheet
5370 :args ((:index 1 :type string :optional NIL)
5371 (:index 2 :type object :optional NIL)))
5372 (:transform :swf-name "transform" :return-type flash.text::text-format :declared-by flash.text::style-sheet
5373 :args ((:index 1 :type object :optional NIL)))
5374 (:clear :swf-name "clear" :return-type void :declared-by flash.text::style-sheet
5375 :args ())
5376 (:get-style :swf-name "getStyle" :return-type object :declared-by flash.text::style-sheet
5377 :args ((:index 1 :type string :optional NIL)))
5378 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
5379 :args ((:index 1 :type string :optional NIL)))
5380 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
5381 :args ())
5382 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
5383 :args ((:index 1 :type string :optional NIL)
5384 (:index 2 :type function :optional NIL)
5385 (:index 3 :type boolean :optional T)))
5386 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
5387 :args ((:index 1 :type string :optional NIL)
5388 (:index 2 :type function :optional NIL)
5389 (:index 3 :type boolean :optional T)
5390 (:index 4 :type int :optional T)
5391 (:index 5 :type boolean :optional T)))
5392 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
5393 :args ((:index 1 :type string :optional NIL)))
5394 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
5395 :args ((:index 1 :type flash.events::event :optional NIL)))))
5397 (declare-swf-class flash.display::loader (flash.display::display-object-container)
5398 :swf-name "flash.display::Loader"
5399 ;; :supers (flash.display::display-object-container
5400 ;; flash.display::interactive-object
5401 ;; flash.display::display-object flash.events::event-dispatcher
5402 ;; object)
5403 ;; = ("flash.display::DisplayObjectContainer"
5404 ;; "flash.display::InteractiveObject"
5405 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
5406 ;; "Object")
5407 ;; :interfaces (flash.events::i-event-dispatcher
5408 ;; flash.display::i-bitmap-drawable)
5409 ;; = ("flash.events::IEventDispatcher"
5410 ;; "flash.display::IBitmapDrawable")
5411 :constants
5413 :properties
5414 ((:content-loader-info :swf-name "contentLoaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::loader)
5415 (:content :swf-name "content" :type flash.display::display-object :access :readonly :declared-by flash.display::loader)
5416 (:num-children :swf-name "numChildren" :type int :access :readonly :declared-by flash.display::display-object-container)
5417 (:mouse-children :swf-name "mouseChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
5418 (:text-snapshot :swf-name "textSnapshot" :type flash.text::text-snapshot :access :readonly :declared-by flash.display::display-object-container)
5419 (:tab-children :swf-name "tabChildren" :type boolean :access :readwrite :declared-by flash.display::display-object-container)
5420 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5421 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5422 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
5423 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
5424 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5425 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
5426 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
5427 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
5428 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
5429 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
5430 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
5431 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
5432 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
5433 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
5434 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
5435 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
5436 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
5437 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
5438 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
5439 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
5440 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
5441 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
5442 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
5443 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
5444 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
5445 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::display-object)
5446 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
5447 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
5448 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
5449 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
5450 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
5451 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::display-object))
5452 :methods
5453 ((:add-child :swf-name "addChild" :return-type flash.display::display-object :declared-by flash.display::loader
5454 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5455 (:add-child-at :swf-name "addChildAt" :return-type flash.display::display-object :declared-by flash.display::loader
5456 :args ((:index 1 :type flash.display::display-object :optional NIL)
5457 (:index 2 :type int :optional NIL)))
5458 (:set-child-index :swf-name "setChildIndex" :return-type void :declared-by flash.display::loader
5459 :args ((:index 1 :type flash.display::display-object :optional NIL)
5460 (:index 2 :type int :optional NIL)))
5461 (:remove-child-at :swf-name "removeChildAt" :return-type flash.display::display-object :declared-by flash.display::loader
5462 :args ((:index 1 :type int :optional NIL)))
5463 (:remove-child :swf-name "removeChild" :return-type flash.display::display-object :declared-by flash.display::loader
5464 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5465 (:load :swf-name "load" :return-type void :declared-by flash.display::loader
5466 :args ((:index 1 :type flash.net::-url-request :optional NIL)
5467 (:index 2 :type flash.system::loader-context :optional T)))
5468 (:load-bytes :swf-name "loadBytes" :return-type void :declared-by flash.display::loader
5469 :args ((:index 1 :type flash.utils::byte-array :optional NIL)
5470 (:index 2 :type flash.system::loader-context :optional T)))
5471 (:unload :swf-name "unload" :return-type void :declared-by flash.display::loader
5472 :args ())
5473 (:close :swf-name "close" :return-type void :declared-by flash.display::loader
5474 :args ())
5475 (:are-inaccessible-objects-under-point :swf-name "areInaccessibleObjectsUnderPoint" :return-type boolean :declared-by flash.display::display-object-container
5476 :args ((:index 1 :type flash.geom::point :optional NIL)))
5477 (:contains :swf-name "contains" :return-type boolean :declared-by flash.display::display-object-container
5478 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5479 (:get-child-index :swf-name "getChildIndex" :return-type int :declared-by flash.display::display-object-container
5480 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5481 (:get-objects-under-point :swf-name "getObjectsUnderPoint" :return-type array :declared-by flash.display::display-object-container
5482 :args ((:index 1 :type flash.geom::point :optional NIL)))
5483 (:swap-children :swf-name "swapChildren" :return-type void :declared-by flash.display::display-object-container
5484 :args ((:index 1 :type flash.display::display-object :optional NIL)
5485 (:index 2 :type flash.display::display-object :optional NIL)))
5486 (:get-child-by-name :swf-name "getChildByName" :return-type flash.display::display-object :declared-by flash.display::display-object-container
5487 :args ((:index 1 :type string :optional NIL)))
5488 (:get-child-at :swf-name "getChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
5489 :args ((:index 1 :type int :optional NIL)))
5490 (:swap-children-at :swf-name "swapChildrenAt" :return-type void :declared-by flash.display::display-object-container
5491 :args ((:index 1 :type int :optional NIL)
5492 (:index 2 :type int :optional NIL)))
5493 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
5494 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5495 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
5496 :args ((:index 1 :type flash.geom::point :optional NIL)))
5497 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
5498 :args ((:index 1 :type flash.geom::point :optional NIL)))
5499 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
5500 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5501 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
5502 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5503 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
5504 :args ((:index 1 :type number :optional NIL)
5505 (:index 2 :type number :optional NIL)
5506 (:index 3 :type boolean :optional T)))
5507 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
5508 :args ((:index 1 :type string :optional NIL)))
5509 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
5510 :args ())
5511 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
5512 :args ((:index 1 :type string :optional NIL)
5513 (:index 2 :type function :optional NIL)
5514 (:index 3 :type boolean :optional T)))
5515 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
5516 :args ((:index 1 :type string :optional NIL)
5517 (:index 2 :type function :optional NIL)
5518 (:index 3 :type boolean :optional T)
5519 (:index 4 :type int :optional T)
5520 (:index 5 :type boolean :optional T)))
5521 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
5522 :args ((:index 1 :type string :optional NIL)))
5523 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
5524 :args ((:index 1 :type flash.events::event :optional NIL)))))
5526 (declare-swf-class flash.display::blend-mode (object)
5527 :swf-name "flash.display::BlendMode"
5528 ;; :supers (object)
5529 ;; = ("Object")
5530 ;; :interfaces NIL
5531 ;; = NIL
5532 :constants
5533 ((:+subtract+ :swf-name "SUBTRACT" :type string)
5534 (:+screen+ :swf-name "SCREEN" :type string)
5535 (:+add+ :swf-name "ADD" :type string)
5536 (:+layer+ :swf-name "LAYER" :type string)
5537 (:+multiply+ :swf-name "MULTIPLY" :type string)
5538 (:+darken+ :swf-name "DARKEN" :type string)
5539 (:+overlay+ :swf-name "OVERLAY" :type string)
5540 (:+normal+ :swf-name "NORMAL" :type string)
5541 (:+hardlight+ :swf-name "HARDLIGHT" :type string)
5542 (:+invert+ :swf-name "INVERT" :type string)
5543 (:+erase+ :swf-name "ERASE" :type string)
5544 (:+lighten+ :swf-name "LIGHTEN" :type string)
5545 (:+alpha+ :swf-name "ALPHA" :type string)
5546 (:+difference+ :swf-name "DIFFERENCE" :type string))
5547 :properties
5549 :methods
5552 (declare-swf-class flash.geom::point (object)
5553 :swf-name "flash.geom::Point"
5554 ;; :supers (object)
5555 ;; = ("Object")
5556 ;; :interfaces NIL
5557 ;; = NIL
5558 :constants
5560 :properties
5561 ((:length :swf-name "length" :type number :access :readonly :declared-by flash.geom::point))
5562 :methods
5563 ((:subtract :swf-name "subtract" :return-type flash.geom::point :declared-by flash.geom::point
5564 :args ((:index 1 :type flash.geom::point :optional NIL)))
5565 (:equals :swf-name "equals" :return-type boolean :declared-by flash.geom::point
5566 :args ((:index 1 :type flash.geom::point :optional NIL)))
5567 (:to-string :swf-name "toString" :return-type string :declared-by flash.geom::point
5568 :args ())
5569 (:clone :swf-name "clone" :return-type flash.geom::point :declared-by flash.geom::point
5570 :args ())
5571 (:add :swf-name "add" :return-type flash.geom::point :declared-by flash.geom::point
5572 :args ((:index 1 :type flash.geom::point :optional NIL)))
5573 (:normalize :swf-name "normalize" :return-type void :declared-by flash.geom::point
5574 :args ((:index 1 :type number :optional NIL)))
5575 (:offset :swf-name "offset" :return-type void :declared-by flash.geom::point
5576 :args ((:index 1 :type number :optional NIL)
5577 (:index 2 :type number :optional NIL)))))
5579 (declare-swf-class flash.events::mouse-event (flash.events::event)
5580 :swf-name "flash.events::MouseEvent"
5581 ;; :supers (flash.events::event object)
5582 ;; = ("flash.events::Event" "Object")
5583 ;; :interfaces NIL
5584 ;; = NIL
5585 :constants
5586 ((:+roll-out+ :swf-name "ROLL_OUT" :type string)
5587 (:+mouse-down+ :swf-name "MOUSE_DOWN" :type string)
5588 (:+mouse-up+ :swf-name "MOUSE_UP" :type string)
5589 (:+mouse-wheel+ :swf-name "MOUSE_WHEEL" :type string)
5590 (:+mouse-over+ :swf-name "MOUSE_OVER" :type string)
5591 (:+click+ :swf-name "CLICK" :type string)
5592 (:+roll-over+ :swf-name "ROLL_OVER" :type string)
5593 (:+double-click+ :swf-name "DOUBLE_CLICK" :type string)
5594 (:+mouse-move+ :swf-name "MOUSE_MOVE" :type string)
5595 (:+mouse-out+ :swf-name "MOUSE_OUT" :type string))
5596 :properties
5597 ((:alt-key :swf-name "altKey" :type boolean :access :readwrite :declared-by flash.events::mouse-event)
5598 (:delta :swf-name "delta" :type int :access :readwrite :declared-by flash.events::mouse-event)
5599 (:ctrl-key :swf-name "ctrlKey" :type boolean :access :readwrite :declared-by flash.events::mouse-event)
5600 (:stage-y :swf-name "stageY" :type number :access :readonly :declared-by flash.events::mouse-event)
5601 (:stage-x :swf-name "stageX" :type number :access :readonly :declared-by flash.events::mouse-event)
5602 (:local-y :swf-name "localY" :type number :access :readwrite :declared-by flash.events::mouse-event)
5603 (:local-x :swf-name "localX" :type number :access :readwrite :declared-by flash.events::mouse-event)
5604 (:shift-key :swf-name "shiftKey" :type boolean :access :readwrite :declared-by flash.events::mouse-event)
5605 (:related-object :swf-name "relatedObject" :type flash.display::interactive-object :access :readwrite :declared-by flash.events::mouse-event)
5606 (:button-down :swf-name "buttonDown" :type boolean :access :readwrite :declared-by flash.events::mouse-event)
5607 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
5608 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
5609 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
5610 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
5611 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
5612 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
5613 :methods
5614 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::mouse-event
5615 :args ())
5616 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::mouse-event
5617 :args ())
5618 (:update-after-event :swf-name "updateAfterEvent" :return-type void :declared-by flash.events::mouse-event
5619 :args ())
5620 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
5621 :args ())
5622 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
5623 :args ((:index 1 :type string :optional NIL)))
5624 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
5625 :args ())
5626 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
5627 :args ())
5628 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
5629 :args ())))
5631 (declare-swf-class flash.text::font (object)
5632 :swf-name "flash.text::Font"
5633 ;; :supers (object)
5634 ;; = ("Object")
5635 ;; :interfaces NIL
5636 ;; = NIL
5637 :constants
5639 :properties
5640 ((:font-style :swf-name "fontStyle" :type string :access :readonly :declared-by flash.text::font)
5641 (:font-type :swf-name "fontType" :type string :access :readonly :declared-by flash.text::font)
5642 (:font-name :swf-name "fontName" :type string :access :readonly :declared-by flash.text::font))
5643 :methods
5644 ((:has-glyphs :swf-name "hasGlyphs" :return-type boolean :declared-by flash.text::font
5645 :args ((:index 1 :type string :optional NIL)))))
5647 (declare-swf-class flash.display::stage (flash.display::display-object-container)
5648 :swf-name "flash.display::Stage"
5649 ;; :supers (flash.display::display-object-container
5650 ;; flash.display::interactive-object
5651 ;; flash.display::display-object flash.events::event-dispatcher
5652 ;; object)
5653 ;; = ("flash.display::DisplayObjectContainer"
5654 ;; "flash.display::InteractiveObject"
5655 ;; "flash.display::DisplayObject" "flash.events::EventDispatcher"
5656 ;; "Object")
5657 ;; :interfaces (flash.events::i-event-dispatcher
5658 ;; flash.display::i-bitmap-drawable)
5659 ;; = ("flash.events::IEventDispatcher"
5660 ;; "flash.display::IBitmapDrawable")
5661 :constants
5663 :properties
5664 ((:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
5665 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
5666 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
5667 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
5668 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5669 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
5670 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
5671 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
5672 (:tab-children :swf-name "tabChildren" :type boolean :access :readwrite :declared-by flash.display::stage)
5673 (:num-children :swf-name "numChildren" :type int :access :readonly :declared-by flash.display::stage)
5674 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
5675 (:display-state :swf-name "displayState" :type string :access :readwrite :declared-by flash.display::stage)
5676 (:height :swf-name "height" :type number :access :readwrite :declared-by flash.display::stage)
5677 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
5678 (:mouse-children :swf-name "mouseChildren" :type boolean :access :readwrite :declared-by flash.display::stage)
5679 (:text-snapshot :swf-name "textSnapshot" :type flash.text::text-snapshot :access :readonly :declared-by flash.display::stage)
5680 (:width :swf-name "width" :type number :access :readwrite :declared-by flash.display::stage)
5681 (:quality :swf-name "quality" :type string :access :readwrite :declared-by flash.display::stage)
5682 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object)
5683 (:full-screen-height :swf-name "fullScreenHeight" :type uint :access :readonly :declared-by flash.display::stage)
5684 (:stage-width :swf-name "stageWidth" :type int :access :readwrite :declared-by flash.display::stage)
5685 (:show-default-context-menu :swf-name "showDefaultContextMenu" :type boolean :access :readwrite :declared-by flash.display::stage)
5686 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5687 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
5688 (:full-screen-source-rect :swf-name "fullScreenSourceRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::stage)
5689 (:frame-rate :swf-name "frameRate" :type number :access :readwrite :declared-by flash.display::stage)
5690 (:scale-mode :swf-name "scaleMode" :type string :access :readwrite :declared-by flash.display::stage)
5691 (:full-screen-width :swf-name "fullScreenWidth" :type uint :access :readonly :declared-by flash.display::stage)
5692 (:align :swf-name "align" :type string :access :readwrite :declared-by flash.display::stage)
5693 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
5694 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
5695 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
5696 (:stage-focus-rect :swf-name "stageFocusRect" :type boolean :access :readwrite :declared-by flash.display::stage)
5697 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
5698 (:stage-height :swf-name "stageHeight" :type int :access :readwrite :declared-by flash.display::stage)
5699 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
5700 (:focus :swf-name "focus" :type flash.display::interactive-object :access :readwrite :declared-by flash.display::stage)
5701 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
5702 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
5703 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
5704 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
5705 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
5706 (:double-click-enabled :swf-name "doubleClickEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5707 (:tab-enabled :swf-name "tabEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5708 (:tab-index :swf-name "tabIndex" :type int :access :readwrite :declared-by flash.display::interactive-object)
5709 (:focus-rect :swf-name "focusRect" :type object :access :readwrite :declared-by flash.display::interactive-object)
5710 (:mouse-enabled :swf-name "mouseEnabled" :type boolean :access :readwrite :declared-by flash.display::interactive-object)
5711 (:accessibility-implementation :swf-name "accessibilityImplementation" :type flash.accessibility::accessibility-implementation :access :readwrite :declared-by flash.display::interactive-object)
5712 (:context-menu :swf-name "contextMenu" :type flash.ui::context-menu :access :readwrite :declared-by flash.display::interactive-object)
5713 (:rotation :swf-name "rotation" :type number :access :readwrite :declared-by flash.display::display-object)
5714 (:cache-as-bitmap :swf-name "cacheAsBitmap" :type boolean :access :readwrite :declared-by flash.display::display-object)
5715 (:scroll-rect :swf-name "scrollRect" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
5716 (:filters :swf-name "filters" :type array :access :readwrite :declared-by flash.display::display-object)
5717 (:accessibility-properties :swf-name "accessibilityProperties" :type flash.accessibility::accessibility-properties :access :readwrite :declared-by flash.display::display-object)
5718 (:mouse-x :swf-name "mouseX" :type number :access :readonly :declared-by flash.display::display-object)
5719 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.display::display-object)
5720 (:parent :swf-name "parent" :type flash.display::display-object-container :access :readonly :declared-by flash.display::display-object)
5721 (:root :swf-name "root" :type flash.display::display-object :access :readonly :declared-by flash.display::display-object)
5722 (:scale9grid :swf-name "scale9Grid" :type flash.geom::rectangle :access :readwrite :declared-by flash.display::display-object)
5723 (:loader-info :swf-name "loaderInfo" :type flash.display::loader-info :access :readonly :declared-by flash.display::display-object)
5724 (:scale-y :swf-name "scaleY" :type number :access :readwrite :declared-by flash.display::display-object)
5725 (:x :swf-name "x" :type number :access :readwrite :declared-by flash.display::display-object)
5726 (:visible :swf-name "visible" :type boolean :access :readwrite :declared-by flash.display::display-object)
5727 (:blend-mode :swf-name "blendMode" :type string :access :readwrite :declared-by flash.display::display-object)
5728 (:mouse-y :swf-name "mouseY" :type number :access :readonly :declared-by flash.display::display-object)
5729 (:stage :swf-name "stage" :type flash.display::stage :access :readonly :declared-by flash.display::display-object)
5730 (:scale-x :swf-name "scaleX" :type number :access :readwrite :declared-by flash.display::display-object)
5731 (:mask :swf-name "mask" :type flash.display::display-object :access :readwrite :declared-by flash.display::display-object)
5732 (:transform :swf-name "transform" :type flash.geom::transform :access :readwrite :declared-by flash.display::display-object)
5733 (:y :swf-name "y" :type number :access :readwrite :declared-by flash.display::display-object)
5734 (:name :swf-name "name" :type string :access :readwrite :declared-by flash.display::display-object)
5735 (:opaque-background :swf-name "opaqueBackground" :type object :access :readwrite :declared-by flash.display::display-object))
5736 :methods
5737 ((:remove-child-at :swf-name "removeChildAt" :return-type flash.display::display-object :declared-by flash.display::stage
5738 :args ((:index 1 :type int :optional NIL)))
5739 (:swap-children-at :swf-name "swapChildrenAt" :return-type void :declared-by flash.display::stage
5740 :args ((:index 1 :type int :optional NIL)
5741 (:index 2 :type int :optional NIL)))
5742 (:add-child-at :swf-name "addChildAt" :return-type flash.display::display-object :declared-by flash.display::stage
5743 :args ((:index 1 :type flash.display::display-object :optional NIL)
5744 (:index 2 :type int :optional NIL)))
5745 (:set-child-index :swf-name "setChildIndex" :return-type void :declared-by flash.display::stage
5746 :args ((:index 1 :type flash.display::display-object :optional NIL)
5747 (:index 2 :type int :optional NIL)))
5748 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.display::stage
5749 :args ((:index 1 :type string :optional NIL)
5750 (:index 2 :type function :optional NIL)
5751 (:index 3 :type boolean :optional T)
5752 (:index 4 :type int :optional T)
5753 (:index 5 :type boolean :optional T)))
5754 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.display::stage
5755 :args ((:index 1 :type flash.events::event :optional NIL)))
5756 (:is-focus-inaccessible :swf-name "isFocusInaccessible" :return-type boolean :declared-by flash.display::stage
5757 :args ())
5758 (:add-child :swf-name "addChild" :return-type flash.display::display-object :declared-by flash.display::stage
5759 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5760 (:invalidate :swf-name "invalidate" :return-type void :declared-by flash.display::stage
5761 :args ())
5762 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.display::stage
5763 :args ((:index 1 :type string :optional NIL)))
5764 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.display::stage
5765 :args ((:index 1 :type string :optional NIL)))
5766 (:are-inaccessible-objects-under-point :swf-name "areInaccessibleObjectsUnderPoint" :return-type boolean :declared-by flash.display::display-object-container
5767 :args ((:index 1 :type flash.geom::point :optional NIL)))
5768 (:contains :swf-name "contains" :return-type boolean :declared-by flash.display::display-object-container
5769 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5770 (:get-child-index :swf-name "getChildIndex" :return-type int :declared-by flash.display::display-object-container
5771 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5772 (:get-objects-under-point :swf-name "getObjectsUnderPoint" :return-type array :declared-by flash.display::display-object-container
5773 :args ((:index 1 :type flash.geom::point :optional NIL)))
5774 (:swap-children :swf-name "swapChildren" :return-type void :declared-by flash.display::display-object-container
5775 :args ((:index 1 :type flash.display::display-object :optional NIL)
5776 (:index 2 :type flash.display::display-object :optional NIL)))
5777 (:get-child-by-name :swf-name "getChildByName" :return-type flash.display::display-object :declared-by flash.display::display-object-container
5778 :args ((:index 1 :type string :optional NIL)))
5779 (:remove-child :swf-name "removeChild" :return-type flash.display::display-object :declared-by flash.display::display-object-container
5780 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5781 (:get-child-at :swf-name "getChildAt" :return-type flash.display::display-object :declared-by flash.display::display-object-container
5782 :args ((:index 1 :type int :optional NIL)))
5783 (:get-bounds :swf-name "getBounds" :return-type flash.geom::rectangle :declared-by flash.display::display-object
5784 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5785 (:global-to-local :swf-name "globalToLocal" :return-type flash.geom::point :declared-by flash.display::display-object
5786 :args ((:index 1 :type flash.geom::point :optional NIL)))
5787 (:local-to-global :swf-name "localToGlobal" :return-type flash.geom::point :declared-by flash.display::display-object
5788 :args ((:index 1 :type flash.geom::point :optional NIL)))
5789 (:hit-test-object :swf-name "hitTestObject" :return-type boolean :declared-by flash.display::display-object
5790 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5791 (:get-rect :swf-name "getRect" :return-type flash.geom::rectangle :declared-by flash.display::display-object
5792 :args ((:index 1 :type flash.display::display-object :optional NIL)))
5793 (:hit-test-point :swf-name "hitTestPoint" :return-type boolean :declared-by flash.display::display-object
5794 :args ((:index 1 :type number :optional NIL)
5795 (:index 2 :type number :optional NIL)
5796 (:index 3 :type boolean :optional T)))
5797 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
5798 :args ())
5799 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
5800 :args ((:index 1 :type string :optional NIL)
5801 (:index 2 :type function :optional NIL)
5802 (:index 3 :type boolean :optional T)))))
5804 (declare-swf-class flash.system::loader-context (object)
5805 :swf-name "flash.system::LoaderContext"
5806 ;; :supers (object)
5807 ;; = ("Object")
5808 ;; :interfaces NIL
5809 ;; = NIL
5810 :constants
5812 :properties
5814 :methods
5817 (declare-swf-class flash.geom::transform (object)
5818 :swf-name "flash.geom::Transform"
5819 ;; :supers (object)
5820 ;; = ("Object")
5821 ;; :interfaces NIL
5822 ;; = NIL
5823 :constants
5825 :properties
5826 ((:matrix :swf-name "matrix" :type flash.geom::matrix :access :readwrite :declared-by flash.geom::transform)
5827 (:concatenated-matrix :swf-name "concatenatedMatrix" :type flash.geom::matrix :access :readonly :declared-by flash.geom::transform)
5828 (:pixel-bounds :swf-name "pixelBounds" :type flash.geom::rectangle :access :readonly :declared-by flash.geom::transform)
5829 (:concatenated-color-transform :swf-name "concatenatedColorTransform" :type flash.geom::color-transform :access :readonly :declared-by flash.geom::transform)
5830 (:color-transform :swf-name "colorTransform" :type flash.geom::color-transform :access :readwrite :declared-by flash.geom::transform))
5831 :methods
5834 (declare-swf-class flash.system::security (object)
5835 :swf-name "flash.system::Security"
5836 ;; :supers (object)
5837 ;; = ("Object")
5838 ;; :interfaces NIL
5839 ;; = NIL
5840 :constants
5841 ((:+local-trusted+ :swf-name "LOCAL_TRUSTED" :type string)
5842 (:+remote+ :swf-name "REMOTE" :type string)
5843 (:+local-with-network+ :swf-name "LOCAL_WITH_NETWORK" :type string)
5844 (:+local-with-file+ :swf-name "LOCAL_WITH_FILE" :type string))
5845 :properties
5847 :methods
5850 (declare-swf-class flash.events::keyboard-event (flash.events::event)
5851 :swf-name "flash.events::KeyboardEvent"
5852 ;; :supers (flash.events::event object)
5853 ;; = ("flash.events::Event" "Object")
5854 ;; :interfaces NIL
5855 ;; = NIL
5856 :constants
5857 ((:+key-down+ :swf-name "KEY_DOWN" :type string)
5858 (:+key-up+ :swf-name "KEY_UP" :type string))
5859 :properties
5860 ((:alt-key :swf-name "altKey" :type boolean :access :readwrite :declared-by flash.events::keyboard-event)
5861 (:key-location :swf-name "keyLocation" :type uint :access :readwrite :declared-by flash.events::keyboard-event)
5862 (:key-code :swf-name "keyCode" :type uint :access :readwrite :declared-by flash.events::keyboard-event)
5863 (:shift-key :swf-name "shiftKey" :type boolean :access :readwrite :declared-by flash.events::keyboard-event)
5864 (:char-code :swf-name "charCode" :type uint :access :readwrite :declared-by flash.events::keyboard-event)
5865 (:ctrl-key :swf-name "ctrlKey" :type boolean :access :readwrite :declared-by flash.events::keyboard-event)
5866 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
5867 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
5868 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
5869 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
5870 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
5871 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
5872 :methods
5873 ((:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::keyboard-event
5874 :args ())
5875 (:update-after-event :swf-name "updateAfterEvent" :return-type void :declared-by flash.events::keyboard-event
5876 :args ())
5877 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::keyboard-event
5878 :args ())
5879 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
5880 :args ())
5881 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
5882 :args ((:index 1 :type string :optional NIL)))
5883 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
5884 :args ())
5885 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
5886 :args ())
5887 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
5888 :args ())))
5890 (declare-swf-class flash.display::spread-method (object)
5891 :swf-name "flash.display::SpreadMethod"
5892 ;; :supers (object)
5893 ;; = ("Object")
5894 ;; :interfaces NIL
5895 ;; = NIL
5896 :constants
5897 ((:+pad+ :swf-name "PAD" :type string)
5898 (:+reflect+ :swf-name "REFLECT" :type string)
5899 (:+repeat+ :swf-name "REPEAT" :type string))
5900 :properties
5902 :methods
5905 (declare-swf-class flash.events::event-phase (object)
5906 :swf-name "flash.events::EventPhase"
5907 ;; :supers (object)
5908 ;; = ("Object")
5909 ;; :interfaces NIL
5910 ;; = NIL
5911 :constants
5912 ((:+bubbling-phase+ :swf-name "BUBBLING_PHASE" :type uint)
5913 (:+capt-uri-ng-phase+ :swf-name "CAPTURING_PHASE" :type uint)
5914 (:+at-target+ :swf-name "AT_TARGET" :type uint))
5915 :properties
5917 :methods
5920 (declare-swf-class flash.display::pixel-snapping (object)
5921 :swf-name "flash.display::PixelSnapping"
5922 ;; :supers (object)
5923 ;; = ("Object")
5924 ;; :interfaces NIL
5925 ;; = NIL
5926 :constants
5927 ((:+always+ :swf-name "ALWAYS" :type string)
5928 (:+auto+ :swf-name "AUTO" :type string)
5929 (:+never+ :swf-name "NEVER" :type string))
5930 :properties
5932 :methods
5935 (declare-swf-class flash.text::text-line-metrics (object)
5936 :swf-name "flash.text::TextLineMetrics"
5937 ;; :supers (object)
5938 ;; = ("Object")
5939 ;; :interfaces NIL
5940 ;; = NIL
5941 :constants
5943 :properties
5945 :methods
5948 (declare-swf-class flash.net::file-reference (flash.events::event-dispatcher)
5949 :swf-name "flash.net::FileReference"
5950 ;; :supers (flash.events::event-dispatcher object)
5951 ;; = ("flash.events::EventDispatcher" "Object")
5952 ;; :interfaces (flash.events::i-event-dispatcher)
5953 ;; = ("flash.events::IEventDispatcher")
5954 :constants
5956 :properties
5957 ((:size :swf-name "size" :type uint :access :readonly :declared-by flash.net::file-reference)
5958 (:creator :swf-name "creator" :type string :access :readonly :declared-by flash.net::file-reference)
5959 (:type :swf-name "type" :type string :access :readonly :declared-by flash.net::file-reference)
5960 (:creation-date :swf-name "creationDate" :type date :access :readonly :declared-by flash.net::file-reference)
5961 (:modification-date :swf-name "modificationDate" :type date :access :readonly :declared-by flash.net::file-reference)
5962 (:name :swf-name "name" :type string :access :readonly :declared-by flash.net::file-reference))
5963 :methods
5964 ((:upload :swf-name "upload" :return-type void :declared-by flash.net::file-reference
5965 :args ((:index 1 :type flash.net::-url-request :optional NIL)
5966 (:index 2 :type string :optional T)
5967 (:index 3 :type boolean :optional T)))
5968 (:download :swf-name "download" :return-type void :declared-by flash.net::file-reference
5969 :args ((:index 1 :type flash.net::-url-request :optional NIL)
5970 (:index 2 :type string :optional T)))
5971 (:cancel :swf-name "cancel" :return-type void :declared-by flash.net::file-reference
5972 :args ())
5973 (:browse :swf-name "browse" :return-type boolean :declared-by flash.net::file-reference
5974 :args ((:index 1 :type array :optional T)))
5975 (:has-event-listener :swf-name "hasEventListener" :return-type boolean :declared-by flash.events::event-dispatcher
5976 :args ((:index 1 :type string :optional NIL)))
5977 (:to-string :swf-name "toString" :return-type string :declared-by flash.events::event-dispatcher
5978 :args ())
5979 (:remove-event-listener :swf-name "removeEventListener" :return-type void :declared-by flash.events::event-dispatcher
5980 :args ((:index 1 :type string :optional NIL)
5981 (:index 2 :type function :optional NIL)
5982 (:index 3 :type boolean :optional T)))
5983 (:add-event-listener :swf-name "addEventListener" :return-type void :declared-by flash.events::event-dispatcher
5984 :args ((:index 1 :type string :optional NIL)
5985 (:index 2 :type function :optional NIL)
5986 (:index 3 :type boolean :optional T)
5987 (:index 4 :type int :optional T)
5988 (:index 5 :type boolean :optional T)))
5989 (:will-trigger :swf-name "willTrigger" :return-type boolean :declared-by flash.events::event-dispatcher
5990 :args ((:index 1 :type string :optional NIL)))
5991 (:dispatch-event :swf-name "dispatchEvent" :return-type boolean :declared-by flash.events::event-dispatcher
5992 :args ((:index 1 :type flash.events::event :optional NIL)))))
5994 (declare-swf-class flash.display::stage-scale-mode (object)
5995 :swf-name "flash.display::StageScaleMode"
5996 ;; :supers (object)
5997 ;; = ("Object")
5998 ;; :interfaces NIL
5999 ;; = NIL
6000 :constants
6001 ((:+exact-fit+ :swf-name "EXACT_FIT" :type string)
6002 (:+no-scale+ :swf-name "NO_SCALE" :type string)
6003 (:+show-all+ :swf-name "SHOW_ALL" :type string)
6004 (:+no-border+ :swf-name "NO_BORDER" :type string))
6005 :properties
6007 :methods
6010 (declare-swf-class flash.text::text-field-auto-size (object)
6011 :swf-name "flash.text::TextFieldAutoSize"
6012 ;; :supers (object)
6013 ;; = ("Object")
6014 ;; :interfaces NIL
6015 ;; = NIL
6016 :constants
6017 ((:+center+ :swf-name "CENTER" :type string)
6018 (:+right+ :swf-name "RIGHT" :type string)
6019 (:+left+ :swf-name "LEFT" :type string)
6020 (:+none+ :swf-name "NONE" :type string))
6021 :properties
6023 :methods
6026 (declare-swf-class flash.net::shared-object-flush-status (object)
6027 :swf-name "flash.net::SharedObjectFlushStatus"
6028 ;; :supers (object)
6029 ;; = ("Object")
6030 ;; :interfaces NIL
6031 ;; = NIL
6032 :constants
6033 ((:+flushed+ :swf-name "FLUSHED" :type string)
6034 (:+pending+ :swf-name "PENDING" :type string))
6035 :properties
6037 :methods
6040 (declare-swf-class flash.printing::print-job-orientation (object)
6041 :swf-name "flash.printing::PrintJobOrientation"
6042 ;; :supers (object)
6043 ;; = ("Object")
6044 ;; :interfaces NIL
6045 ;; = NIL
6046 :constants
6047 ((:+landscape+ :swf-name "LANDSCAPE" :type string)
6048 (:+portrait+ :swf-name "PORTRAIT" :type string))
6049 :properties
6051 :methods
6054 (declare-swf-class flash.events::-http-status-event (flash.events::event)
6055 :swf-name "flash.events::HTTPStatusEvent"
6056 ;; :supers (flash.events::event object)
6057 ;; = ("flash.events::Event" "Object")
6058 ;; :interfaces NIL
6059 ;; = NIL
6060 :constants
6061 ((:+http-status+ :swf-name "HTTP_STATUS" :type string))
6062 :properties
6063 ((:status :swf-name "status" :type int :access :readonly :declared-by flash.events::-http-status-event)
6064 (:event-phase :swf-name "eventPhase" :type uint :access :readonly :declared-by flash.events::event)
6065 (:type :swf-name "type" :type string :access :readonly :declared-by flash.events::event)
6066 (:cancelable :swf-name "cancelable" :type boolean :access :readonly :declared-by flash.events::event)
6067 (:target :swf-name "target" :type object :access :readonly :declared-by flash.events::event)
6068 (:current-target :swf-name "currentTarget" :type object :access :readonly :declared-by flash.events::event)
6069 (:bubbles :swf-name "bubbles" :type boolean :access :readonly :declared-by flash.events::event))
6070 :methods
6071 ((:to-string :swf-name "toString" :return-type string :declared-by flash.events::-http-status-event
6072 :args ())
6073 (:clone :swf-name "clone" :return-type flash.events::event :declared-by flash.events::-http-status-event
6074 :args ())
6075 (:is-default-prevented :swf-name "isDefaultPrevented" :return-type boolean :declared-by flash.events::event
6076 :args ())
6077 (:format-to-string :swf-name "formatToString" :return-type string :declared-by flash.events::event
6078 :args ((:index 1 :type string :optional NIL)))
6079 (:stop-propagation :swf-name "stopPropagation" :return-type void :declared-by flash.events::event
6080 :args ())
6081 (:prevent-default :swf-name "preventDefault" :return-type void :declared-by flash.events::event
6082 :args ())
6083 (:stop-immediate-propagation :swf-name "stopImmediatePropagation" :return-type void :declared-by flash.events::event
6084 :args ())))
6086 (declare-swf-class flash.filters::convolution-filter (flash.filters::bitmap-filter)
6087 :swf-name "flash.filters::ConvolutionFilter"
6088 ;; :supers (flash.filters::bitmap-filter object)
6089 ;; = ("flash.filters::BitmapFilter" "Object")
6090 ;; :interfaces NIL
6091 ;; = NIL
6092 :constants
6094 :properties
6095 ((:matrix-y :swf-name "matrixY" :type number :access :readwrite :declared-by flash.filters::convolution-filter)
6096 (:matrix :swf-name "matrix" :type array :access :readwrite :declared-by flash.filters::convolution-filter)
6097 (:preserve-alpha :swf-name "preserveAlpha" :type boolean :access :readwrite :declared-by flash.filters::convolution-filter)
6098 (:color :swf-name "color" :type uint :access :readwrite :declared-by flash.filters::convolution-filter)
6099 (:alpha :swf-name "alpha" :type number :access :readwrite :declared-by flash.filters::convolution-filter)
6100 (:clamp :swf-name "clamp" :type boolean :access :readwrite :declared-by flash.filters::convolution-filter)
6101 (:bias :swf-name "bias" :type number :access :readwrite :declared-by flash.filters::convolution-filter)
6102 (:divisor :swf-name "divisor" :type number :access :readwrite :declared-by flash.filters::convolution-filter)
6103 (:matrix-x :swf-name "matrixX" :type number :access :readwrite :declared-by flash.filters::convolution-filter))
6104 :methods
6105 ((:clone :swf-name "clone" :return-type flash.filters::bitmap-filter :declared-by flash.filters::convolution-filter
6106 :args ())))
6108 (declare-swf-class flash.ui::key-location (object)
6109 :swf-name "flash.ui::KeyLocation"
6110 ;; :supers (object)
6111 ;; = ("Object")
6112 ;; :interfaces NIL
6113 ;; = NIL
6114 :constants
6115 ((:+num-pad+ :swf-name "NUM_PAD" :type uint)
6116 (:+standard+ :swf-name "STANDARD" :type uint)
6117 (:+left+ :swf-name "LEFT" :type uint)
6118 (:+right+ :swf-name "RIGHT" :type uint))
6119 :properties
6121 :methods
6124 (declare-swf-class flash.accessibility::accessibility (object)
6125 :swf-name "flash.accessibility::Accessibility"
6126 ;; :supers (object)
6127 ;; = ("Object")
6128 ;; :interfaces NIL
6129 ;; = NIL
6130 :constants
6132 :properties
6134 :methods
6137 (declare-swf-class flash.display::action-script-version (object)
6138 :swf-name "flash.display::ActionScriptVersion"
6139 ;; :supers (object)
6140 ;; = ("Object")
6141 ;; :interfaces NIL
6142 ;; = NIL
6143 :constants
6144 ((:+actionscript2+ :swf-name "ACTIONSCRIPT2" :type uint)
6145 (:+actionscript3+ :swf-name "ACTIONSCRIPT3" :type uint))
6146 :properties
6148 :methods
6152 (setf *symbol-table* *%temp-symbol-table%*)