Lost Tray Icons

Hi,
I have had my iPad for a while now. Every so often I loose everything in the tray. I am not clear on how this occurs. I can search for the apps, for example Safari, and its still installed however it goes missing and its not relocated to a folder or any other location, it just goes missing. As a matter of fact ALL the icons in the tray seem to vanish at the same time. The only way I have found to resolve this is to reset the home screen which in turns blows away all my folders. So far this has happened about 6 times. At this point I am about ready to just stop using the device because of this. Its a huge pain to restore all my apps back to folders. While this is my first post in the apple forums I have asked this same question on other forums and searched for some time on the web and found no other instances of this. I have found folks that lost 1 icon , such as the app store icon, but never ALL the tray icons. If this is the result of something I am doing wrong I would love to know what that is. Also is there a way to resolve this without doing a reset on the home screen?
Thanks
Chris

This is a common issue with jailbroken iPads (found that out using a tool called Google). I'm going to assume yours isn't jailbroken, though, and say that you should try a reset (Hold down Sleep and Home buttons until the Apple logo appears on screen), and see if this fixes it.

Similar Messages

  • [SOLVED] Spacing between start menu and tray icons lost

    Hi,
    I am using KDEmod + Arch
    After todays upgrade, spacing between start menu at the left and tray icons at the right lost making the tray icons align to the left side of the tray. An X mark in a red box appeared in between on mouse hover, shows the message that : Unable to load the widget, could not find the requested component: stasks.
    A screen shot is here:
    http://twitpic.com/od3jh
    What is to be done to rectify it?
    Last edited by absolutevoid (2009-11-05 18:31:36)

    Long:
    You're using the stasks plasma widget, which likely just needs to be recompiled for kde 4.3.3, as it was just upgraded from 4.3.2 in Arch's Extra repository and I imagine the same applies to KDEMod.
    pacman -Q | grep stask    will likely show you what the stasks plasma widget is called.
    If it's a kdemod package or returns nothing (meaning stasks is in some other plasma applet package, perhaps kdemod-plasma-applets or something.. pacman -Q | grep plasm would show all such packages with 'plasma' in the name), you'll need to recompile it with ABS or just post on the KDEMod forum and wait for them to update it. If you haven't rebooted since upgrading, there's sometimes something out of my ability to explain which causes KDE stuff not to show up / work properly even after running 'kbuildsycoca4' or 'kbuildsycoca' or killing and restarting kdm until said reboot.
    The two stasks plasmoids I see in the arch user repository are "stasks-manager-plasmoid" (which you're likely using) and "plasma-stasks-patched-plasmoid-hg". If pacman -Q | grep stask shows one of those, simply recompile it via yaourt -S name_of_the_widget, and you should be good to go on logout/in or reboot or what have you.
    Short:
    Run in konsole: pacman -Q | grep stask
    If it shows something with "kdemod" in the name or returns nothing, you should probably post a bug report with the KDEMod/Chakra guys at chakra-project.org (bug tracker is currently down, use the forums). If it shows "stasks-manager-plasmoid" or "plasma-stasks-patched-plasmoid-hg", recompile it via yaourt -S name_of_the_package and log out/in (or reboot if necessary.. it shouldn't be though).
    Last edited by FrozenFox (2009-11-05 15:50:32)

  • How do I get firefox 3.5 back? Firefox 4 can't find yahoo.mail URL. Using your suggestions has caused me to loose my system tray icons and printers from my computer altogether and my system restore will no longer work either.

    Firefox 4.0 cannot find the Yahoo mail URL. Working with the Verizon tech we were able to get Internet Explorer to finaly find the yahoo mail web site. But not luck with Firefox 4.0 .
    Since trying your suggestions to make firefox 4 find the Yahoo mail URL. I have noticed that all of my system tray icons except the Panda anti virus and volume control icons have disapeared. My system restore will not restore and printers are gone altogether. How do I get the old firefox and all i've lost back.
    Hector, [email protected]

    Still cannot fix it to get Yahoo e-mail. This what I get now from Ff3.5 now.
    Sorry, we can't find "http://us.mc1121.mail.yahoo.com/mc/welcome". Please check the spelling of the web address.
    From Ff4 it can't find the " URL proxy server" on it's server???
    Have tried most every solutions/suggestion I could find have my computer just keeps getting worse. Where do I find the 4 solutions you mention here to see if I have not already tried them? I don't see or know where to go to find these solutions??? Can anyone help me find the fix???
    E-mail add. [email protected]

  • Proper tray icon iconify/bring to front behavior

    Hi, I have a small but annoying problem with JDIC tray icons and JFrame. Maybe there's some really simple solution for this but I can't see it.
    My app has one JFrame and a TrayIcon for it. Currently, a click to tray icon iconifies the frame when it's visible, and a click to tray deiconifies the frame when it's iconified. Simple enough, but my problem comes when I try to make the behavior a little more user-friendly: when the frame is visible, a click to to tray should bring it to the front IF it's not the topmost window - and iconify only when it's the topmost window.
    The problem is, that when I click the tray icon - the JFrame loses it's focus and my code just always brings the frame on top.
    Here's my code (Workbench contains a JFrame):
    tray.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        Workbench workbench = app.getWorkbench();
                        if (workbench.isIconified()) {
                             if (!workbench.isVisible()) {
                                  workbench.setVisible(true);
                             workbench.deiconify();
                             workbench.toFront();
                        } else {
    // here's the problem
                             if (workbench.isFocused()) {
                                  workbench.iconify();
                             } else {
                                  workbench.toFront();
              });I thought about somekind of timer hack, that would check the time since the frame lost focus and compare it to current time when I press the tray icon, but that's an ugly solution - and some users might hold the button down longer than others.
    Another would be to ask the topmost OS window with JNI (afaik. there is no such method in Java?)
    btw. I just tried how mIRC does this, and it seems to get stuck to the "toFront()-state" too, when I set some another window to an "always-on-top"-mode. So I guess it's not the most ideal solution to ask the OS for the topmost window - but that would still do it for me.
    Anyone have other ideas ?
    Message was edited by:
    finalfrontier

    I am very interested in implementing just such a thing with my Java application. I am in the starting phases of this project and ran across your post in my search for info.
    How much do you already have implemented? I.E., can you display the icon but are just having trouble catching the events for when the icon is clicked? Or do you not even have the ability to display the icon yet? I have found the Windows documentation on the MSDN site for the shell function Shell_NotifyIcon(), which is what we want to use but I have not begun any attempts to use it yet.
    If you (or anyone else) have any info or have had any success at all with this yet, I would be very interested in hearing how it works. I'll be happy to share any info I find, when/if I get that far.
    Thanks,
    j

  • Viber no tray icon

    I've lost my viber try icon since maybe 2-3 week after update
    also main app window doesn't show up when double clicking the "icon".
    Does anyone know how to fix this?
    Thanks

    Qt5 5.4.0 has problem with tray icons, it's broken presently and I don't know when and if this will be fixed.
    It seems there is not much love for tray icons nowadays with developers, I don't know why.
    The only way I see at this time is to use Qt4.
    You should report this to the Viber developers, and see if a Qt4 version of this appli may be built.
    Report it also to the AUR package maintainer.

  • Can't mount Time Capsule on PC (white system tray icon no longer there)

    My new time capsule is working perfectly on my MacBookPro, however recently I tried to get it to work on my PC laptop. I easily got the wireless internet work on the PC, that's not a problem. I installed the airport utility on my PC and it was able to recognize it through the airport utility interface/configuring window where I could change settings, etc., just like I could on my Mac. There used to be (on my PC) this white icon in my system tray on the lower right of my screen. When I clicked on this I could type my password, as prompted, and mount to the time capsule, which I could now see in My Computer as a drive. I tested a few files by dragging them over into the drive, and it worked fine. Now, a week later the icon in the system tray has disappeared, and I can no longer see the time capsule on my PC in My Computer. I can still click on the airport utility icon in my programs and see/change settings in my time capsule from my PC, but cannot see nor access the drive from My Computer (or mount by clicking on this now missing icon). Anyone else know what I can do? Thanks in advance!

    I was just having this problem and figured out that the white system tray icon is the Airport Base Station Agent. It wasn't running for me for some reason, too, but I found it and started it back up again at C:\Program Files\AirPort\APAgent.exe.
    Here's an Apple Support article (it's a little old) I found that discusses drive mapping in windows with the Airport Base Station Agent: http://support.apple.com/kb/HT1331
    Hope this helps.

  • How do I retrieve lost Bookmark icons most of which disappeared when I updated to Firefox 8?

    After I updated to Firefox 8 I noticed that more than half of the itemsin my bookmarks list had lost their icons which were replaced by a dotted line in the shape of a square. I tried to go back to using Firefox 7 using System Restore. The restore was successful except that Firefox could not be opened. So I undid the restore and this allows Firefox to open and all seems ok apart from the fact that the majority of the items in my Bookmark list have disappeared and have been replaced as described. Can anybody help?

    Hi everyone. At issue is that FF8, obviously due to a coding bug, no longer is retrieving the favicon from the root of a website's www directory website in some situations. I tried starting FF8 with all add-ons disabled, just to verify that an add-on wasn't causing the issue. The add-on Check Places will restore the missing favicons, but the favicon will disappear as soon as you visit the bookmarked URL if the favicon was missing after you upgraded to FF8.
    Hehe. I am not too thrilled with Mozilla's new rapid development cycle. FF8 is simply a tweaked version of FF7 and as such it should have been a 7X upgrade. But I guess Mozilla wants Firefox to get up to version 10000 before Chrome does. Silly.

  • Little question about a Claws-Mail tray icon theme, and how to use it.

    There is a Claws Mail tray icon theme available on gnome-look.org:
    http://gnome-look.org/content/show.php/ … tent=71540
    These are the instructions the author gives to install the theme:
    Claws Mail Tango trayicon theme
    Claws-Mail version = 3.3.0
    copy icons claws-mail-3.3-0/src/pixmaps, recompile and install.
    So what am I supposed to do (especially since the newest Claws Mail version is 3.4.0...)?

    Stalafin wrote:
    There is a Claws Mail tray icon theme available on gnome-look.org:
    http://gnome-look.org/content/show.php/ … tent=71540
    These are the instructions the author gives to install the theme:
    Claws Mail Tango trayicon theme
    Claws-Mail version = 3.3.0
    copy icons claws-mail-3.3-0/src/pixmaps, recompile and install.
    So what am I supposed to do (especially since the newest Claws Mail version is 3.4.0...)?
    I would recommend using ABS. just makepkg -o first so the sources get DL'd and unpacked. copy your icons and makepkg -e so the sources are not extracted again and therefore your new icons overwitten.
    finally, enjoy some awesomeness:

  • Need to Lock down Keyboard Manager System Tray Icon

    I run 27 MacBooks at a Secondary School. I have them setup for Windows XP Pro (I'll be setting up the Mac OS over then next few weeks but this is a MS Windows School so lets start slow). Hoever I need to be able to disable the "Boot Mac OS" option on the Keyboard Manager. But still have access to Volume and Eject etc Keys.
    Solution: 1
    a .adm file so that I can contol what is avilable to students through Group Policy (disable reboot in Mac, Disable Boot Camp First time Run Help Screen)
    Solution 2
    A Keyboard driver that will make all the Keys work (and remote if possible) but has no System tray Icon
    Solution 3
    Hide the System tray icon (as say an option in the Boot Camp Control Panel which I can already disable through group policy) then all I need to kill is the anoying first time run help screen.
    The help screen is anoying because for each of the 800 student will probably only login into each laptop once each so that will come up every time, because I reimage every 3 months or so.
    The reboot in Mac OS would be no problem if it did not perminatly change to boot order and the Mac OS side boot change back is too complicated for most first time Mac users. The way I will be introducing the Mac OS is telling them about the hold the "option" key trick on boot. hence the dummys will get what they are expecting, and the smarties have the option without afecting the dummys.
    I relise this is a Devolopers thing but I can find no other way to inform them of the need. I dout I am the only System admin needing this.
    Thank You
    Message was edited by: Solus Venator

    Unfortunately no that did not help
    Using msconfig only stops the Keyboard Manager from running. I can do that simply be removing it from the registry with out the annoying msconfig messages. (good for testing though)
    I have also looked into the Hide tray Icon Path but that only tucks it behind a set of “<<”
    And the reboot function does Permanently Change the Boot Order. (Not the boot sector necessarily, The Boot Order) to change it back you need to login into the Mac OS and System Prefs Disk Boot Select the Boot Camp Part and Reboot …… Big Pain in neck.
    The Keyboard Manager icon does not have an eject option… If is needed for the Eject Key to work (and the Volume Mute, Up, Down, Brightness Up, Down. Note it is not Needed for the Play FF Rew Keys they work fine with the Fn Key)
    Here is the test
    With no icon showing, or an icon with no reboot option : Press The Eject Key if the CD Ejects Success, I also need Volume do not care about the others as much
    As Stated this is a Developer( Programmer) oversite and needs them to put in an option to remove the reboot option from the System tray Icon. Removal of the Icon would also be desirable
    Thank You

  • I have lost app icon on my ipad, can you tell me how to get it back ? Thanks

    Help! i have lost app icon on my ipad and cannot get into store.  How do i get it back?

    go to settings > general > restrictions and make sure Restrictions are not on,
    Also look in any folders on your ipad to see if it is there.

  • Access Connection Tray Icon disappear

    Hi, I got a problem on a T61p model 8889-AB5 owned by my boss.  The ThinkVantage Access Connections tray icon was disappeared occasionally.  It is noticed that below registry keys were missed and I needed to add them back to get the tray icon displayed.ACTray=C:\\Program Files\\ThinkPad\\ConnectUtilities\\ACTray.exeACWLIcon="C:\\Program Files\\ThinkPad\\ConnectUtilities\\ACWLIcon.exe This T61p hardware was checked by Lenovo service center on July 2008; no problem was found and the Win XPP was reinstalled from recovery CD afterward. Does anyone encounter similar problem? Thanks, Eric 

    And still no improvements in version 6.11!
    Can we expect a fix for this?

  • How to hide tray icon when in jframe

    how to hide the tray icon when v display a new JFrame in jdk1.5?

    use a JWindow or JDialog, but you may come across other problems if using
    them without a parent (the parent will be the one in the task bar)

  • Sometimes Tray Icon not loaded correctly

    I am trying to make my (html/ajax) website available as a desktop application, (with little enhancements like notifications in the background etc.)  without writing any extra code. Everything works fine except the tray icon. Sometimes the tray icon is not loading correctly.
    Following is the structure of my sample air application.
    1. An html page(page1.html) i am using as my inital window.
    It creates an invisible html window and loads a new page (page2.html) as below.
            var options = new air.NativeWindowInitOptions();
            options.systemChrome = "standard";
            var windowBounds = new air.Rectangle(200,250,300,400);
            newHTMLLoader = air.HTMLLoader.createRootWindow(false, options, false, windowBounds);
            newHTMLLoader.window.mainAppWindow = window;
            newHTMLLoader.load(new air.URLRequest("page2.html"));
    and later redirecting to the website.
    2. I am using this invisible html window to control the application behavior (like sending ajax requests in the background, monitoring network, checking for updates etc.)
    page2.html contains code to load the tray icon for the application.
    Here is javascript the code in page2.html
    function BgWindow(){
            this.init = function(){
                this.loadTrayIcon();
            var iconLoadComplete = function(event){
                air.NativeApplication.nativeApplication.icon.bitmaps = [event.target.content.bitmapData];
            this.loadTrayIcon = function() {
                air.NativeApplication.nativeApplication.autoExit = true;
                var iconLoad = new air.Loader();
                if (air.NativeApplication.supportsSystemTrayIcon) {
                    iconLoad.contentLoaderInfo.addEventListener(air.Event.COMPLETE,iconLoadComplete);
                    iconLoad.load(new air.URLRequest("lmt16.png"));
        window.onload = function(){
            bgWindow = new BgWindow();
            bgWindow.init();       
    But the problem here is, sometimes the icon is loaded correctly but sometimes its not loaded.
    What am I missing here ?
    Any help is appreciated.
    I am attaching the complete application if somebody needs to analyze it.

    Sorry. Your attachment didn't come through. It triggered an error message about a "malformed container violation." Please try to rezip it and try it again.

  • Is there any way by which I can not use Thunar Sys Tray icon?

    I am using stalonetray in OpenBox in Arch and when I copy-paste or cut-paste files in Thunar, a sys tray icon pops up. I don't want it to pop up.
    Is there any way by which I can make it to not pop up?

    Trilby wrote:
    I haven't used thunar for a while - but I don't remember it ever doing this before.  I just verified that it doesn't here (freshly installed thunar, and cut-pasted, copy-pasted, etc, and I didn't get a tray icon.
    Are you sure this isn't some other tool, like a clipboard manager?  Are their any tooltip popups or menus available on the tray icon and/or what happens when you click the icon?
    No. I use only Thunar. When I hover on the icon it says that "1 file operation running" when a copy-paste or cut-paste operation happens and when I left click and right click on it, it shows the copying window of thunar. The icon shows two small yellow folders placed diagonally. It's the same icon that appears on the file operation progress window of Thunar. I don't know whether Numix has anything to do with the specific icon though.
    Last edited by chosentorture (2015-01-11 00:13:32)

  • [SOLVED] tray icons in i3

    Hi!
    I just installed i3 and I'm happy, I customized my i3bar with conky.. and I noticed, that I don't have tray icons. I tried stalonetray, but I would like have it integrated with my main bar.
    There are my current config files, there is screenshot in the same repo.
    I've read that i3bar or i3status have tray out-of-the-box, but I'm not able to restore/configure it. Any advice?
    Last edited by nbb (2014-11-09 18:54:10)

    It's not so easy, I tried it earlier.
    Right now my bar section looks like that:
    bar {
    status_command ~/.i3/conky-i3bar
    strip_workspace_numbers no
    position bottom
    workspace_buttons yes
    tray_output primary
    font pango:Consolas 9
    colors {
    separator #666666
    background #222222
    statusline #dddddd
    focused_workspace #0088CC #0088CC #ffffff
    active_workspace #333333 #333333 #ffffff
    inactive_workspace #333333 #333333 #888888
    urgent_workspace #2f343a #900000 #ffffff
    Still no tray (in stalonetray icons show up, so there is problem with i3bar.

Maybe you are looking for

  • Can't start lightroom cc trial on win 8.1

    I have windows 8.1 x64 with the working LR 5.7 I tried to install Creative cloud and LR CC If I start LR CC and click on continue trial, LR mostly immediately closes without any information or sometimes freezes. If I try logout and login in CC, it do

  • Change logs for QA08

    Hi Experts I activate the inspection for the material by QA08. The changes are not reflected in MM04(Display changes for material) Where I can see the change details?(Date/Time/User made the changes) Regards AK

  • How do I add or delete a quick link from Firefox's home page.

    How do I add or delete a quick link from Firefox's home page. I don't use most of the links and would like to add other quick links.

  • Property performance issues cpu 40%

    All We are using a tableView with maybe 10+ SimpleIntegerProperty or SimpleStringProperty fields on our object to update values on the table. When we push data into the table we are seeing the CPU at 40%. When profiling the application all of the iss

  • Invalid URL in tutorial - any ideas?

    Has anyone gone thru the 'Automated Invocation of a .NET Web Service' tutorial available in OTN? This tutorial lists a sample webservice URL that is accessed. However, it is invalid. http://hosting001.vs.k2unisys.net/Weather/PDCWebService/WeatherServ