The first step in understanding the application structure is to study the example source files. In broad strokes, there are four types of application files:
Notice that the SWF file (FlashVideoGallery.swf in the case of the gallery) is the center point for loading external logic, settings, and content. It's common practice in application development to split the content from the application logic and the display view.
Next, take a look at the top-level of the source files and identify the application's building blocks. To view the top-level files:
Open the as3_flash_video_gallery folder to view the top-level files. The folder contains three subfolders and FLA, HTML, SWF, and XML files (see Figure 1).

Figure 1. Folder containing the top-level files for the Flash video gallery application
The first thing to do here, at least mentally, is to separate the source files for the SWF from the overall file structure. (These files are mixed together in Figure 1.)
Here are the application files and folders that live in the top-level directory:
Note: The preceding files and folders are the application files that make up the video gallery on the website. These files will be uploaded to your server, while the source files will not.
Source files:
Take a moment to familiarize yourself with the sample files. By understanding roughly what each of the files does, you'll be able to move much more quickly through your exploration of the application.