package com.example { import flash.display.Sprite; import flash.net.URLLoader; import flash.events.Event; /** * This is my Gallery class. It represents the document * class for my gallery SWF which will show pictures * from my vacation. Click on various thumbnails to * see a bigger view of the image */ public class GalleryApplication extends Sprite { private var loader:URLLoader; public var imageList:XMLList; public var thumbnails:ThumbnailList = new ThumbnailList(); public var viewer:ImageViewer = new ImageViewer(); public function GalleryApplication() { } private function xmlLoaded(event:Event):void { } private function thumbSelected(event:Event):void { } } // end class } // end package