Copy link to clipboard
Copied
I would like to remove this yellow warning (see screen capture)
I am using an old purchased copy of CS5 (version 11). It still works fine for my purposes.
Except for “live view”.
I want to use Chrome as my browser. I do not use Internet Explorer at all.
So I did browse to chrome on my drive application folder, and selected Chrome as my default browser within Dreamweaver.
The yellow flash plug-in not found warning at the top (see screen capture picture) as a little X marked on the right-hand border. However when I click on the x,, rather than closing the yellow warning, it causes Dreamweaver to completely crash.
So how to get rid of this irritating yellow flash warning?
Thanks
You do have some structural errors in your html.
I suppose it could be possible DW might be getting confused to the point where it shows the Flash warning because of them (weirder things have happened because of code issues). Try running your page through the validator at http://validator.w3.org/nu and work through the list it provides. It's possible cleaning up your errors will bring DW back in line.
Copy link to clipboard
Copied
This is a good example of why outdated web software is not your friend. Flash is dead. Get rid of any and all Flash related scripts from the source code in your document(s). Flash requires 3rd party plugins that modern browsers no longer support.
Copy link to clipboard
Copied
Thanks for your reply.
I did not know there were any flash scripts in my page: https://cheapfastresumes.com/
Any other solution?
Copy link to clipboard
Copied
Try restoring Preferences.
https://helpx.adobe.com/lu_en/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
Copy link to clipboard
Copied
I doubt that is the cause.
I prefer not to 'restore preferences'.
But thanks for your time.
Copy link to clipboard
Copied
You do have some structural errors in your html.
I suppose it could be possible DW might be getting confused to the point where it shows the Flash warning because of them (weirder things have happened because of code issues). Try running your page through the validator at http://validator.w3.org/nu and work through the list it provides. It's possible cleaning up your errors will bring DW back in line.
Copy link to clipboard
Copied
It is probably because the doctype declaration at the start of the page is obsolete.
Try changing it to:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
[WARNING: This post contains inaccurate information. 😦]
Copy link to clipboard
Copied
Nonsense. HTML5 is the defacto web standard and has been in use since 2008.
Use this doctype:
<!DOCTYPE html>