Lines Matching refs:event

38         * @param {Event} event The event object received from the Flash player.
41 _swfEventHandler: function (event) {
42 if (event.id === this.get("id")) {
43 switch (event.type) {
47 * @event uploadstart
48 * @param event {Event} The event object for the `uploadstart` with the
63 * @event uploadprogress
64 * @param event {Event} The event object for the `uploadprogress` with the
68 * <dd>The original event fired by the Flash uploader instance.</dd>
77 this.fire("uploadprogress", {originEvent: event,
78 bytesLoaded: event.bytesLoaded,
79 bytesTotal: event.bytesTotal,
80 percentLoaded: Math.min(100, Math.round(10000*event.bytesLoaded/event.bytesTotal)/100)
82 this._set("bytesUploaded", event.bytesLoaded);
89 * @event uploadfinished
90 * @param event {Event} The event object for the `uploadfinished` with the
94 * <dd>The original event fired by the Flash player instance.</dd>
97 this.fire("uploadfinished", {originEvent: event});
103 * @event uploadcomplete
104 * @param event {Event} The event object for the `uploadcomplete` with the
108 * <dd>The original event fired by the Flash player instance.</dd>
113 this.fire("uploadcomplete", {originEvent: event,
114 data: event.data});
121 * @event uploadcancel
122 * @param event {Event} The event object for the `uploadcancel` with the
126 * <dd>The original event fired by the Flash player instance.</dd>
129 this.fire("uploadcancel", {originEvent: event});
136 * @event uploaderror
137 * @param event {Event} The event object for the `uploaderror` with the
141 * <dd>The original event fired by the Flash player instance.</dd>
145 * <dd>The text of the error event reported by the Flash player instance</dd>
148 this.fire("uploaderror", {originEvent: event, statusText: event.text, status: event.status});