Computer problems,Computer help
*AX SOFT>>>Programming & Design

How do you remove the box around flash files on websites?


everytime i have a flash animation or something on my website, theres a box around it (active x)

whats the code to get rid of it? so it doesnt matter what computer youre checking the site from, it still doesnt show up

whats the code and where do i put it?

thanks.

its active x, but i want to remove it from my flash doc's so that it doesnt show up on my website

The border that appears around activeX objects is a bug in IE only. (It does not appear on other browsers)
To remove it:
Insert the following script JUST AFTER the last line of your last embedded object:
<script>
var theObjects = document . getElementsByTagName ("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects [ i ] . outerHTML = theObjects [ i ] . outerHTML;
}
</script>
It fools IE and "activates" the object!
(remove the added spaces, of course. Stupid YA! editor!)

ok, there are two things that could be happening. One, if you're on IE, it automatically puts boxes around objects so you have to click to activate them. Two, it's a border. Fix the border problem by going into the header and typing the following.

<style>
object {border:0;}
</style>

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • I need help finding a Web site?

    If you want to download Google's Picasa, it has awesome features to make collages, and Polaroid-like photo stackers, etc... It's pretty cool. ...

  • How in HTML or Javascript do you replace text in a table with different text?

    Let's say you have a very simple table: <table> <tr> <td id="TheMessage">Hello!</td> </tr> </table> And then your button: <input t...

  • Php session issues?

    First, check your web server logs for error. Make sure php error reporting is on. Whenever you get a blank page, you've got an error. Are you calling session_start(); at the top of each o...

  • RefactorIT refactoring Java Source Code?

    Refactoring code is something a human should do using an IDE. One analysis tool I enjoy is PMD. It runs a bunch of (configurable and extendable) rules and reports a list of things it sees. Sev...

  • How do i get a FONT like this in this image?

    Here is the website to download that font. ...

  • What is the font IMVU used for their logo?

    Baubau and Pico White are in that style. ...

  • How can I re-install windows vista again?

    pop that Vista disc in the cd tray and reboot..keep tapping the F2 key untill the black and white screen appears,now select install windows....windows will ask you if you want to keep the old parti...

  • Could you pls help me about html??

    i'm also has that same problem..

    ...
  •  

    Categories--Copyright/IP Policy--Contact Webmaster