Desktop folders snap back in place

i have folders and stuff on the desktop, when i click and drag to move them around on the desktop, they just snap back to their original position after about a half second delay, so i cant move them around, this is really annoying, can anyone help please??

yes, that was probably it, i was trying to use keyboard shortcut and i pressed the wrong buttons and it did something with the arraignment of the icons.
thanks

Similar Messages

  • Anchor points move as I pull them but snap back into place. If I pull them out further, they snap to

    Anchor points move as I pull them but snap back into place. If I pull them out further, they snap to a new location but not precisely where I want them to. Help?

    either snap to grid or align to pixel grid yet again, i guess.

  • How to keep desktop folders in the same place?

    I use an iMac (with Mac OS X V.10.6.6) and I have some folders and files on my desktop. However, lately after I shutdown my iMac and start it again, all the folders and files on my desktop move and scatter. I want to keep them in the same order that I originally arranged. How do I keep them in the same place? Is it normal for them to move around after shutdown?
    It´s a new iMac (with about 6 monts old) and it only appens sometimes...
    PS. I don't want to sort them out by name or date modified or anything like that. I just want to keep them in the same order that I put them.

    As this oddity strikes also on my machine, I wrote this script.
    --[SCRIPT récupérerrestaurer_positionicônes]
    Enregistrer le script en tant que Progiciel (Application sous 10.6.x) : récupérerrestaurer_positionicônes.app
    Installer dans le Dock.
    Sélectionner les icônes du bureau dont la position doit pouvoir être rétablie.
    Lancer le script
    Cliquer le bouton "Enregistrer leur position"
    Un fichier texte contenant les informations relatives à ces icônes sera créé dans le dossier défini à partir de la property 'dest'
    Par défaut c'est dans "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Pour remettre les icônes en place, lancer l'application et cliquer le bouton "Rétablir leur position"
    --=====
    Save the script as an Application Bundle (Application under 10.6.x) : récupérerrestaurer_positionicônes.app
    Install it in the Dock for easy access.
    Select Desktop's icons whose location must be reset when needed.
    Run the script.
    Click the button "Get there position".
    A text file containing the datas linked to these icons will be created in the folder defined according to the property 'dest'.
    Default location is : "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Run the script and click the button "Reset there position" to move the icons back to their original location.
    --=====
    KOENIG (VALLAURIS, France)
    2010/03/16
    --=====--=====
    property toutlebureau : true
    property dest : 3
    1 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Preferences:"
    2 = liste dans : "<startupVolume>:Users:<userAccount>:Applications:Utilities:"
    3 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Application Support:"
    property nomDuRapport : "position des icones.txt"
    property rapport : {}
    --=====
    on run
    run script mon_script
    end run
    script mon_script
    my nettoie()
    if dest = 1 then
    set p2d to path to preferences as text (*
    "<startupVolume>:Users:<userAccount>:Library:Preferences:" *)
    else if dest = 2 then
    set p2d to path to utilities folder from user domain as text (*
    "<startupVolume>:Users:<userAccount>:Applications:Utilities:" *)
    else
    set p2d to (path to library folder from user domain as text) & "Application Support:" (*
    "<startupVolume>:Users:<userAccount>:Library:Application Support:" *)
    end if
    set p2r to p2d & nomDuRapport
    if my parleAnglais() then
    set prompt to "What to do with icons ?"
    set {btn1, btn2, btn3} to {"Cancel", "Get their position", "Reset their position"}
    else
    set prompt to "Que faire avec les icônes ?"
    set {btn1, btn2, btn3} to {"Abandonner", "Enregistrer leur position", "Rétablir leur position"}
    end if
    set maybe to button returned of (display dialog prompt buttons {btn1, btn2, btn3} default button 3)
    if maybe is btn1 then (*
    Cancel / Annuler *)
    error number -128
    else if maybe is btn2 then (*
    Get their position / Enregistrer leur position *)
    tell application "Finder"
    set itms to name of every item of the desktop
    repeat with itm in itms
    try
    set {x, y} to get desktop position of item itm
    copy "" & itm & return & x & ", " & y to end of my rapport
    end try
    end repeat
    end tell -- Finder
    set rapport to my recolle(my rapport, return)
    crée un fichier texte dans le dossier "Bibliothèque:Application Support" du compte utilisateur *)
    tell application "System Events"
    if exists file p2r then delete file p2r
    make new file at end of folder p2d with properties {name:nomDuRapport}
    end tell -- System Events
    write rapport to (p2r as alias)
    else (*
    Reset there position / Rétablir leur position *)
    set my rapport to paragraphs of (read file p2r)
    repeat with i from 1 to ((count of rapport) - 1) by 2
    try
    set itm to item i of rapport
    tell application "Finder" to set desktop position of item itm to my decoupe(item (i + 1) of rapport, ", ")
    end try
    end repeat
    tell application "Finder" to update folder p2d
    end if
    my nettoie()
    end script
    --=====
    on nettoie()
    set my rapport to {}
    end nettoie
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on parleAnglais()
    local z
    try
    tell application "Finder" to set z to localized string "AL1"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    I run it by hand to get the icons positions.
    I may also run it to restore these positions but in real life, I use a subset of the same script which is automatically ran when I boot the machine.
    This subset retain only the code restoring the icons positions.
    --[SCRIPT récupérerrestaurer_positionicônes]
    Enregistrer le script en tant que Progiciel (Application sous 10.6.x) : récupérerrestaurer_positionicônes.app
    Installer dans le Dock.
    Sélectionner les icônes du bureau dont la position doit pouvoir être rétablie.
    Lancer le script
    Cliquer le bouton "Enregistrer leur position"
    Un fichier texte contenant les informations relatives à ces icônes sera créé dans le dossier défini à partir de la property 'dest'
    Par défaut c'est dans "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Pour remettre les icônes en place, lancer l'application et cliquer le bouton "Rétablir leur position"
    --=====
    Save the script as an Application Bundle (Application under 10.6.x) : récupérerrestaurer_positionicônes.app
    Install it in the Dock for easy access.
    Select Desktop's icons whose location must be reset when needed.
    Run the script.
    Click the button "Get there position".
    A text file containing the datas linked to these icons will be created in the folder defined according to the property 'dest'.
    Default location is : "<startupVolume>:Users:<userAccount>:Library:Application Support:".
    Run the script and click the button "Reset there position" to move the icons back to their original location.
    --=====
    KOENIG (VALLAURIS, France)
    2010/03/16
    --=====--=====
    property toutlebureau : true
    property dest : 3
    1 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Preferences:"
    2 = liste dans : "<startupVolume>:Users:<userAccount>:Applications:Utilities:"
    3 = liste dans : "<startupVolume>:Users:<userAccount>:Library:Application Support:"
    property nomDuRapport : "position des icones.txt"
    property rapport : {}
    --=====
    on run
    run script mon_script
    end run
    script mon_script
    my nettoie()
    if dest = 1 then
    set p2d to path to preferences as text (*
    "<startupVolume>:Users:<userAccount>:Library:Preferences:" *)
    else if dest = 2 then
    set p2d to path to utilities folder from user domain as text (*
    "<startupVolume>:Users:<userAccount>:Applications:Utilities:" *)
    else
    set p2d to (path to library folder from user domain as text) & "Application Support:" (*
    "<startupVolume>:Users:<userAccount>:Library:Application Support:" *)
    end if
    set p2r to p2d & nomDuRapport
    if my parleAnglais() then
    set prompt to "What to do with icons ?"
    set {btn1, btn2, btn3} to {"Cancel", "Get their position", "Reset their position"}
    else
    set prompt to "Que faire avec les icônes ?"
    set {btn1, btn2, btn3} to {"Abandonner", "Enregistrer leur position", "Rétablir leur position"}
    end if
    set maybe to button returned of (display dialog prompt buttons {btn1, btn2, btn3} default button 3)
    if maybe is btn1 then (*
    Cancel / Annuler *)
    error number -128
    else if maybe is btn2 then (*
    Get their position / Enregistrer leur position *)
    tell application "Finder"
    set itms to name of every item of the desktop
    repeat with itm in itms
    try
    set {x, y} to get desktop position of item itm
    copy "" & itm & return & x & ", " & y to end of my rapport
    end try
    end repeat
    end tell -- Finder
    set rapport to my recolle(my rapport, return)
    crée un fichier texte dans le dossier "Bibliothèque:Application Support" du compte utilisateur *)
    tell application "System Events"
    if exists file p2r then delete file p2r
    make new file at end of folder p2d with properties {name:nomDuRapport}
    end tell -- System Events
    write rapport to (p2r as alias)
    else (*
    Reset there position / Rétablir leur position *)
    set my rapport to paragraphs of (read file p2r)
    repeat with i from 1 to ((count of rapport) - 1) by 2
    try
    set itm to item i of rapport
    tell application "Finder" to set desktop position of item itm to my decoupe(item (i + 1) of rapport, ", ")
    end try
    end repeat
    tell application "Finder" to update folder p2d
    end if
    my nettoie()
    end script
    --=====
    on nettoie()
    set my rapport to {}
    end nettoie
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on parleAnglais()
    local z
    try
    tell application "Finder" to set z to localized string "AL1"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    As it was for my own use, I didn't change the explanations at the beginning.
    Yvan KOENIG (VALLAURIS, France) jeudi 3 février 2011 12:37:56

  • Time Machine did not back up desktop folders?

    Hello, I've been backing up my mid-2010 iMac 21.5" for over a year and a half every 24 hours to my external hard drive via Time Machine.
    Recently, I just got back from a very lengthy and important trip where I was commissioned to take photos and videos. I made sure to do another time machine backup every day for a week until I needed to send the photos and videos in. I keep all of my photos and videos in separate folders on my desktop.
    In that week time period, I sold my iMac in order to buy a Macbook Pro (needed the portability). No problem, just boot the Macbook while holding CMND+R to enter rocovery, and restore from my time machine backup on my external drive.
    After booting up my Macbook, I noticed there were no folders or files on my desktop that I had originally on my iMac. Actually, there was virtually nothing the same that I had from my previous machine. There are now missing documents, applications, and many other VERY important files that I need to have.
    My question is, where are these files? These backups took ages to perform, but what exactly was it even backing up? I desperately need these photos and videos for my job's sake. And they are nowhere to be found. I've tried entering Time Capsule and dating back weeks and months prior, none of which have any traces of files or folders being on my desktop. If anybody could help me out, or fill me in on a missing step perhaps, it would be much appreciated. Thank you.

    I'm going to come accross sounding like a bitter old man . . .
    Mac user since 1990.  At the time, the whole cornerstone of the OS was "People don't want to learn how to use a computer.  They just want to do their work."  I bought it.  Every piece of software (and operating system) I used was intuitive.  You'd say "how do I . . ."  and within moments, you could figure it out.  No manual.  No help.
    To my dismay I've discovered (just bought 2 new Mac Minis for my business) that this is a thing of the past.
    Case in point is Time Machine.  I've just discovered, as did RoganLigby, that folders on the desktop are NOT backed up.  Fortunately I discovered this (quite by accident) before a drive failure occurred.
    My question:  Why?
    Why, why, why, why, why, why, why, why, why, why, why, why, why, why?
    What possible purpose is there to not backup items on the desktop?  Perhaps more importantly, wouldn't it be a good idea to tell users that this is the case?  Near as I can tell, there is no option to specifically add desktop folders to the backup.
    Does anyone at Apple actually use their own creations?

  • Song Folders on Desktop keep coming back! Please Help.

    I'm not very technical but I'll do my best as I'm in need of some help. I run Windows XP and had issues with my computer and had to do a system restore. In the process of doing this I tried to recover my songs that I had in Itunes and was successful but in the process I somehow managed to create desktop folders of all of the songs, they say "copy (2) of shortcut...." and there are multiple copies that even say "copy (17) of shortcut." I've deleted them, there are hundreds, but each time I reboot my computer they all come back to my desktop. I even tried uninstalling Itunes but it did not help. Any help would be greatly appreciated.

    Dude I have the same peoblem and it bugging me did you mange to fix it?

  • Unable to move objects (They snap back to their original place) and certain menu items don't work

    Using CS5, have been using this version for over a year and have never seen this problem -
    When I try to move any object by selecting and then trying to drag, it won't let me. It allows me to drag while selected maybe half an inch before not moving anymore, and then snaps back to the original position anyway. I CAN move by using transform - move, or selecting and using arrow keys. When I restart my computer everything seems fine, but then it soon gives me this same problem.
    Also, when I'm having the object moving issue I also have problems with dropdown menus. For example when printing, I can see the list of printers, but clicking them has no effect. Another example is the Preferences menu box, clicking "Type" or "Units" has no effect.
    Please help!!

    Win or Mac? Do you have 15.02, if not install the update.
    http://www.adobe.com/downloads/updates.html
    Select All and in transform palette uncheck Align to pixel grid.
    Reset your prefs. After botting hold down these 3 keys
    MAc - Shift Opt Command
    Win - Shift Alt Ctrl
    Do you have any 3rd parts Ilustrator plug ins? If you are on windows can you do a system restore back to a date before this was happening (Win is much more susectible to mallware/trojan horse/virus)

  • Active Directory Authentication, AFP Home Folders in the wrong place!

    Hi,
    I've had this problem off and on... that is, it comes and goes, so I'm not really able to effectively troubleshoot it. My setup is this:
    -Xserve G5, Mac OS X Server 10.4.7
    -OD Master bound to AD for authentication
    -Hosts AFP and SMB shares, all stored on Xserve RAID
    On the RAID, I have a folder called Users (/Volumes/XserveRAID/Users) that is shared via AFP. The system Users folder (/Users) is not shared. In fact, nothing at all on the root drive is shared. All share points are on /Volumes/XserveRAID/. All Mac users' home directory profiles are pointed to \\servername\Users\username (in Active Directory Users and Computers application on our domain controller). Their home directories mount automatically when they log into their client machines (also bound to AD).
    The problem is this; at seemingly random times, a user's home folder will all of a sudden be created in /Users on the server, and it will not use the /Volumes/XserveRAID/Users/ folder. I will clean out /Users every now and again, but the errant home folders show back up. The only folder that should be in /Users is the local admin.
    Since /Users is not even shared, how is it doing this? Why is it that sometimes the /Volumes/XserveRAID/Users share is used (I know this because there are users' files in their folders in the proper place) and sometimes it's going to /Users? Any ideas? Thanks in advance!!
    Going slightly mad,
    Jason

    Hi there,
    Just wanted to share my make-due solution.
    I have setup the automount sharepoint at "/Data/Home".
    When I logged in or tried to use createhomedir in terminal, nothing happened but users could login (even though there was no home folder on the sharepoint for them).
    I have created the Home Folders manually "/Data/Home/username" and then logged in again. When I did this it created two folders in the home dir:
    -Desktop
    -Library
    The other icons related to the home dir on the Dock remain big "?" 's.
    So I manually added them and assigned them the propper rights.
    Now users can log in without any problems, network home folders are working.
    So essentially I got thing s to work, luckily I have only a hand full of Mac Users, Imagine having a user base in the hundreds !
    Thinking about this really makes me want to know how I can fix this problem, I have a make shift solution but this really isn't the way to go. When I use the createhomedir command, it says "creating homedir on servername.domain.net" and it seems to be busy for like 20 - 30 secs, but after that nothing has changed.
    I've checked all possible locations on the server (i thought maybe it might have made local accounts on server by accident, but it didn't.)
    If anyone has ANY idea, please share.
    Thx!!
    Have a nice day

  • Desktop folders will not move

    I accidentally hit a combination of keys and now all my desktop folders and files are aligned on the right side of the screen.
    If I try to move any of them they automatically bounce back.
    I've searched the preferences and the option bar without success.
    Can someone guide me back to where I can position them anywhere on the screen.
    Thank you.

    Control (right) click on your desktop and in the little popup box select Show View Options, next change the last box from Name to Snap to Grid
    and then re-arrange your Desktop Icons.

  • Desktop folders shift off screen and are not visible

    Every so often, my dock and all desktop folders shift to the right.  Some of the folders are now off the screen.  How do I move them back to the visible portion of the screen?  Thanks.

    Back up all data.
    Triple-click the line below on this page to select it:
    ~/Library/Preferences/com.apple.finder.plist
    Right-click or control-click the highlighted line and select 
    Services ▹ Reveal
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Desktop, leaving the window open. Relaunch the Finder and test. If there's no change, put the item you moved back where it was, overwriting the one that may have been created in its place. Otherwise, delete the item you moved.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Why does double clicking not open desktop folders?

    After installing OpenOffice, my Mac Mini suddenly lost the ability to open desktop folders by double clicking.
    Open Office does not have a de-installer that I can locate.
    Please advise.
    Thank you!

    You may have to log out and back into your account, or restart the computer, for the system to work correctly after a software installation; at times one could also try other things in what may be an exercise in futility just in case something comes from any frustration and accidentally helps resolve any issue that may be in hiding...
    The 'safe boot' and 'repair disk permissions' and other antics sometimes will work to scare the gremlins out of a testy Mac. Or, perhaps it really is as simple as the man says. Adjust the mouse/trackpad in system preference? Could be the settings changed and it may be trying to interpret your clicks too fast.
    I'd not tried 'open office' but some time ago did try the NeoOffice version and it was OK. Then again, so was old AppleWorks back in the day; unless you require some kind of need to parrot MS Office regularly.
    Good luck & happy computing!

  • All desktop folders disappeared

    One day after I started up my ibook, I noticed all my desktop folders and info were gone. No where to be found. Luckily there wasn't a lot of important info there.
    Everything on the hard drive is still there, all my apps, etc.
    Is there anything I can do to retrieve the folders without paying someone to try to retrieve the info? The trash is empty so nothing is there.
    When I search for something that was on the desktop, the search results say
    "The alias could not be opened, because the original item cannot be found."
    Then the options are: Delete Alias, Fix Alias, OK.
    Any suggestions? Any options that don't involve painstaking code etc.?

    Hi cornelius,
    This is so odd, I just posted almost the identical reply at about the same time you did but mine is not showing up in thread for me. It does show in my posts but by no method going back to the thread is it showing for me....very strange.
    Looks like Discussions is having another prolonged delay to posting again for some reason.....I'll hop over to Feedback About Discussions to see if others are seeing this...of course by the time you see this my post will most likely be showing up....
    hope all is well with you,
    littleshoulders
    edit: Yep, there they are....strange that the posts are taking so long to post to the thread...
    Message was edited by: littleshoulders

  • Edge Animate origin won't transform, keeps snapping back to original position.

    I am working with an Animate composition in Edge Animate CC on a mac.  When I try to transform the origin and select an item, select the transform tool and drag the origin it keeps snapping back to its original position.  I have tried turning off snaps and changing the origin in the properties panel but it snaps right back no matter how I try to change it.  It is as if it's locked in place.  Any ideas on why it won't change?  The items are not grouped and it is a problem will all of the individual elements that I have tried to change.  Thanks in advance for any advice.

    Thank you.  I have shut it down and restarted the Mac and still have the problem.  I am recreating the animation now in case the file was somehow corrupted.  Even with the new file, I am getting an error that Animate encountered a problem and that I should save and restart Animate.  I think I will uninstall and try reinstalling Animate.  Do I have anything to lose by trying that since it looks like I need to recreate anyway?  Thanks again for your help!

  • Why can't I move the icons around on my iMac hard drive?  They just pop back in place when I release the mouse.

    iMac Mavericks
    Why can't I move folders around on my iMac hard drive?  They just pop right back in place.  I've selected Sort By None. This just started happening this morning so I must have done something!   Any help?

    This is a shot in the dark, but try this:
    log-in to your iCloud account with your Apple ID
    change your password
    ensure your billing information is up-to-date
    attempt to re-enable your Keychain (again)

  • JInternalFrames  that snap back to their original size and bounce around

    1. How do I make the JInternalFrames not snap back to their original size after I resize them (drag with mouse)?
    2. How do I bet the internal frames(minimized or open) to not bounce around when I add a new one?
    Thanks!!
    here is the code:
    //DM.java
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class DM extends JFrame{
    Container contentPane;
    JDesktopPane deskTop;
    int queryCount = 0;
    /////////////////// CONSTRUCTORS ////////////////////
    public DM(){
    super("Data Miner 0.1, Triad Therapeutics, Inc.");
         contentPane = getContentPane();
         deskTop = new JDesktopPane();
    deskTop.setBackground(new Color(0,0,150));
    deskTop.setLayout(new FlowLayout());
    contentPane.add(deskTop, BorderLayout.CENTER);
    ////// MENU BAR ////
              JMenuBar menuBar = new JMenuBar();
    //// Query Menu
         JMenu queryMenu = new JMenu("Query");
         JMenuItem targetQueryItem = new JMenuItem("Target");
    queryMenu.add(targetQueryItem);
    ////// MENU BAR ASSEMBLY ////
    menuBar.add(queryMenu);
    setJMenuBar(menuBar);
    ////// MENU BAR ACTION LISTENERS ////
    targetQueryItem.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e){
    JInternalFrame qc = new JInternalFrame("TEST2",true,true,true,true);
    qc.setPreferredSize(new Dimension(500, 300));
              qc.setNormalBounds(new Rectangle(300,300));
    //qc.setBounds(10, 50, 300, 500);
    //qc.setVisible(true);
    qc.show();
    deskTop.add(qc);
    }// end DM constructor
    ////////////////// MAIN METHOD /////////////////////////
    public static void main(String[] args){
         DM dm = new DM();
                   dm.setBounds(10,100,1000,450);
                   dm.setVisible(true);
                   dm.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
                   dm.addWindowListener(new WindowAdapter() {
                        public void windowClosed(WindowEvent e) {
                                  System.exit(0);
    }//end main
    }// end DM class

    Use the direct select tool to select the image, then set the scale in the scale fields to 100%, and finally, fit frame to content.

  • Firewire Drives creating desktop folders

    Hi,
    I have 2 external firewire drives (one Lacie 160GB and one Maxtor 300GB). Both are partitioned in 2. The 4 volume creates an empty desktop folder. I throw them on the trash but they always come back. Well its not a serious problem but it bothers me a lot. Anyone ? thx
    G5 Dual 2.3 GHz   Mac OS X (10.4.4)  

    Some more information: Well, inside the apparent empty desktop folders there are two invisible files: ".localized" and an empty folder "VISE temp folder".

Maybe you are looking for

  • How can I export my iTunes lib ray to an SD card

    I'm trying to export songs from library to an SD Card in my VW CC. Is there a good way to do so other than selecting the folders in the finder? Thanks,

  • Premiere Pro CC 2014 very unresponsive while rendering on background with Adobe Media Encoder

    Usually while I eddit videos on Premiere, I'm rendering on the background with AME. Or at least I used to. Some time ago, this process suddenly stopped working, as rendering on the background bagan to make Premiere really unresponsive, and quite impo

  • Need info on moving databases to Z10

    J Sanders. IN your last reply to my comments, you said that MOST of the "feature requests I made", were already implemented on the OS 10.1.   However, I couldnt find the following: a) How to move to next/previous email without going back to email lis

  • Export iPhoto library and retaining events?

    Is there a way to export the photos and videos from iPhoto while retaining the events? In my case, I have over 400 events, and I could do this one event at a time to export the photos, but I'd like to avoid having to do that over 400 times. Additiona

  • Workbook not opening in other machines..

    Hi All, I have opened a workbook in my machine and saved it after few editings. but now when other team members are trying to open the same workbook in their machines, it is not opening. It is not an authorisation issue as I have tried with my login