Lines Matching refs:event
26 * @requires event-custom, node, swfdetect
46 * tabindex, wmode.</code> event from the thumb</dd>
115 * @event wrongflashversion
117 var event = {};
118 event.type = "wrongflashversion";
120 this.fire("wrongflashversion", event);
135 * Handles an event coming from within the SWF and delegate it
138 * @param swfid {String} the id of the SWF dispatching the event
139 * @param event {Object} the event being transmitted.
141 SWF.eventHandler = function (swfid, event) {
142 SWF._instances[swfid]._eventHandler(event);
148 * Propagates a specific event from Flash to JS.
150 * @param event {Object} The event to be propagated from Flash.
152 _eventHandler: function(event) {
153 if (event.type === "swfReady") {
155 this.fire("swfReady", event);
156 } else if(event.type === "log") {
157 Y.log(event.message, event.category, this.toString());
159 this.fire(event.type, event);