[CS3] Preview in browser works but opens blank page online
This was driving me mad. Since getting CS3 Dreamweaver, the simple process of inserting a flash .swf file into my page and uploading it, for some reason become more complicated. I did extensive searches online with no luck and finally something clicked with something I read that helped me fix the problem. I'm posting it here for anyone else who might search for the same key words and find a lack of help.
Insert your .swf file as normal using the insert>flash method.
View the code of your page.
The code in the header section of your html page has to include:
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
Then you must make sure that on the remote view of the server, you have a folder called "Scripts" within the root folder. For me, this meant I had to move it into the public_html folder. Make sure your file AC_RunActiveContent.js is located inside that folder.
I hope this helps someone. For some of you advanced programmers, this might be a "duh", but for someone who's new, this was a little confusing from the previous versions of Dreamweaver.