Is it possible to disable the dotted border around flash elements that show up when you interact with them? It looks horrible and it shows up everywhere.

I understand that this is somehow related to accessability of the web but shouldn't it be an option in the preference panel?
No other browsers behaves like this.

It did this and it worked for me. It requires the [https://addons.mozilla.org/en-US/firefox/addon/stylish/ Stylish extension].
Create a new rule with this:
@namespace url(http://www.w3.org/1999/xhtml);
object, embed {
outline: none !important;
Links still have outlines around them, but thankfully Flash objects no longer do! Hurray!

Similar Messages

  • I have an ipad mini 1st gen 64 gb (wifi only) and i have problem with some of my apps. These apps have lags when you play with them for a few seconds the apps are having lags are call of duty strike team, gta San Andreas and nfs most wanted.pleas help me

    I have an ipad mini 1st gen 64 gb (wifi only) and i have problem with some of my apps. These apps have lags when you play with them for a few seconds the apps are having lags are call of duty strike team, gta San Andreas and nfs most wanted.pleas help me

    I'm going to guess videos buffer for a while also...
    Two possibilities, one is you should close apps on the iPad, the other is your internet speed is not able to handle the demands of a high speed device.
    To close apps:   Double click home button, swipe up to close the apps.
    To solve internet problem, contact your provider.   Basic internet is not enough for video games and movies.   Your router may be old and slow.

  • Grey dotted border around flash content.

    Hi,
    Could someone tell me how to fix that gray dotted border around my flash movie? I would really like to get rid of it, but I don't now where, inside Flash or DW?
    Thanks!!

    Use this style for the object in your html:
    object {
          outline:none;

  • Annoying dotted border around flash objects...

    Hey. In the past few months I've noticed every time I have a
    flash object on my browser, it's surrounded by a dotted border that
    causes me to have to first press on the flash object - and only
    then be able to use it.
    So, for example, if the flash object is a
    menu, I first have to click inside the flash object, and
    then the border goes off and the flash is "activated".
    Does anyone have any idea what causes this and how can I make
    it go away?
    Thank you! :)

    > I was referring to this annoying dotted box I got around
    the flash before
    > I
    > could use it.
    That's what we have been talking about .. all due to the
    stupid greed EOLAS
    and its patent .. there's been hundreds and thousands of post
    and web
    sites.
    Go to
    http://activecontent.blogspot.com
    for solutions.
    Jeckyl

  • How do I disable the white border around my image in low light mode (L key)

    this is distracting - In LR4 there was no border.

    It was there in Lightroom 3. Removed in Lightroom 4. Then all us Black and White Photographers whined and they took it back out in LR 5 so we could see our image edges again.  AFAIK there is no way to disable it.

  • How do i remove the red dotted border around links?

    On several websites (Facebook, Twitter, Hootsuite, etc) any link is outlined by a red dotted border. I don't know if I inadvertently changed a setting but it never was like this before and I can't figure out how to disable the dotted border from showing.
    Any help?

    There are browser.display.focus* prefs that you can check on the <b>about:config</b> page to see if the have the default value.
    *http://kb.mozillazine.org/about:config

  • Is it possible to disable the 'edit layout' link on the record detail page

    Is it possible to disable the 'edit layout' link on the record detail page? Not the homepages, I know there is a switch for that, but I thought there was one for the detail pages?
    I want to disable this as I dont want users saving their own layouts, they must stick to the related sections defined in the default layout. The problem is that if they are to have access to certain related lists when an opportunity is of a certain type but NOT other types. If they have saved the layout (using the 'Edit Layout' link), and change the record type, they will see related sections that have been set to 'Not available' in the default layout (ie step 4) for that 'type'.

    Robbo, at this time it not possible to disable the Edit Layout on the record detail page.

  • Is it possible to disable the screen saver for a certain app?

    Is it possible to disable the screen saver just while a certain application is running?
    The app seems to crash when the screen saver comes on.
    Just so you know, application I'm using is Hogwasher; a newsgroup reader.

    Not really. Just disable it manually when you run that application. Then, send off a bug report to the app's developer and tell him to update it for the latest Tiger. Alternatively, use another newsgroup reader.

  • Is it possible to disable the OAWebBeanConstants.IGNORE_MESSAGES

    greetings all .... is it possible to disable the OAWebBeanConstants.IGNORE_MESSAGES . i have this ....................
    {                  OAMessageTextInputBean bi = (OAMessageTextInputBean)webBean.findIndexedChildRecursive("BI") ;
    System.out.println("BI"+bi.getValue(pageContext));
    if ((bi.getValue(pageContext)) != null)
    {                pageContext.setForwardURLToCurrentPage(//"OA.jsp?page=/oracle/apps/ap/MainPG",
    null,
    false, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    System.out.println( "PM");
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    String paramPR = prnum2;
    Serializable paramPRParamList[] = { paramPR};
    am.invokeMethod("paidManuallyUpdate", paramPRParamList);
    System.out.println( " THE VALUE OF THE Cancel RB IS " + canx.getValue(pageContext));
    prnum1.setValue(pageContext, "");
    pReason1.setValue(pageContext , "");
    //either one of these confirmations will work . i use one or the other
    throw new OAException("Payment Has Been Updated To Paid Manually", OAException.CONFIRMATION);
    //or
    OAException msg = new OAException("Updated To Paid Manually", OAException.CONFIRMATION);
    pageContext.putDialogMessage(msg);
    the problem is if i include the setForwardURL my confirm messages dont work. if i dont include the setForward they work.
    is there a way to do the setForwars so i can redirect the page and make the table inactive and also use the confimations. i can see its going past my system.prints. it just isnt popping up my confirmations as i believe its due to the IGNORE_MESSAGES.
    any insight ....
    cheers.

    Hi,
    SetForward*()...It lets the current page processing complete. Your following code will complete its processing, after that it will be forwarded to next page.
    ForwardImmediately.... Forwards immediately without letting remaining code process.
    However, a good thing is pageContext of the same page is forwarded. That means, if you did pageContext.putDialog(message), in current page, that will be forwarded in both the cases to next page. Hence, for your problem...
    use putDialog method, as stated in previous post and
    use forward url as CONFIRMATION, NOT AS ERROR OR IGNORE_MESSAGE.
    pageContext.setForwardURLToCurrentPage(//"OA.jsp?page=/oracle/apps/ap/MainPG",
    null,
    false, // Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAException.CONFIRMATION); //WHAT YOU HAVE PUT IN DIALOGS AND WANT TO SHOW IS CONFIRMATION.
    Please try this.
    Abdul Wahid

  • Is it possible to disable the optimized compiler in LabVIEW 2010

    Hello,
    I have a project that take 3 minutes in LabVIEW 8.6 to build and now with LabVIEW 2010 it take 10.5 minutes. 3x more longer.
    In fact my project as 61 .lvproj for a total of 4300 vi's that take 1 hour to build. If I interpolate, the entire build process will take 3 hours in LabVIEW 2010. This is not acceptable
    I know that the new compiler optimize the code for better performance, but if I don't need better performance.
    Is it possible to disable the optimized compiler in LabVIEW 2010 with an INI key in LabVIEW.ini.
    Dany Allard
    Dany Allard
    Solved!
    Go to Solution.

    Jarrod S. wrote:
    One Application Builder setting you might try out to make builds go much more quickly is the Remove Unused Members of Project Libraries checkbox and the Modify Project Library File after Removi....
    This can drastically cut down the build times. Note, however, that this option does not work well if your application will load external plug-in VIs when it runs, because the libraries of those plug-in VIs may conflict with the modified libraries in the executable file. If you don't have a plug-in architecture, this will not affect you.
    The "Remove unused members of project libraries" was already selected but not the "Modify project library file after removing unused members" and selecting this cut the build time from 10.5 min to 4 min.
    Thank you Jarrod for this tips
    Dany
    Dany Allard

  • I stole my ipod and unfortunately they had disabled the location, someone had told me that he could trace the serial number, is that possible?, and as you do?

    I stole my ipod and unfortunately they had disabled the location, someone had told me that he could trace the serial number, is that possible?, and as you do?

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected, on a computer browser go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • My kids use firefox on my computer. Is it possible to disable the private browsing feature so they can not go on and use it ?

    I want the computer to keep a history of all the site they have searched, but can not know for sure if they turn on/off the private browsing function. Is it possible to disable the private browsing function and put a lock / password on it ?
    Thanks,
    David

    Even if it was possible to remove or disable "Private Browsing" then that still won't make it impossible to delete private data like visited websites (history) or cache or cookies.<br />
    There are a lot of ways to clear such data, either via [[Clear Recent History]] or directly by deleting the History in the Library or sidebar.<br />
    Private Browsing makes it easier because all data is kept in memory and nothing is saved to disk, so nothing needs to be removed.<br />
    <br />
    If you want to see which sites have been visited then you should look at others means outside Firefox like a router or firewall with a password protected logging feature that can't be bypassed or a program like Wireshark.
    * http://www.wireshark.org/download.html
    * http://en.wikipedia.org/wiki/Wireshark
    See also:
    * http://kb.mozillazine.org/Parental_controls

  • Is it possible to disable the camera on the nano 2 gen.  My grandaughter is in boarding school and no cameras are allowed.

    is it possible to disable the camera on a nano 2nd generation?  My grandaughter is in boarding school, and they do not allow any form of camera.

    Specs for iPod nano 2nd gen >  http://manuals.info.apple.com/en_US/iPod_nano_2nd_Gen_Features_Guide.pdf
    No camera.

  • Is it possible to disable the play button when exporting to exe or app files?

    Is it possible to disable the play button when exporting to exe or app files? Can the app just boot up without the playbutton?

    Are you talking about auto play option or the play button on Playbar?
    I just checked the EXE ran fine without requiring any play button to start as per my settings.
    Is this waht you are looking to achieve?
    Thanks,
    Anjaneai

  • Is it possible to disable the trackpad when a wireless or usb mouse is present? With Lion 10.7.2, I can not find the checkbox that was there before I installed Lion. Is the option gone on Lion?

    Is it possible to disable the trackpad when a wireless or usb mouse is present? With Lion 10.7.2, I can not find the checkbox that was there before I installed Lion. Is the option gone on Lion?

    There is no BIOS in OS X. There is only the EFI stored in ROM that is not user modifiable. OS X is probably checking Bay 0 for the boot drive since that is where it should be. It won't check the Tempo drive since it is treated like an external drive. I suggest you open Startup Disk preferences to see if the Tempo device is selected as the boot device. If it isn't, then select it. That will probably shave off a few seconds in the startup time.

Maybe you are looking for

  • Save as PDF Files too large, Remove Embedded Fonts/Compress Fonts

    When I create PDF's using "Save as PDF" in Mac OS X, the file sizes are much larger than is acceptable for my application. For example, a recent PDF I created ended up at 1.7 MB and I need it to be around 150 kB. When I open the file in Acrobat Pro 6

  • SYSFAIL Error in SMQ2

    Hi All I am trying to do an Initial Load on the Customizing Object DNL_CUST_BASIS5 to download the Country realted customizing settings from ECC 6.0 to CRM 2007. The load failed with queue in SMQ2 in SYSFAIL state. The error is GUID_FOR_LOGSYS_CHANGE

  • To display multiple records in smart form

    hi, In the smartform how to use  the LOOP option to display the multiple records .

  • Out of 132 characters 84 characters only displayed

    HI, I have created text element (TEXT SYMBOL) with 132 max.. characters , but out of this 84 characters only displayed on the selection screen...... I have used in the program below code, SELECTION-SCREEN BEGIN OF BLOCK  A WITH FRAME TITLE TEXT-001.

  • Can Install Base be installed as a stand-alone module?

    Hi, Is Install Base always integrated with another module or can it be used as a stand-alone product? Thank You, Ellice