Hello everyone, I am looking for someone who would explain something to me. While creating a preloader in Flash using AS 3.0, there are 2 events that take place: PROGRESS Event while the file is loading, and COMPLETE Event when the file successfully loads. The parameters for events are: - addEventListener(ProgressEvent.PROGRESS, functionName); - addEventListener(Event.COMPLETE, functionName); My question is: why Progress uses ProgressEvent and Complete uses Event? What if you use Event in both? Any help will be much appreciated.
... View more