summaryrefslogtreecommitdiff
path: root/webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as
diff options
context:
space:
mode:
authortimb <timb@mb.local>2010-02-11 03:54:41 -0800
committertimb <timb@mb.local>2010-02-11 03:54:41 -0800
commitc6c120b9aa3b081fc9724f083b72bfc7f83ebce7 (patch)
tree7f32faf9425a2b23da92240436da903eadc96df3 /webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as
parent3352b2dfdf82955d58fca2dd08e4a4d5fc289c93 (diff)
enabled webcam upload\!
Diffstat (limited to 'webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as')
-rw-r--r--webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as27
1 files changed, 0 insertions, 27 deletions
diff --git a/webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as b/webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as
deleted file mode 100644
index 2b90855..0000000
--- a/webcam/ru/inspirit/net/events/MultipartURLLoaderEvent.as
+++ /dev/null
@@ -1,27 +0,0 @@
-package ru.inspirit.net.events
-{
- import flash.events.Event;
-
- /**
- * MultipartURLLoader Event for async data prepare tracking
- * @author Eugene Zatepyakin
- */
- public class MultipartURLLoaderEvent extends Event
- {
- public static const DATA_PREPARE_PROGRESS:String = 'dataPrepareProgress';
- public static const DATA_PREPARE_COMPLETE:String = 'dataPrepareComplete';
-
- public var bytesWritten:uint = 0;
- public var bytesTotal:uint = 0;
-
- public function MultipartURLLoaderEvent(type:String, w:uint = 0, t:uint = 0)
- {
- super(type);
-
- bytesTotal = t;
- bytesWritten = w;
- }
-
- }
-
-} \ No newline at end of file