Error in icon association

Hi community!
I have a Macbook pro retina late 2014 with Yosemite 10.10.1
I am having a problem with icon association. I installed Shimo then Tunnelblick. After that I remove Shimo (I decide not to use it).
Remove:
Shimo.app
Shimo Applicacion Support folder
Shimo preference file
After that, I open a window in the finder and go to a folder where I have a .ovpn file. If I set the icon view, I see the tunnelblick icon file (thats correct) but If I set the list view I see the Shimo icon file (THAT IS AN ERROR!!!)
I Just set tunnelblick to the default app for this file. And y run the command:
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user
But nothing work
Anybody can help me?? Thanks!!

What happens if you double-click on the Shimo icon shown in list view?
If Tunnelblick asks to install the configuration, then the problem appears to be that Finder is "merely" displaying the wrong icon. That would indicate some kind of Finder cache of the icon image.
If Shimo opens, then that indicates that
The LaunchServices database is corrupt and/or
You have a copy of Shimo.app (or even a partial, damaged copy) somewhere (an external hard drive or thumb drive, perhaps?) and/or
The Terminal command that you used to rebuild the LaunchServices database does not work on Yosemite.
3.is a possibility -- Apple likes to mess around with things like that from one OS version to the next. (Flushing the DNS cache, for example, changed three time in the last few versions of OS X.)

Similar Messages

  • Is there a way to change the icon associated with icloud account?

    Is there a way to change the icon associated with my iCloud account? It's currently a rose and i do not like it.

    Welcome to the Apple Support Communities
    Are you referring to your iCloud account picture or your user picture?
    It looks like you are referring to your user picture. To change it, open System Preferences > Users & Groups, press the picture box and choose the user picture you want from the ones that came by default. If you want to select a different picture stored on your Mac, drag that photo onto the picture box.
    If you want to change your iCloud account picture, open http://www.icloud.com and log in with your Apple ID. Then, press your name at the top right of the site and press the user picture. If you put the cursor on the picture box, you will see a button at the top of the box to change your picture

  • I've lost the icons associated with my bookmarks. I've tried restarting my Mac, reinstalling Safari, and the add-ons suggested in other forums without any success. Is there a way to fix this issue?

    I've lost the icons associated with my bookmarks. I've tried restarting my Mac, reinstalling Safari, and the add-ons suggested in other forums without any success. Is there a way to fix this issue?

    Hi rmmilleriii,
    You should take a look at [https://support.mozilla.org/kb/latest-firefox-issues#os=mac&browser=fx9 this article] that discusses some of the issues with the latest build of Firefox.
    There is some information in there that should help you to resolve your issue. Luckily, it is a very easy fix.
    Hopefully this helps!

  • Error including icons in package

    I am attempting to include icons in my Air application. Unfortunately, during the package phase, I am receiving the following errors:
    /Users/gene/Development/Projects/Flex/app/My-app.xml(18): error 303: Icon Source/assets/icons/icon16.png is missing from package
    /Users/gene/Development/Projects/Flex/app/My-app.xml(19): error 303: Icon Source/assets/icons/icon32.png is missing from package
    /Users/gene/Development/Projects/Flex/app/My-app.xml(20): error 303: Icon Source/assets/icons/icon48.png is missing from package
    /Users/gene/Development/Projects/Flex/app/My-app.xml(21): error 303: Icon Source/assets/icons/icon128.png is missing from package
    I've found multiple threads dealing with this issue, but they all say to do what I am already doing. I am posting my -app.xml file and the command I am using in hopes that someone can see what I am missing. Thanks.
    -app.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/1.5">
        <id>com.baruconsulting.Myapp</id>
        <version>1.0.8</version>
        <filename>Myapp</filename>
        <programMenuFolder>Baru</programMenuFolder>
        <initialWindow>
            <content>Myapp.swf</content>
            <visible>true</visible>
            <systemChrome>none</systemChrome>
            <transparent>false</transparent>
            <width>1000</width>
            <height>750</height>
            <x>50</x>
            <y>50</y>
        </initialWindow>
    <icon>
    <image16x16>Source/assets/icons/icon16.png</image16x16>
    <image32x32>Source/assets/icons/icon32.png</image32x32>
    <image48x48>Source/assets/icons/icon48.png</image48x48>
    <image128x128>Source/assets/icons/icon128.png</image128x128>
    </icon>
    </application>
    package command:
    adt -package -storetype pkcs12 -keystore temp.pfx Myapp.air My-app.xml Myapp.swf
    Thanks,
    Gene

    For more info,
    http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7fd6. html
    GoTo Error code : 303.

  • Unable to drag the Icon associated with the node

    I am working on dragging a node from Tree to a list.
    I have to drag the Icon associated with the leaf too. I am able to drag only the string of the node not the Icon that is associated with it. Can you help me with this? I have the code as below. Thanks.
    public class IconNode extends DefaultMutableTreeNode {
    protected Icon icon;
    protected String iconName;
    //* IconNode
    /**Creates an IconNode Object*/
    public IconNode() {
    this(null);
    }//end IconNode
    //* IconNode
    /**Creates an IconNode Object*/
    public IconNode(Object userObject) {
    this(userObject, true, null);
    }// end IconNode
    //* IconNode
    /**Creates an IconNode Object*/
    public IconNode(Object userObject, boolean allowsChildren
              , Icon icon) {
    super(userObject, allowsChildren);
    this.icon = icon;
    }//end IconNode
    //* setIcon
    /**sets the Icon to the node*/
    public void setIcon(Icon icon) {
    this.icon = icon;
    }// end setIcon
    //* getIcon
    /**gets the Icon of the node*/
    public Icon getIcon() {
    return icon;
    }//end getIcon
    //* getIconName
    /**gets the IconName*/
    public String getIconName() {
    if (iconName != null) {
    return iconName;
    } else {
    String str = userObject.toString();
    int index = str.lastIndexOf(".");
    if (index != -1) {
    return str.substring(++index);
    } else {
    return null;
    }//end getIconName
    //* setIconName
    /**sets the IconName*/
    public void setIconName(String name) {
    iconName = name;
    }//end setIconName
    }// end IconNodepublic class IconNode extends DefaultMutableTreeNode {
    protected Icon icon;
    protected String iconName;
    //* IconNode
    /**Creates an IconNode Object*/
    public IconNode() {
    this(null);
    }//end IconNode
    public class DNDTree extends JTree
    public DNDTree (IconNode top)
    super (top);
    DNDTreeHandler dndHandler = new DNDTreeHandler(this);
    setAutoscrolls(true);
    public class DNDTreeHandler extends DnDHandler
    TransferableDataItem transDataItem = new TransferableDataItem();
    public DNDTreeHandler(Component dndComponent)
    super(dndComponent);
    public DataFlavor[] getSupportedDataFlavors()
    return transDataItem.getTransferDataFlavors();
    * Gets the data from the selected object being dragged
    * @return node DataItem being dragged
    public Transferable getTransferable()
    TreePath path = getSelectionPath();
    //DefaultMutableTreeNode selection = (DefaultMutableTreeNode)path.getLastPathComponent();
    IconNode selection = (IconNode)path.getLastPathComponent();
    if (path == null)
    return(null);
    else
    TransferableDataItem node = new TransferableDataItem(selection);
    return(node);
    * Handles the drop of the component after the drag is complete
    * @param transferable Object being dropped
    * @param event drop event information
    public void handleDrop(Transferable transferable, DropTargetDropEvent event) throws Exception
    Point location = event.getLocation();
    //Get path of node where object being dropped
    TreePath path = getClosestPathForLocation(location.x, location.y);
    //No drop target
    if(path == null)
    System.err.println ("Rejected");
    event.rejectDrop();
    else
    Transferable tr = event.getTransferable();
    if(tr.isDataFlavorSupported(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR))
    System.out.println("Got transfered data");
    Object userObject = tr.getTransferData(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR);
    //DefaultMutableTreeNode node = (DefaultMutableTreeNode)path.getLastPathComponent();
    IconNode node = (IconNode)path.getLastPathComponent();
    IconNode newNode = new IconNode(userObject);
    DefaultTreeModel model = (DefaultTreeModel)getModel();
    model.insertNodeInto(newNode, node, 0);
    else
    System.err.println ("Rejected");
    event.rejectDrop();
    public abstract class DnDHandler implements DropTargetListener,DragSourceListener, DragGestureListener
    protected DropTarget dropTarget;
    protected DragSource dragSource;
    public DnDHandler(Component dndComponent)
    dropTarget = new DropTarget (dndComponent, this);
    dragSource = new DragSource();
    dragSource.createDefaultDragGestureRecognizer( dndComponent, DnDConstants.ACTION_COPY_OR_MOVE, this);
    //creates transferable based on what's selected or returns null if nothings selected
    protected abstract Transferable getTransferable();
    protected abstract void handleDrop(Transferable transferable, DropTargetDropEvent event) throws Exception;
    protected abstract DataFlavor[] getSupportedDataFlavors();
    public void dropFailed (DragSourceDropEvent event)
    System.out.println("Drop Failed");
    public void dropSuccess (DragSourceDropEvent event)
    System.out.println("Drop was successful");
    private boolean isTransferableSupported(Transferable t)
    DataFlavor[] flavors = getSupportedDataFlavors();
    for (int i=0; i<flavors.length; i++)
    if (t.isDataFlavorSupported(flavors) )
    return true;
    return false;
    public void dragGestureRecognized( DragGestureEvent event)
    Transferable trans = getTransferable();
    Cursor dragIcon = getDragCursor(event);
    if (trans != null)
    // Starts the dragging
    dragSource.startDrag (event, dragIcon, trans, this);
    else
    System.out.println( "nothing was selected");
    * a drop has occurred
    public void drop (DropTargetDropEvent event)
    try
    Transferable transferable = event.getTransferable();
    // we accept only Strings
    if (isTransferableSupported (transferable))
    event.acceptDrop(event.getDropAction());
    handleDrop(transferable, event);
    event.getDropTargetContext().dropComplete(true);
    else
    event.rejectDrop();
    catch (Exception e)
    e.printStackTrace();
    System.err.println( "Drop Exception" + e.getMessage());
    event.rejectDrop();
    //DragSourceListener interfaces
    * is invoked when you are dragging over the DropSite
    public void dragEnter (DropTargetDragEvent event)
    // debug messages for diagnostics
    //System.out.println( "dragEnter");
    int action = event.getDropAction();
    event.acceptDrag (action);
    * is invoked when you are exit the DropSite without dropping
    public void dragExit (DropTargetEvent event)
    //System.out.println( "dragExit");
    * is invoked when a drag operation is going on
    public void dragOver (DropTargetDragEvent event)
    //System.out.println( "dragOver");
    * is invoked if the use modifies the current drop gesture
    public void dropActionChanged ( DropTargetDragEvent event )
    //gets the cursor to start drag
    protected Cursor getDragCursor( DragGestureEvent event)
    if (event.getDragAction() == DnDConstants.ACTION_MOVE)
    return DragSource.DefaultMoveDrop;
    if (event.getDragAction() == DnDConstants.ACTION_COPY_OR_MOVE)
    return DragSource.DefaultCopyDrop;
    else
    return Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR);
    * this message goes to DragSourceListener, informing it that the dragging
    * has ended
    public void dragDropEnd (DragSourceDropEvent event) {
    if ( event.getDropSuccess())
    dropSuccess(event);
    else
    dropFailed(event);
    * this message goes to DragSourceListener, informing it that the dragging
    * has entered the DropSite
    public void dragEnter (DragSourceDragEvent event)
    //System.out.println( " dragEnter");
    * this message goes to DragSourceListener, informing it that the dragging
    * has exited the DropSite
    public void dragExit (DragSourceEvent event)
    //System.out.println( "dragExit");
    * this message goes to DragSourceListener, informing it that the dragging is currently
    * ocurring over the DropSite
    public void dragOver (DragSourceDragEvent event)
    //System.out.println( "dragExit");
    * is invoked when the user changes the dropAction
    public void dropActionChanged ( DragSourceDragEvent event)
    //System.out.println( "dropActionChanged");
    public class TransferableDataItem extends DefaultMutableTreeNode implements Transferable
    final static int DATA_ITEM = 0;
    final static int STRING = 1;
    final static int PLAIN_TEXT = 2;
    //final public static DataFlavor DEFAULT_MUTABLE_DATAITEM_FLAVOR =
    // new DataFlavor(DefaultMutableTreeNode.class, "Default Mutable Data Item");
    final public static DataFlavor DEFAULT_MUTABLE_DATAITEM_FLAVOR =
    new DataFlavor(IconNode.class, "Default Mutable Data Item");
    static DataFlavor flavors[] = {DEFAULT_MUTABLE_DATAITEM_FLAVOR, DataFlavor.stringFlavor, DataFlavor.plainTextFlavor};
    private Object data;
    public TransferableDataItem()
    public TransferableDataItem(Object data)
    this.data = data;
    public DataFlavor[] getTransferDataFlavors()
    return flavors;
    public Object getTransferData(DataFlavor flavor)
    throws UnsupportedFlavorException, IOException
    Object returnObject;
    if (flavor.equals(flavors[DATA_ITEM]))
    returnObject = data;
    else if (flavor.equals(flavors[STRING]))
    returnObject = data.toString();
    else if (flavor.equals(flavors[PLAIN_TEXT]))
    returnObject = new ByteArrayInputStream(data.toString().getBytes());
    else
    throw new UnsupportedFlavorException(flavor);
    return returnObject;
    public boolean isDataFlavorSupported(DataFlavor flavor)
    boolean returnValue = false;
    for (int i=0, n=flavors.length; i<n; i++) {
    if (flavor.equals(flavors[i]))
    returnValue = true;
    break;
    return returnValue;
    public class DNDList extends JList
    DropTarget dropTarget;
    public DNDList()
    DNDListHandler dndHandler = new DNDListHandler(this);
    setModel(new DefaultListModel());
    //private void addElement(Point location, Object element)
    private void addElement(Point location, IconNode element)
    int index = locationToIndex(location);
    // If index not found, add at end, otherwise add one beyond position
    if (index == -1) {
    index = getModel().getSize();
    else
    index++;
    ((DefaultListModel)getModel()).add(index, element);
    public class DNDListHandler extends DnDHandler
    TransferableDataItem transDataItem = new TransferableDataItem();
    public DNDListHandler(Component dndComponent)
    super(dndComponent);
    public DataFlavor[] getSupportedDataFlavors()
    return transDataItem.getTransferDataFlavors();
    public DataFlavor[] getTransferDataFlavors()
    return transDataItem.getTransferDataFlavors();
    * Gets the data from the selected object being dragged
    * @return node Node being dragged
    public Transferable getTransferable()
    Object selectedItem = getSelectedValue();
    System.out.println("Selected Value is " + selectedItem);
    TransferableDataItem item = new TransferableDataItem(selectedItem);
    return(item);
    * Handles the drop of the component after the drag is complete
    * @param transferable Object being dropped
    * @param event drop event information
    public void handleDrop(Transferable transferable, DropTargetDropEvent event) throws Exception
    Transferable tr = event.getTransferable();
    Point location = event.getLocation();
    if (tr.isDataFlavorSupported(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR))
    //event.acceptDrop (DnDConstants.ACTION_COPY_OR_MOVE);
    // Object userObject = tr.getTransferData(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR);
    IconNode userObject = (IconNode)tr.getTransferData(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR);
    addElement(location, userObject);
    //dropTargetDropEvent.getDropTargetContext().dropComplete(true);
    else
    System.err.println ("Rejected");
    event.rejectDrop();

    I think your problem come from this method :
    if (tr.isDataFlavorSupported(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR))
       System.out.println("Got transfered data");
       Object userObject = tr.getTransferData(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR);
    //DefaultMutableTreeNode node = (DefaultMutableTreeNode)path.getLastPathComponent();
       IconNode node = (IconNode)path.getLastPathComponent();
       IconNode newNode = new IconNode(userObject);
       DefaultTreeModel model = (DefaultTreeModel)getModel();
       model.insertNodeInto(newNode, node, 0);
    ...You should write :
    if (tr.isDataFlavorSupported(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR))
       IconNode node = (IconNode)tr.getTransferData(TransferableDataItem.DEFAULT_MUTABLE_DATAITEM_FLAVOR);
       IconNode node = (IconNode)path.getLastPathComponent();
       IconNode newNode = new IconNode(node);
       DefaultTreeModel model = (DefaultTreeModel)getModel();
       model.insertNodeInto(newNode, node, 0);
    ...and create a construcor for IconNode :
    public IconNode(IconNode node) {
       super(node.getUserObject, node.getAllowsChildren());
       icon = node.icon;
    }When you use IconNode newNode = new IconNode(userObject), the icon is null (see your constructor).
    If I can say something, you should simplify your code : you can do the same thing dividing the size of your code by five (at less).
    Denis

  • Strange icon associated with Firefox

    Windows 7 Pro
    Firefox 35.0.1
    Yesterday I noticed that when I use ALT-TAB to switch between running programs on my desktop there was a new icon I'd never seen before. There was no text label on it, but if I went to it, I actually went to FF. I confiremed it is associated with FF by closing every other task. The icon only appears when FF is running. There is nothing under windows task manager to associate with it.
    It looks like this:

    I may have found the solution myself. Or at least a clue. While investigating something totally unrelated, I was working with ProcessExplorer and noticed in its process navigation pane, the same icon, associated with Trend Micro Office Scan.

  • How to keep icons associated with individual bookmarks?

    Hi There,
    When I changed from windows explorer the sites in WE (favorites) automatically showed up in Firefox bookmarks; only the icons associated with the individual bookmark (favorites) sites do not show up.
    I should note that they show up once the bookmark is opened but disappears again when Firefox is closed.
    It is much easier to identify a site listing with a visually icon then without one.
    Thanks

    Go to the App Store app and open that then tap on update bottom right.  Select all at the top left. The apps that you see there with the cloud logo have been downloaded with the ID your are logged in with but have been deleted from the phone, the ones with open written beside them are installed on your phone downloaded with your ID.  Any other apps on the screens on your phone would be the ones downloaded with the other ID

  • Download of Reader Error in Program Association

    Ive tried to download reader via firefox and IE.  When installation ends other software programs have adobe icon.  Opening REader or the other infected programs have an error message "this file does not have a program association with it for performing this action.  Please install a program, or if one is installed, create an association in the default pgm control panel."  What???  Help!

    Hello,
    Thanks for the notes, really useful.
    Meanwhile I have found a back way to download from solman:
    http://www.erpgenie.com/sap-technical/basis/trick-approve-download-basket-via-solution-manager
    Hope it will help all.
    Thanks again,
    Jordan.

  • Quicktime refuses to release file type and icon associations

    Has anyone else had this problem and how do I fix it?
    Changing the preferences doesn't fix it. File type associations in windows doesn't fix it. Help?!

    Ok, I kept getting nagged to upgrade QuickTime. So I did. Now QuickTime 7.4.1 has hijacked ALL my Windows image file associations, and won't give any of them back, no matter how many times I change QT’s settings. Why does QT even have a picture viewer? Who would use it? Or pay for it, as QT constantly nags you to do? Windows already has picture viewers, and there are thousands more free ones on the Internet. And why does Apple think that QuickTime is better equipped to handle my PhotoShop files, rather than my PhotoShop software?
    I'm really peeved! If I uninstall QuickTime, my web browsers generate errors. But if I don't uninstall, I can't use my other programs! So at this point, the product borders on being MALWARE. Why would Apple do this??? Will the next QT version also include MS Office, email, database, and text file association-hogging viewers too, so that my pain is complete?

  • Thumbnail view/Icon association change in Windows 7 with CS4

    I just put CS4 on a virgin Windows 7 build and I'm struggling with a couple of things...
    1. How do I get Windows 7 to display the proper file association icons for image files? With XP it was easy to change an icon so that my JPG files uses the Photoshop JPG icon. But in 7 I have not been able to figure it out.
    2. Thumbnail view with an image preview is not working. No matter what size I resize the icon in 7 I still get a big fat "PS" icon and not an image thumbnail. If there's a "switch" somewhere that I need to flip, I haven't been able to find it.
    If anyone can shed some light on these issues, particularly #2, that would be great. I'm amazed at how much a hard case Windows 7 is with file associations and Photoshop CS4. I got BMP, JPG, PNG, and others to open with Photoshop but it did require a bit more effort. With the "default program" list, Photoshop isn't even mentioned and I had to hunt the executable down to tell Windows which application to use. What's amazing is Quicktime is listed as a "default program" but CS4 is not.

    OK, sounds like you found the File Type Association.
    As for the display, for some years, the old psicon.dll has been gone from Windows. For a few versions, one could just add it to Windows, but I do not believe that has worked since Vista. Instead, use Bridge, and not Windows Explorer.
    As this has been an issue for years, it could well be that MS, or Adobe, will rewrite the psicon.dll to work with Win7, or that someone else will take up the challenge of doing so. Could already be out there, and I have just not heard of it.
    Good luck,
    hunt

  • Icon association not working

    I set my .avi files to open with QT instead of VLC (and applyed to all files) but instead of getting files with QT icon, now I have files with a blank or grey (with small green part) Icons, like those that usually are associated with non mac files. The files work perfectly with both apps, I did this association before and had no problems. Dont know why this is happening now, any help, please?
    Message was edited by: cassiotones

    Michael,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • TS3276 "ERROR" message "No associated application could be found"

    When opening incoming emails on my Mac with links to other websites or for more information, etc.  clicking on these links I receive "ERROR" message reading:  "No associated application could be found".
    I do not have this problem with the same messages on my Ipad.
    My email is handled through Yahoo (ATT) and they have not been helpful.
    Thanks

    Open Safari. From the Safari menu bar click Safari > Preferences then select the General tab.
    Select Safari from the pop up menu next to:  Default web browser
    If that doesn't help, launch Disk Utility located in HD > Applications > Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click:  Verify Disk Permissions
    Restart your Mac when it's finished.
    Try Mail.
    messaged edited by:  cs

  • Recenty, some of the icons associated with websites will no longer display, although they always did so in the past

    The small icon that is associated with a website & appears to the left in the address bar when a website loads no longer appears for 6 of my most frequently used websites. This began about a week ago.

    Maybe this bug:
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=701297 bug 701297] - Several favicons are lost in bookmarks with the upgrade to Firefox 8
    ''(please do not comment in bug reports)''

  • TS3276 The links within all my incoming emails don't work.  The error message= No associated application could be found.

    In all my incoming messages, links do not work.  The error message reads=No associated application can be found.  Any hints?

    Open Safari. From the Safari menu bar click Safari > Preferences then select the General tab.
    Select Safari from the pop up menu next to:  Default web browser
    If that doesn't help, launch Disk Utility located in HD > Applications > Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click:  Verify Disk Permissions
    Restart your Mac when it's finished.
    Try Mail.
    messaged edited by:  cs

  • Symbian Anna - home screen error - no icons shown.

    Today while refreshing WLans suddenly phone give some error, which I couldn't read, cause was touching screen consistently. Then realized that suddenly all screens go back to their default values. It was changing between home screens and refreshing icons (like it does when phone turns on back from off). And then suddenly all screens got lost and main screen had no icons on it. I immediately took battery away. And put back. When the phone started, it was again with only primary screen and no icons on it. Even date, time, profile and notifications pane. There is no way to delete or to add a widget. when you try to add,it says homescreen is full. I added additional screen, and that works fine. But primary screen is in unworking condition, and there is no way to delete it...how to fix it? (E6/Anna)
    Solved!
    Go to Solution.

    Could only suggest that you backup essential data with Nokia Suite and try resetting to "Out of box" state by keying in *#7370# followed by 12345 (default Nokia lock code unless altered by user).
    Got a problem if this doesn't resolve issue as similarly I run my E6-00 upon Anna and don't want to update it!
    Happy to have helped forum in a small way with a Support Ratio = 37.0

Maybe you are looking for