Closed GoogleCodeExporter closed 9 years ago
I've suffered from same problem and have found the way to fix it by
adding CSS style "outline:none" to a Flash content id or a HTML container
id.
For example, if you're using "Dynamic publishing" method, your default
html code should be this way:
swfobject.embedSWF("untitled.swf", "myAlternativeContent", "100%",
"100%", "9.0.0", false, flashvars, params, attributes);
Then, add CSS style below.
#myAlternativeContent {
outline:none;
}
If a Flash content id is specifiled like this way:
attributes.id = "myFlashContent";
Then, add CSS style NOT to the HTML container id BUT to the Flash
content id.
#myFlashContent {
outline:none;
}
Original comment by tonpoo.m...@gmail.com
on 1 Feb 2010 at 4:04
ty, tonpoo, it works!
Original comment by didzis.k...@gmail.com
on 2 Feb 2010 at 1:17
another solution is on this blog post
http://www.blog.lessrain.com/firefox-36-draws-one-pixel-border/
Original comment by Shabith....@gmail.com
on 9 Feb 2010 at 9:48
This is a Firefox bug, not a SWFObject bug. See the SWFObject FAQ:
http://code.google.com/p/swfobject/wiki/faq#15._Why_do_I_see_a_dotted_border_aro
und_my_SWF_when_using_Firefo
Original comment by platelu...@gmail.com
on 8 Nov 2010 at 6:36
Original issue reported on code.google.com by
didzis.k...@gmail.com
on 27 Jan 2010 at 9:52