I'm writing my own software to generate SWF files (very simple ones that just display a single image). The order the SWF entries are written in are:
SWF Header (the main file header)
Tags:
FileAttributes (required for version 8 or higher)
DefineBitsJPEG2 (contains JPEG format image)
PlaceObject2 (places it into Display List)
ShowFrame (displays to the screen everything in the DisplayList)
End (tag that ends the SWF file)
When I load the resulting SWF file into a web browser (or the standalone Flash viewer) what I find is that it just has a white screen. The image isn't being displayed. Is there something wrong with the order of the tags in my SWF file? I can't find any debugger software that will analyze the tags in the SWF file and tell me what's wrong with them.
Can anybody here help me with this?