Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- [SWF] C:\Users\Owner\Documents\WOFlash\Wheel.swf - 2154538 bytes after decompression
- TypeError: Error #1009: Cannot access a property or method of a null object reference.
- at Wheel_fla::MainTimeline/init()[Wheel_fla.MainTimeline::frame1:6]
- at Wheel_fla::MainTimeline/frame1()[Wheel_fla.MainTimeline::frame1:11]
- ---------------------------------------------------------------------------------
- Sound Plays but doesn't show Stage
- */
- import flash.media.Sound;
- var soundClip:Sound;
- function init():void {
- soundClip.load(new URLRequest(".\\Wheel of Fortune.mp3"));
- soundClip.addEventListener(Event.COMPLETE,soundLoaded);
- soundClip.addEventListener(ProgressEvent.PROGRESS,soundLoading);
- }
- init();
- function soundLoaded(e:Event):void {
- soundClip.play();
- }
- function soundLoading(e:ProgressEvent) {
- this.txt_load.text = e.bytesLoaded.toString() + " / " + e.bytesTotal.toString();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement