Today I noticed quite odd issue. When i use SWFObject with "addParam("wmode", "transparent");" all the input-fields refuse to understand special letters (ex. @ÄÅÖ). In Internet Explorer it works, but not in Firefox.
I got "@" working using english commands (shift+2) but scandic command (altgr+2 or ctrl+alt+2) doesn't work. Also small "äöå" works but cap's don't
(Notice: i didn't change windows keyboard language)
EDIT: Sorry, i found another post with the same problem, but has anyone got a sollution for this yet?
I found a way to implement the wmode parameter on a corporate site I'm making. It means minor changes to the swfobject.js file. When you use the addparam..., it's only adding it to the <object> parameters. This would be alright if Firefox used the <object> tag. It doesn't. It uses the <embed> tag. Therefore, you have to go into the code and change the code so that it has the 'wmode="transparent"' property added. Follow the instructions below. There is no need to include the addParam. It worked for me, and I see no reason why it shouldn't for you. Follow the instructions:
>Open swfobject.js in Notepad >Go to Edit -> Find >Type "embed" >Click Find twice >When found, click Cancel >Insert the following code DIRECTLY AFTER THE <embed + (a space) >>wmode=\"transparent\" >Save >Refresh your page in IE and Firefox >Voila!
If you have any questions, email me at jammer2552@yahoo.com. Good Luck.