Status bar at the bottom of the screen stops working. need to fix it.

When I upgrade Thunderbird there is a status bar at the bottom of the page that shows what account is being logged into and what the status is of the login process. (this is real time) What happens after a while is that the status no longer works and all I see is Unread: X and Total: X. I really would like the feature to work as it lets me know when I have connectivity issues. Either there is a bug in the software or some add on is messing thunderbird up. I have tried to disable all add ons and other features to no avail, so I think this is more of a bug. How to I fix the problem?

The add on Adblocker Plus is known to cause this problem. Are you sure you do not have this add on active? After disabling the add on restart Thunderbird and then check the status bar operation.

Similar Messages

  • I upgraded my iPhone 4 to ios 7.4 and the screen stopped working i can not use the phone How to fix it ?.

    I upgraded my iPhone 4 to ios 7.4 and the screen stopped working i can not use the phone How to fix it ?.

    Hold the HOME and SLEEP buttons at the same time until an Apple logo appears. If nothing has happened after holding for 30 seconds charge the phone for 15 minutes with the wall adapter and try again.

  • Bottom half of screen not working, need to turn airplane mode on

      3gs Bottom half of screen no longers works, or at least the bar at the bottom so cant unlock the phone .. i suspect that part of the screen doesnt work anymore, tried reset etc. i can play etc via voice control but i need to catch a 7hr flight later today .. any suggestions on how i could unlock, so i can get to the settings .. doesnt seem to be a voice control to unlock ... doesnt seem to be any control in itunes to amend setting .. must be something i can do!

    Your digitizer is not functioning correctly. This is the only way I know to slide the unlock bar. The digitizer is built as part of the Glass Front Screen and detects your finger movement. Take iPhone to Apple and they can try to Reseat Flex Cable # 2 the digitizer cable if it is just loose at the connector and not broken. Possibly repair under Warranty if you still have Warranty Coverage. Otherwise you will need a new Front Screen with Digitizer for 3GS. Before opening a 3GS make sure it is OFF, and keep it OFF during any repair.

  • TS3274 Wy"No service " on status bar, when the internet is working?

    I have "No Service " on the status bar, but can get get internet service, why?

    Hi lalcia95,
    If you are having a No Service issue on your cellular iPad, you may find the following article helpful:
    iPhone: Troubleshooting No Service
    http://support.apple.com/kb/ts4429
    Regards,
    - Brenden

  • Certain part of screen stopped working

    So one night I was texting and a certain part of the screen stopped working. The only way I can describe the part of the screen is by saying it is if you look at the regular texting screen, from the top of the spacebar and up to the top of the texting letters does not work on the ENTIRE iPhone. I can't call people by entering numbers. But I can answer phone calls, set alarms, but its the certain area on the phone that does not work. What do I do to fix this? Do I need a new phone?

    First, do the basic troubleshooting steps described in the User Guide (bookmarked in iPhone Safari): Restart phone, reset phone, restore in iTunes using a backup, restore as a new iPhone. See this support article:
    http://support.apple.com/kb/TS1827
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • Nokia 5800 lcd screen stopped working

    Hi,
    A few  months ago i replaced my nokia 5800 screen with an unofficial one. After a recent update the screen stopped working. If I install a new and genuine nokia screen will this fix the problem?
    thanks

    maybe/maybe not you should not attempt these things yourself you have already voided your warranty
    i just hope the original screen works
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How can I create a status bar at the bottom of a window ?

    I would like to create a status bar at the bottom of my main window similiar to "Internet explorer" has. I thought of using a tool bar but I can't see how to keep it positioned at the bottom of the window when the window is resizable. Any other ideas on how to do this the bar only needs to contain a small amout of text and maybe an icon or two.

    CVI doesn't have a status bar control on UI element like the one available in Visual Studio++. The best way to replicate this is most like through a string control that is resized and positioned to remain at the bottom of the window and colored to look appropriately. I have also seen the combination of a decoration and a text message used.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • How can I implement a status bar at the bottom of a resizable application?

    Hello all,
    I am a JavaFx newbie and I am implementing an application (a Sokoban game), with a menu at the top of the frame and a gaming area covering the rest of the frame. To support the game, I have to load images at certain positions in the gaming area.
    The game also includes a level editor with another menubar and where images are set to other positions.
    I implemented this in another view, swiching from the game mode to the level editor mode and vice versa is just done by setting the other view visible. Up to now this works, here the important statements building these details:
    Group root = new Group();
    gameView = new Group(); // for gaming mode
    le_view = new Group()   // for level editor mode
    MenuBar gameMenubar = new MenuBar();
    Menu menuGame = new Menu(bundle.getString("MenuGame"));
    ... building the menu items and menues ...
    gameView.getChildren().add(gameMenubar);
    ImageView buildingView[][] = new ImageView[22][22];
    for (nCol = 0; nCol < 22; nCol++) {
        for (nRow = 0; nRow < 22; nRow++) {
            buildingView[nCol][nRow] = new ImageView();
            buildingView[nCol][nRow].setX(nCol * 26 + 5);
            buildingView[nCol][nRow].setY(nRow * 26 + 40);
            gameView.getChildren().add(buildingView[nCol][nRow]);
    gameView.setVisible(true);
    root.getChildren().add(gameView);
    ... same stuff to build the le_view ...
    le_View.setVisible(false);
    root.getChildren().add(le_View);
    Scene scene = new Scene(root, 800, 600, Color.CORNSILK); Now I want to introduce a status bar at the bottom of the frame, which of course has to follow the bottom of the frame, if it is resized. And of course the menu and the status bar should not grow vertically, if the height of the frame is increased.
    The implementation seems to be easy with StackPane for the frame and one BorderPane for each mode.
    For the first step I only tried implementing the game mode with only one BorderPane (just setting the menu, the gaming area and the status bar each into a HBox and setting these three HBoxes at the top, into the center and at the bottom). I also tried this via GridPane and via VBox; I always get any erroneous behaviour:
    Either the menubar is visible, but the menus do not pop up the menu items, or the anchor point of the menu and of gaming area are set 100 pixels left of the left frame border and move into the frame when the frame width is increased, or the menu is set 20 pixels below the top of the frame, or HBox with the menu grows when the frame height is increased, so that the anchor point of the gaming area moves down.
    Can you describe me a correct construction of such a frame? Thanks in advance.
    Best regards
    Gerhard

    Hello Gerhard,
    Glad the code helped, thanks for a fun layout exercise.
    For the draft code I just pulled an icon off the internet over a http connection.
    If you haven't done so already place any icons and graphics you need local to your project, so that resource lookups like:
    Image img = new Image("http://www.julepstudios.com/images/close-icon.png");become
    Image img = new Image("close-icon.png");then performance may improve.
    Another possible reason for your performance problem could be that when you use a vbox, the vbox content can overflow the area of the borderpane center and might be sitting on top of the menu pane, making you unable to click the menu (which is what happens to me when I try that with the draft program with the vbox wrapping mod, then resize the scene to make it smaller). This was a trick which caught me and the reason that I used a Group originally rather than a vbox. I found a vbox still works but you need to tweak things a bit. The trick I saw was that the order in which you add stuff to the borderpane is important. The borderpane acts like a stack where the last thing added floats over the top of everything else if you size the scene small enough. For your project you want the menu on top always, so it always needs to be the last thing added to the borderpane, but when you swap in the level pane for the game pane, then back out again, the game pane can end up on top of the menu which makes the menu seem like you can't click it (only when the scene is sized small enough). It was quite a subtle bug which took me a little while to work out what was happening. For me the solution was to add just one vbox to the center of the border, and then swap the game pane and the level editor in and out of the vbox, that way the center of the layout always stayed behind the menu bar and the status bar.
    I added some revisions to reflect the comments above and placed some comments in the code to note what was changed and why.
    public class SampleGameLayoutRevised extends Application {
      public static void main(String[] args) { Application.launch(args); }
      public void start(Stage stage) throws Exception {
        final BorderPane gameLayout = new BorderPane();
        final Group gameView = new Group();
        final MenuBar gameMenubar = new MenuBar();
        final Menu gameMenu = new Menu("Mode");
        final VBox centerView = new VBox();
        centerView.setStyle("-fx-background-color: darkgreen");  // we set a background color on the center view to check if it overwrites the game menu.
        MenuItem playGameMenu = new MenuItem("Play Game");
        MenuItem levelEditMenu = new MenuItem("Edit Levels");
        gameMenu.getItems().add(playGameMenu);
        gameMenu.getItems().add(levelEditMenu);
        gameMenubar.getMenus().add(gameMenu);
        final StackPane levelEditView = new StackPane();
        levelEditView.getChildren().add(new Text("Level Editor"));
        ImageView buildingView[][] = new ImageView[22][22];
        Image img = new Image("http://www.julepstudios.com/images/close-icon.png");  // use of http here is just for example, instead use an image resource from your project files.
        for (int nCol = 0; nCol < 22; nCol++) {
          for (int nRow = 0; nRow < 22; nRow++) {
            ImageView imgView = new ImageView(img);
            imgView.setScaleX(0.5);
            imgView.setScaleY(0.5);
            buildingView[nCol][nRow] = imgView;
            buildingView[nCol][nRow].setX(nCol * 20 + 5);
            buildingView[nCol][nRow].setY(nRow * 20 + 40);
            gameView.getChildren().add(buildingView[nCol][nRow]);
        final VBox statusBar = new VBox();
        final Text statusText = new Text("Playing Game");
        statusBar.getChildren().add(statusText);
        statusBar.setStyle("-fx-background-color: cornsilk"); // we set a background color on the status bar,
                                                              // because we can't rely on the scene background color
                                                              // because, if the scene is sized small, the status bar will start to overlay the game view
                                                              // and if we don't explicitly set the statusBar background the center view will start
                                                              // to bleed through the transparent background of the statusBar.
        gameLayout.setCenter(centerView); // we add the centerview first and we never change it, instead we put it's changeable contents in a vbox and change out the vbox content.
        gameLayout.setBottom(statusBar);
        gameLayout.setTop(gameMenubar);   // note the game layout is the last thing added to the borderpane so it will always stay on top if the border pane is resized.
        playGameMenu.setOnAction(new EventHandler<ActionEvent>() {
          public void handle(ActionEvent event) {
            centerView.getChildren().clear();  // here we perform a centerview vbox content swap.
            centerView.getChildren().add(gameView);
            statusText.setText("Playing Game");
        levelEditMenu.setOnAction(new EventHandler<ActionEvent>() {
          public void handle(ActionEvent event) {
            centerView.getChildren().clear();  // here we perform a centerview vbox content swap.
            centerView.getChildren().add(levelEditView);
            statusText.setText("Editing Level");
        playGameMenu.fire();
        Scene scene = new Scene(gameLayout, 800, 600, Color.CORNSILK);
        stage.setScene(scene);
        stage.show();
    }Other than that I am not sure of a reason for the slowdown you are seeing. In my experience JavaFX has been quick and responsive for the tasks I have been using it for. Admittedly, I just use if for a bunch of small trial projects, but I've never seen it unresponsive for a minute.
    - John

  • Status Bar at the bottom of applet

    Hi,
    How can I get rid of Status bar at the bottom of an applet?
    I dont' wana see word "Java Applet Started". I have called
    JFrame.setDefaultLookAndFeelDecorated(true);
    Everything is fine, but the unwanted status bar at the bottom.
    Any help is greatly appreciated.
    Regards

    Howdy.
    Not sure what you are trying to achieve here. The appletviewer sounds like it is working as designed. If you are writing an applet then I'd assume that you intend for it to be accessed via a web browser. The appletviewer is simply a test mechanism.
    However, your concern about the way in which the appletviewer presents itself leads me to think that you are intending all users to run your app. using the appletviewer. If this is the case then why not just create the frame directly? This code does just that.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class SimpleJFrame extends JFrame {
         public static void main(String[] a){
              SimpleJFrame cleanFrame = new SimpleJFrame();
         SimpleJFrame() {
              // user interface
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setTitle("SimpleJFrame");
              Container cp = getContentPane();
              cp.setLayout(new FlowLayout());
              cp.add(new JButton("Press"));
              cp.add(new JTextField(8));
              pack();
              show();
    }regards
    sjl

  • How do I keep my status bar at the top and not moving from side to side and bottom of phone

    how do I keep my status bar at the top of my phone? I let my grandsn play a game on my phone and after he gave it back I noticed my status bar would move from the top to the side or bottom etc

    Reset, hold both home and power buttons until the iPhone begins to restart itself, ignore the slide to power off slider. Let the iPhone restart itself. Usually takes about 10 seconds of holding both buttons.
    Probably do not need this, but Portrait Lock can be set by, pressing home button twice quickly, slide bottom row of icons to the right one time, tap the Portrait Lock icon.

  • HT1386 When I try to sync my iphone with itunes, it tells me in a warning that I don't have enough memory and yet the status bar on the bottom says I do and I know that I have enough memory.What's as

    When I try to sync my iphone with itunes, it tells me a warning that I don't have enough memory and yet the status bar at the bottom says that I do and I know that I have enough memory. What's the problem? It happens with the ipods and ipad as well!!!

    The new iTunes has a somewhat different look from the previous version.  You can get the old look back if you prefer it by doing View > Show Sidebar in iTunes.  Or you can adapt to the new look.

  • When I view the summary of content on my iphone5, the status bar at the bottom to the iTunes window shows I have 3.90 Gb's of "other".  What is that about and how can I free up that space?

    when I view the summary of content on my iphone5, the status bar at the bottom to the iTunes window shows I have 3.90 Gb's of "other".  What is that about and how can I free up that space? 

    I simply restored my iPhone from most recent  iCloud  backup.  Poof. Good to go!!!

  • IPod Touch Graphics Weirdness - Status Bar mirrored at bottom of screen!!!

    Okay, this is VERY weird and I have no idea what's going on - This morning when I woke up, I grabbed my trusty iPod Touch (4th Gen, 32GB with iOS 5) to check my calendar and noticed that the Status Bar (if I'm calling it the right thing - the white bar at the very top of the screen that shows the time, battery charge, WiFi signal,etc) was not only at the top - but also at the BOTTOM of the screen too!
    The mirrored Status Bar has the correct time and battery life as the top and the time updates just as it should. I can also see the lock icon when I first turn it on. However, to the extreme left the bottom bar is sort of "washed out" and is so white that I can't make out the word "iPod" that shows on the top bar. In fact, it's also sort of translucent as I can see the dock, icon name and part of my wallpaper behind/thru it! I also just realized something else weird - if I pull down the Notifications panel, I can see the notification panel sort of "scrolling" thru the bottom Status Bar!!! I hope I'm explaining this well enough - but it's like..I dunno, like the ideo memory for the top of the screen is being mirrored over the bottom of the screen too - I can see what should be there as well, it;s like it's overlayed or something. The Notification panel is especially weird since it totally obsured the top status bar as it's being pulled down - and this is exactly what the bottom status bar area shows me - what's in the section in the top bar is prescisely what is showing in the bottom bar section!!!!
    It stays displayed along the bottom no matter what app I'm in, even a full screen video, game, lock screen, etc; nor does it disappear when rotating to landscape mode - it still stays in the exact same place (tho in landscape it's now on the right side as it were). I have soft reset, synched, etc but it wil not go away. As I said, I deleted all recently installed packages, but I didn't install anything the night before (remember I just found it this way this morning) - i.e. I wasn't doing anything weird or experimental or anything remotely like that with my beloved little iPod (never JailBroken it or any of that stuff - am happy as it is and never been tempted to do anything like that to it). I also have never used any of the AV Out cables or whatever they are called that allow you to mirror an iPod screen on a TV or monitor or whatever - never used anything but the sync cable (now at my sisters), my Belkin charge auto charge cable, and that's it (I'm mentioning all this since I see other people asking this sort of thing for other problems when I was trying to find anyone else experiencing/ed this issue).
    I have not tried a factory restore yet, and wanted to post here before I go that route to see if this is maybe something Apple has seen before and can offer a quick and easy fix. Otherwise I'm guessing a hard/factory reset is the only way to go - I'm a bit worried about this since (of course) my sync cable is no longer here - gave it to my sister the last time she was in town and have just been using my charge cable (no sync capabilities, just power) since I don't really need it with iOS5's wonderful WiFi Sync. I do use iCloud - but if I hard reset/factory reset, will iCloud restore the synching info so I can sync all my apps and music & videos back via iTunes from my Laptop, or will I need to buy another sync cable? IF factory reset is the only way, please let me know (anyone that knows!) what I'm in for in regards to restoring from iCloud if anyone here is experienced with that. I know my non-iTunes music and videos are not backed up in the Cloud, but as long as it restores the ability to sync wirelessly with iTunes on my Laptop that's fine. Asuming, of course, that a factory reset will even fix this Status Bar oddity - I'm really afraid it means my little iPod's internal board is going fry-happy or something awful like that. :-(
    I tried taking some screen snapshots (home + power off) to post, however the camera roll just displays a standard beautiful looking screen, no double bar - not sure what that indicates. However after some fiddling and emailng to myself,  I do have a couple pics posted below. I apologize for the lack of quality - I took them - and don't laugh - with my Android Phone (yes, I have every intention of upgrading to an iPhone 4S as soon as I can - having a bit of enforced financial conservatism going on at the present unfortunately - which is one of the main reasons I'm so worried my beloved iPod Touch 4 is having issues as it's either very close to warranty expriration and can't afford another right now, and really don't want to have to rely on my Android Phone for everything I do on my iPod Touch - there truly is no comparison!).
    If anyone has any ideas or has seen something similar please let me know! I did search the Apple forums prior to posting this, and even googled the web but could find nothing like this ever happening to anyone else. I absolutely love my iPod Touch and would be uterly lost without it, so I'm hoping with all my might that this isn't some sign of a bad board or something in my beloved little beautiful iPod Touch!
    Thanks in advance for any assistance, suggestions, etc!!!
    NewtonDKC
    Message was edited by: NewtonDKC (embarrassing spelling errors corrected and a couple additional discoveries added!) :-)

    I understand the various methods - I was just worried because I've never restored via iCloud - from the limited experience I've had thus far, I'm impressed! But of course if Apple does it, it's going to be the best experience possible! :-)
    And as you may have guessed from my now having iCloud restore experience, it is due to me going ahead and trying a reset to factory settings/wiping it clean. And unfortunately - the bottom bar is STILL THERE! <much argghhing! and %^$#@*&^%$'ing loudly>
    I did try wiping it a couple of times, but no joy. At this point, I'm guessing this means there's something majorly wrong with the graphics subsystem and/or main board? It's not a screen issue as it's working fine - in fact it's working double-time displaying two things at once - dimensional transcendentalists take note! <grin>
    So unless anyone else has some fantastically bright ideas, I'm guessing this means I need to call Apple next? I'm guessing one of these pages has the appropriate contact info - I'm just not at all looking forward to being without my favorite gadget in the history of gadgetdom (and as you can tell from my username, I've been a fan of Apple Gadgets for quite awhile now!).
    Anyone know if Apple offers any advanced replacement options? Or if there's anyway to tell if my Touch is stil under warranty? I can't remember the exact purchase date but probably coming up very soon - have they been out a year? Sorry if thee questions are silly, as I said, I'm a newbie to Apple Support - first Apple product I've ever owned that broke!
    Thanks for any info for anyone coming in late to the fun, and/or for any tips on who/what to call and ask about.
    Wish me luck! :-0
    Newt

  • Display error message as as status message on the screen

    Hi all,
    How to display error message as as status message on the screen
    The requirement is if I call the screen, it should get with the error message in the status bar. If I write with error message 'E' error mesage information displays and when I click on exit, it leave the current transaction.
    if i display success message and use display like 'E' it display the error message but if i save it save the transaction.
    i cannot use leave to screen also because of subscreen. if i use leave to screen system display set screen not allowed in subscreen.
    so i want to stop the processing or do not allow the transaction to complete on the message.

    Hi
    displaying error message like status message will help u?
    try the below code
    MESSAGE 'Error' TYPE 'E' DISPLAY LIKE 'S'.
    cheers
    shibu

  • I restore my iphone and the bottom of the screen desnt work so i cant click agree. Is there another way?

    i restored my iphone and the bottom of the screen desnt work so i cant click agree. Is there another way?

    There's generally no reason to be closing them that way at all. The apps you see in the recents bar are just that, apps that you used recently. Most of them are doing absolutely nothing. The only apps that are really doing anything in the background are ones that play music and ones that are using location services. Just leave them be.
    Best of luck.

Maybe you are looking for

  • Ipod nano not recognized by pc and will not turn on

    ipod nano not recognized by pc and will not turn on

  • Oracle 8.1.7 on Red Hat 7.3

    I am about to embark on an application upgrade. Currently, it runs on HP-UX (extortionate hardware prices) but I'm wanting to move to a Dell PowerEdge platform running Linux. The problem that I have is that my prefered platform the PE2600 ships with

  • Thumbnail view

    How do you edit the background in thumbnail view? I can only get thumbnail view to show up on the iPad, but not in iBA itself.

  • Invoice for purchased games

    Hi,i need invoice for the purchased games on my PSN Store. How can i do that, after i download a game ? thanks

  • Error in Back ground job schedule for call transaction

    Hi Experts , I have a Program which as Three BDC in it . 1 - to create contact person , 2- customer 3-sales order Using call transaction if i run with all screens and no screens it's running fine.. if i schedule it background job conact and customer