Clear download list button not working

The "clear download" button isn't working
It doesn't clear my list of downloads; I've tried right-clicking and "clear download" but it doesn't work either

Please first make sure your extensions are up to date, as well as make sure that the preference is not locked. [[Remove recent browsing, search and download history]]
You can also try this add ons: [https://addons.mozilla.org/en-US/firefox/search/?q=clear+download+history&platform=all&appver=29.0]
And please try Safe Mode[[Troubleshoot Firefox issues using Safe Mode]]

Similar Messages

  • The Downloads Clear List Button Not Working In Firefox 19.0

    Hello,
    After upgrading Firefox to version 19.0 today, I noticed that the Downloads Clear List Button does not work & is always grayed/greyed out, and so you can not clear all downloads; and so you have to remove them each one-at-a-time.
    I did not have this problem until upgrading to version 19.0
    Screenshot:
    http://www.use.com/showoriginal.pl?set=1c0659d1946249dc69dc&p=1
    Thank you,
    -John Jr

    I made a bug report:
    https://bugzilla.mozilla.org/show_bug.cgi?id=845450

  • "Download now" button not working for Flash Professional CS5.5 trial

    Hi,
    I was going to download the trial version of Flash Professional CS5.5 but when I got to the download page it wasn't downloading. The "Download now" button was there, but it was unclickable, when I clicked on it it didn't work, plus it was a little dimmer than I remember it was when I downloaded another trial. I'm also using the latest version of Google Chrome and I tried downloading it on IE and Firefox.
    So, is there any solution to this?
    Thanks in advance.

    Sorry :/
    link: http://www.adobe.com/cfusion/tdrc/index.cfm?product=flash
    The download button looks dimmer than usual and I can't click on it.

  • Download trial button not working!

    Hi
    I am trying to download an Indesign CC trial but when I click on the Download Trial button nothing happens ! I would really appreciate some help.
    Thanks!!

    Sounds like a popup blocker or Javascript inhibitor related problem. Perhaps try another browser, like IE10.

  • POWL (POWER Lists) Buttons not working.

    Hi,
    We downloaded business package Business Package for Maintenance Technician 1.2. With this BP we got a iView called "Maintenance Tasks" which is an iView based on POWL "OPS-MT-POWL". This POWL displays list of maintenance orders and it got several buttons on it like 'Chage order' , 'Display order' etc.
    The issue is when I press on any of this buttons nothing happens. I tried to debugged method implementation IF_POWL_FEEDER~HANDLE_ACTION of class CL_RPLM_QIMT_POWL_ORDER_PM. It is properly preparing all the application parameters and passing the same to the DO_PORTAL_FOLLOW_UP of class CL_POWL_UTIL which in turn calls cl_wdr_portal_event=>new_object_navigation_event with resolving_mode = 'SourceRole'. This is using OBN(Portal Object Based Navigation) and respective business object is "Maintenance Order" and operation is "Display_Transaction". A correct iView has been assigned to this operation.
    But proper portal integration event is not fired and respective iView(Display Order) is not being called.
    Any help on this issue is greatly appreciated.
    Thanks,
    Bharat Vaka.

    Hi Sumangala,
    Thank you for your response. Portal package is good, all the required iViews are there and also I did the config according to the note you gave. But the main issue in my case is Siteminder and Apache server.  Luckily today I showed the issue to our BASIS/Portal admin guy over here and he said that it is the issue with Siteminder s/w that deals with the portal security. I need to yet get more details on this and will update you once I get them. Now we know what is the actual issue.
    Thanks again for your response.
    Regards,
    Bharat Vaka.

  • How to clear download list for my apple id?

    earlier i download some apps from itunes, but i not completed tat app. now i dont want tat app to download. whenever i try to download new app older app which i not completed it resumes to begin download. i cleared cache(appname.tmp) in mymusic/itunes/downloads but it not works. i think its same to my profile download list. help me clear app list tat i dont wish to download.

    You cannot delete it.
    Let it download then delete it.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • After updating to V 15.0 I have the issue that suddenly many but not all of the functions do not work anymore. Menues and download links do not work.

    I have updated my firefox to version 15.0. After this I have the effect that at some unspecified time during use many of the functions stop working. Menu's do not open, download links do not work anymore and so on. Opening new tab's or windows still works. Links on pages partly work partly not. Copy and paste does not work anymore on webpages. It takes ending the firefox process and restarting to correct the issue until it happens again. I have those effects on totally different webpages. At this time it happens every time after I start Firefox but not right away. Firefox first works for some time and then it suddenly doesn't anymore without me having done anything special

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Music buttons not working in lock screen on my iPhone 4 after iOS7 update.

    After I updated my iPhone 4 to iOS7, the music buttons like PLAY, REWIND and FORWARD are not working in the locked screen as well as on swipe up menu. Any resolution please?

    hi there
    i had a problem with my wifes iphone 4s, today morning while travelling to work i changed a setting on repeat option and changed it to repeat artist, it was fine until when i finish my work and on my way back i found songs are not playing anymore, lots of stop signs next to my song list, play/pause button not working, album arkwork keep moving from one to another on its own, so after i reach home i try to do some research on Apple support communities, try to soft reset my phone closing all the apps on background didnt work, also note that control centre music player was not working as well. none of the solutions worked. after trying for two hours i found out that the trouble is in repeat options , so i changed it from repeat artist to repeat off. and the music start playing as usual, but i still have those stop buttons next to the songs i tried to play earlier. At least it fixed temporarily. please also note that in the meantime i tried to sync my phone with the pc and suddenly its start syncing all the songs again assuming there were no songs on my iphone.  so guys i think soft reset might not help all the time but try to remember what settings you changed recently and change it back to the original option, not sure ,but it might help.

  • Download list button in upper right corner hinds under "Reader" button? Unable to find down loaded file in the download folder afterward?

    The Download list button in upper right corner of screen hides under "Reader" button?   Does not show down loaded(?) file in the download folder afterward?
    Trying to run a brokerage firm streaming quote app with java.  Wondering if I may have deactivated the Download list button some how?

    Hey Sgt.Rics,
    It sounds like you're experiencing some unexpected behavior in Safari, specifically the window layout blocking the Downloads button. I would check and make sure no third-party add-ons are causing the issue:
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    http://support.apple.com/kb/TS3230
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

  • Power button not working

    iPopd touch 4th generation sleep/power button not working.
    Any ideas? how long is warranty?

    The standard warranty is one-year. Yu can purchase, before the one-year is up and additional year. Yu can check your coverage here:
    Apple - Support - Check Your Service and Support Coverage
    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Power button not working with 7.1 update

    Power button not working with 7.1 update

    I take it your phone was still under warranty then?!
    Unfortunately I was not so lucky, and my experience was rather poor service-wise. They're called Apple Geniuses but I beg to differ...
    I'm not sure where in the world you are located, but my "experience" involved visiting the Leeds store and confusing everyone with this issue. I can tell you, just by the looks on their faces, they had never been faced with this problem before!
    I suggested my phone was rolled back to the version it was previously to establish whether this was the underlying issue. I was asked whether my phone had been backed up and as it had the "genius" proceeded to restore the phone "as it came out of the factory" to quote him.
    When this was completed the phone was still doing the same thing and I was advised "the software update must have highlighted a hardware issue." I was told it would have to be physically repaired and was told to have this done by a third party as Apple would charge approximately £160. Incidentally, I work in IT and repair PC's, laptops and mobile devices for a living and made a point of raising that a sleep/wake button ribbon cable for an iPhone 4S can be bought on eBay for as little as £3.00...if indeed it does need replacing, which I suspect it does not.
    Anyway, so now I was left with a phone for the rest of the day which was blank and still the problem remained. On the train, on the way home, you can then imagine my disbelief when I actually took the time to look at my phone's configuration and realised that iOS version 7.1 was still installed, so obviously the issue would still remain. So the visit to the "genius bar" was a complete waste of time as I'm still in the very same position, and I still blame the 7.1 update for this...let's home 7.2 is released very shortly and this solves the issue...
    I have downloaded the package to roll the version back to 7.0 but I'm a little reluctant to carry this out yet as I would expect Apple to so the issue they have caused. This is NOT hardware related but software.
    I seriously think Android is calling me...

  • Re: Action Buttons not working Peoplesoft HR9.1/PT8.52

    Hi All,
    I've seen lots of threads regarding Action Buttons not working Peoplesoft HR9.1/PT8.52.
    May I know which patch to download?
    Thanks

    Hi,
    Log on to Oracle Support and go to tab Patches & Updates, Choose PeopleTools and version 8.52. From the search results choose the highest tool patch, at the moment.
    Updateid: 14285861 / PT 8.52.10 PRODUCT PATCH

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Flash player download web site not working

    After uninstalling flash player, I can't get the web site to reinstall it. I go to the web site click the agree and install now and gos to the next page but nothing pops up like it said it should.
    http://get.adobe.com/flashplayer/thankyou/activex/?installer=Flash_Player_10_for_Windows_I nternet_Explorer&i=McAfee_Security_Scan_Plus&d=Google_Toolbar_6.3

    Hi eidnolb,
    My OS is windows 7 Ultimate. There no Service packs listed Microsoft don't have one for it yet. My brower is Internet explorer 8 version: 8.0.7600.16385. My firewall is not causeing problems and the popup blocker didn't even activate.
    Date: Wed, 14 Apr 2010 10:01:33 -0600
    Subject: Flash Player flash player download web site not working
    Hi newcomer76, Please post back your operating system and if any applicable Service Packs, any and all browsers that you use with the versions.
    With that information, I'll be able to give you instructions and the links you need.
    Thanks,
    eidnolb
    >

Maybe you are looking for

  • Download report with Aggregates

    Hi I am using Application Express 4.0.2.00.07 I have been trying to figure out a way to print the aggregate that is in my IR to be printed/downloaded into CSV or HTML. I have no problem in printing the report but I cant get the aggregate(sum) to be p

  • Best video converter?

    I'm trying to convert multiple HD .mov files but they end up unuseable in Premiere. I've tried many different output formats but none of them seem to work. Super converter is pretty good but I can't seem to get the orignal size of the video. it's loc

  • Please help!!!! URGENT !!!! using environment variable

    How do I use the environment variable in my sql script. example: I am setting up environment variables through my .bat file. The batch file contain the following lines... SET ORACLE_SID=test SET SID_PWD=test SQLPLUS /NOLOG @C:\TEST.SQL In my TEST.SQL

  • Webfonts not loading - getting the rectangle glyph instead

    I'm not sure when this problem started happening but I'm using Firefox 35 at the moment and it's refusing to display webfonts. This is not a problem with a particular site, it's the case with all sites. Just to provide you with 2 examples that should

  • G4 superdrive woes -desperate for help!

    Hi all I have a 2001 G4 Powermac 733mhz- memory 512mb- bus speed 133 mhz 60gb with a Superdrive cd/dvd burner model no CK116H97KKY Basically, I was clearing it out as I'm about to sell it to a friend at work. I put in a dvd-r and was going to burn of