Lines Matching refs:event
36 * @param {Event} event The event object received from the Flash player.
39 _swfEventHandler: function (event) {
40 if (event.id === this.get("id")) {
41 switch (event.type) {
45 * @event uploadstart
46 * @param event {Event} The event object for the `uploadstart` with the
61 * @event uploadprogress
62 * @param event {Event} The event object for the `uploadprogress` with the
66 * <dd>The original event fired by the Flash uploader instance.</dd>
75 this.fire("uploadprogress", {originEvent: event,
76 bytesLoaded: event.bytesLoaded,
77 bytesTotal: event.bytesTotal,
78 percentLoaded: Math.min(100, Math.round(10000*event.bytesLoaded/event.bytesTotal)/100)
80 this._set("bytesUploaded", event.bytesLoaded);
87 * @event uploadfinished
88 * @param event {Event} The event object for the `uploadfinished` with the
92 * <dd>The original event fired by the Flash player instance.</dd>
95 this.fire("uploadfinished", {originEvent: event});
101 * @event uploadcomplete
102 * @param event {Event} The event object for the `uploadcomplete` with the
106 * <dd>The original event fired by the Flash player instance.</dd>
111 this.fire("uploadcomplete", {originEvent: event,
112 data: event.data});
119 * @event uploadcancel
120 * @param event {Event} The event object for the `uploadcancel` with the
124 * <dd>The original event fired by the Flash player instance.</dd>
127 this.fire("uploadcancel", {originEvent: event});
134 * @event uploaderror
135 * @param event {Event} The event object for the `uploaderror` with the
139 * <dd>The original event fired by the Flash player instance.</dd>
143 * <dd>The text of the error event reported by the Flash player instance</dd>
146 this.fire("uploaderror", {originEvent: event, statusText: event.text, status: event.status});