<object classid="clsid
27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="252" height="252">
<param name=movie value="/flash/gallery%20button.swf">
<param name=quality value=high>
<embed src="/flash/gallery%20button.swf" quality=high pluginspage=" type="application/x-shockwave-flash" width="252" height="252">
</embed>
</object>
The above is the section in your html that is supposed to embed your Flash movie in your page.
First off, it's allways better to include the full path to your .swf, including the http:// part.
Second, you shoudn't use blank spaces in the name of your .swf, as you have done here. IE can allways live with them, but you'll run in to problems with NS users.
Third, I located your swf in your Flash directory after assuming the following path:
Code:
[URL unfurl="true"]http://www.middleworld.net/flash/[/URL]
which gives a listing of your files in that directory. Now maybe this is DW stuff (I wouldn't know... I never used Dreamweaver), but your swf appears with a double ext as:
gallery button.swf.bin, and this might well be your problem.
First get rid of that blank space, by removing it or replacing it with an underscore and take off that second extension(.bin), so that the file is named:
gallery_button.swf
Now open up main1.htm in notepad or whatever, and correct the file name in the <object> & <embed> tags as you've just renamed it in your flash directory, and include the full path as:
Code:
[URL unfurl="true"]http://www.middleworld.net/flash/gallery_button.swf[/URL]
Now I've seen your movie and it seems to only be a button calling another movie or another html. If it's calling another movie, then I suggest your remove all the blank spaces you have in your files' names (and you have a lot of those!), and that you update any html you called with the full path and the new names of these files you're calling!
Hope this is clear... If not whistle yourself back here!
ldnewbie
Hope that this
was helpful!