Photo screensaver locking up

I recently upgraded from 10.7 to 10.8 on my 15" Macbook Pro.  Everytime I go into screensaver preferences and select any of the photo related screensavers the preference panel locks up.  The entire system also locks up when the actual photo related screensaver actually kicks in.  I have to hard reboot the entire system to get out of that situation.  Any help/suggestion would be greatly appreciated.

I have been having the same problems on my iMac 24". The screensaver comes on, and when I move the mouse to disengage it , the screen freezes and so does the mouse. Tech support has not been able to solve the problem yet.

Similar Messages

  • Where are Photo Screensaver settings saved?

    Hi,
    I need to programatically change settings for the Photo Screensaver. The registry keys used in Windows Vista no longer apply in Windows 7. I tried using a folder with an uncommon folder name to point the Photo Screensaver to so that it would be easier to find in the registry. When I do a registry search, the folder name cannot be found. Maybe this is kept in a settings file somewhere instead of the registry?
    We use a custom photo deck for our screensaver and it hasn't worked well to put it in the Pictures folder. You'll end up displaying personal photos along with the custom photos. I have been making a folder in Program Files and pointing the screensaver there.
    The settings I would like to be able to change are:
    Use pictures from: (you browse to the folder that contains your photos)
    Slide show speed: (change the transition speed of the photos)
    Shuffle pictures: (I would like to be able to check this box so the photos display randomly)
    If anyone knows where to find these settings, it would be greatly appreciated if you could share the location of these settings.
    Thanks,
    Rob

    you can use this code 
    cls
    #That string is encoded in Base64, without headers. There is a Windows API that encrypt binary arrays (the PIDL) to Base64, CryptBinaryToString. The dwFlags parameter should be set to CRYPT_STRING_BASE64.
    #Our problem is the inverse, given a Base64 string (the encoded PIDL), get the decoded PIDL. There's an API for that, too!, CryptStringToBinary. The dwFlags parameter should also be set to CRYPT_STRING_BASE64.
    #I think it is not hard to write a small program that uses those API's (and some more to get a "readable" path from the PIDL); ask in the MSDN forums to get directions if you get stuck.
    #http://www.ms-windows.info/Help/windows-photo-screensaver-settings-19334.aspx
    #http://msdn.microsoft.com/en-us/library/aa379887(v=vs.85).aspx
    #BOOL WINAPI CryptBinaryToString(
    # _In_ const BYTE *pbBinary,
    # _In_ DWORD cbBinary,
    # _In_ DWORD dwFlags,
    # _Out_opt_ LPTSTR pszString,
    # _Inout_ DWORD *pcchString
    #http://msdn.microsoft.com/en-us/library/aa380285(v=vs.85).aspx
    #BOOL WINAPI CryptStringToBinary(
    # _In_ LPCTSTR pszString,
    # _In_ DWORD cchString,
    # _In_ DWORD dwFlags,
    # _In_ BYTE *pbBinary,
    # _Inout_ DWORD *pcbBinary,
    # _Out_ DWORD *pdwSkip,
    # _Out_ DWORD *pdwFlags
    add-type @"
    using System;
    using System.Text;
    using System.Runtime.InteropServices;
    using System.Text.RegularExpressions;
    public static class PIDLUtils
    // funciones
    [DllImport("shell32.dll")]
    public static extern Int32 SHGetDesktopFolder(out IShellFolder ppshf);
    [DllImport("shell32.dll")]
    public static extern bool SHGetPathFromIDList(IntPtr pidl, StringBuilder pszPath);
    [DllImport("crypt32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool CryptBinaryToString(IntPtr pcbBinary, int cbBinary, uint dwFlags, StringBuilder pszString, ref int pcchString);
    [DllImport("crypt32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool CryptStringToBinary(string pszString, int cchString, uint dwFlags, IntPtr pbBinary, ref int pcbBinary, ref int pdwSkip, ref int pdwFlags);
    // interfaces
    [ComImport]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    [Guid("000214E6-0000-0000-C000-000000000046")]
    public interface IShellFolder
    Int32 ParseDisplayName(IntPtr hwnd, IntPtr pbc, String pszDisplayName, UInt32 pchEaten, out IntPtr ppidl, UInt32 pdwAttributes);
    Int32 EnumObjects(IntPtr hwnd, ESHCONTF grfFlags, out IntPtr ppenumIDList);
    Int32 BindToObject(IntPtr pidl, IntPtr pbc, [In]ref Guid riid, out IntPtr ppv);
    Int32 BindToStorage(IntPtr pidl, IntPtr pbc, [In]ref Guid riid, out IntPtr ppv);
    Int32 CompareIDs(Int32 lParam, IntPtr pidl1, IntPtr pidl2);
    Int32 CreateViewObject(IntPtr hwndOwner, [In] ref Guid riid, out IntPtr ppv);
    Int32 GetAttributesOf(UInt32 cidl, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)]IntPtr[] apidl, ref ESFGAO rgfInOut);
    Int32 GetUIObjectOf(IntPtr hwndOwner, UInt32 cidl, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 1)]IntPtr[] apidl, [In] ref Guid riid, UInt32 rgfReserved, out IntPtr ppv);
    Int32 GetDisplayNameOf(IntPtr pidl, ESHGDN uFlags, out ESTRRET pName);
    Int32 SetNameOf(IntPtr hwnd, IntPtr pidl, String pszName, ESHCONTF uFlags, out IntPtr ppidlOut);
    // enumeraciones
    public enum ESHCONTF
    SHCONTF_FOLDERS = 0x0020,
    SHCONTF_NONFOLDERS = 0x0040,
    SHCONTF_INCLUDEHIDDEN = 0x0080,
    SHCONTF_INIT_ON_FIRST_NEXT = 0x0100,
    SHCONTF_NETPRINTERSRCH = 0x0200,
    SHCONTF_SHAREABLE = 0x0400,
    SHCONTF_STORAGE = 0x0800
    public enum ESFGAO : uint
    SFGAO_CANCOPY = 0x00000001,
    SFGAO_CANMOVE = 0x00000002,
    SFGAO_CANLINK = 0x00000004,
    SFGAO_LINK = 0x00010000,
    SFGAO_SHARE = 0x00020000,
    SFGAO_READONLY = 0x00040000,
    SFGAO_HIDDEN = 0x00080000,
    SFGAO_FOLDER = 0x20000000,
    SFGAO_FILESYSTEM = 0x40000000,
    SFGAO_HASSUBFOLDER = 0x80000000,
    public enum ESHGDN
    SHGDN_NORMAL = 0x0000,
    SHGDN_INFOLDER = 0x0001,
    SHGDN_FOREDITING = 0x1000,
    SHGDN_FORADDRESSBAR = 0x4000,
    SHGDN_FORPARSING = 0x8000,
    public enum ESTRRET : int
    eeRRET_WSTR = 0x0000,
    STRRET_OFFSET = 0x0001,
    STRRET_CSTR = 0x0002
    // constantes
    private const uint CRYPT_STRING_BASE64 = 1;
    // mis funciones
    public static string Encode(string myClearPath)
    IShellFolder folder;
    IntPtr pidl;
    string Pathcodificado;
    Pathcodificado = "ERROR";
    string myPathTextoPlano = myClearPath;
    //string myPathTextoPlano = @"c:\flashtool"; // Regex.Escape(myClearPath);
    // este es el folder del escritorio (raíz del espacio de nombres del shell)
    if (SHGetDesktopFolder(out folder) == 0)
    // pidl del archivo
    //folder.ParseDisplayName(IntPtr.Zero, IntPtr.Zero, @"C:\walter\yo.png", 0, out pidl, 0);
    folder.ParseDisplayName(IntPtr.Zero, IntPtr.Zero, myPathTextoPlano, 0, out pidl, 0);
    // parseo el pidl para obtener sus tamaño
    int k = 0;
    short cb = 0;
    // ONLY WORKS WITH .NET FRAMEWORK 4
    // while ((k = Marshal.ReadInt16(pidl + cb)) > 0)
    // cb += (short)k;
    IntPtr tempIntPtr = new IntPtr(pidl.ToInt64() + cb);
    while ((k = Marshal.ReadInt16(tempIntPtr)) > 0)
    cb += (short)k;
    tempIntPtr = new IntPtr(pidl.ToInt64() + cb);
    cb += 2;
    // encripto el pidl
    StringBuilder sb = new StringBuilder();
    int largo = 0;
    CryptBinaryToString(pidl, cb, CRYPT_STRING_BASE64, null, ref largo);
    sb.Capacity = largo;
    if (CryptBinaryToString(pidl, cb, CRYPT_STRING_BASE64, sb, ref largo))
    //Console.WriteLine(sb.ToString());
    Pathcodificado = sb.ToString();
    Marshal.FreeCoTaskMem(pidl);
    return Pathcodificado;
    public static string Decode (string myEncryptedPath)
    IShellFolder folder;
    // IntPtr pidl;
    string PathDescodificado;
    PathDescodificado = "ERROR";
    string mypathEncriptado = myEncryptedPath; // Regex.Escape(myEncryptedPath);
    // este es el folder del escritorio (raíz del espacio de nombres del shell)
    if (SHGetDesktopFolder(out folder) == 0)
    // Desencripto
    int a = 0;
    int b = 0;
    int largo = 0;
    CryptStringToBinary(mypathEncriptado, mypathEncriptado.Length, CRYPT_STRING_BASE64, IntPtr.Zero, ref largo, ref a, ref b);
    // recreo el objeto
    IntPtr pidl2 = Marshal.AllocCoTaskMem(largo);
    //if (CryptStringToBinary(sb.ToString(), sb.Length, CRYPT_STRING_BASE64, pidl2, ref largo, ref a, ref b))
    StringBuilder sb = new StringBuilder();
    if (CryptStringToBinary(mypathEncriptado, mypathEncriptado.Length, CRYPT_STRING_BASE64, pidl2, ref largo, ref a, ref b))
    // muestro el path proveyendo el pidl reconstruído
    //sb.Clear(); Only works with .NET 4
    sb.Length = 0;
    sb.Capacity = 261;
    SHGetPathFromIDList(pidl2, sb);
    //Console.WriteLine(sb.ToString());
    PathDescodificado = sb.ToString();
    //Marshal.FreeCoTaskMem(pidl);
    Marshal.FreeCoTaskMem(pidl2);
    return PathDescodificado;
    try
    $MyPath = "c:\Windows"
    $Encrypted = [PIDLUtils]::Encode($MyPath)
    $Encrypted
    $notEncrypted = [PIDLUtils]::Decode($Encrypted)
    $notEncrypted
    catch
    $_
    break

  • Photoshop Album Starter Edition 3.0 Photo's Locked in and Can't Get Them Help.

    I have Photoshop Album Starter Edition 3.0  and I never used it/registered it until today when I wanted to take all my photos and put them to disk and have them Printed off.  I can't do this anymore as their are no codes available and I've done all I can.  Please can anyone help I have over 500 photo's locked inside a bloody product I can't even acess.  is their anyway of getting the photo's off the product and onto disk.
    Please any help would be greatly appreciated.
    Thanks
    Arthur.

    I had a look in the starter forum.
    The answer is, if you can't get your unlock code from support, don't worry; your photos are not locked into Starter Edition.
    If you use Windows Explorer, you could go into My Documents > My Pictures, and look around, perhaps in an Adobe folder for your photos.

  • Extremely jaggy photos when using them in Photo-Screensaver

    Hello together,
    I have a problem with the "own-photos-screensaver": Allthough all photos are made with at least 8 Megapixels and all slidshows in iPhoto are running perfect, the screensaver is extremely jaggy.
    I feel it looks like the OS is using a kind of 640x480 quality and then is pumping it up to the 1680x1050 screen resolution. I think that this is not normal?
    Is there a possibility to repair it? Maybe I can somehow completely uninstall the screensaver and then install it again?
    Thanks and best regards,
    Ron

    Which "own-photos-screensaver" are you using?
    Are you using the options under the line in the
    ScreenSaver PrefPane (where it lists Library and all
    of your iPhoto albums)
    Yes, I am using this one. The funny thing is that also the original Apple screensavers like "Forest" also look very jaggy and I am pretty sure that it did not look like this in the past. So any chance to re-install the whole thing or delete some preferences etc.?
    Best,
    Ron

  • Photo Screensaver question

    Hello
    Does anyone know a photoscreensaver that'll show the path and file names?
    I used use that option under Windows 2000 many years ago and have been searching in vain for the Mac equivalent. The only one I have come across so far is ArtSaver 1.7, but that's not working on 10.5.1.
    Or is there a simple hack (for a non-programmer who can follow instructions) to modify the built-in photo screensaver.
    Hope there is an answer. Thanks.

    We have no details on how this works or how many photos it can handle.
    Best I can suggest is to send feedback about poor randomisation to:
    http://www.apple.com/feedback/appletv.html

  • Photo Screensaver Help

    I have my photo screensaver set to all photos and not to a specific album, but when it plays back the photos it doesn't include photos from certain albums and repeats a lot of the same photos from one album. It is using multiple albums for the show just not all of them. Does anyone know why this would happen. If I select the album I know its not using as the only album for the screensaver it plays back fine so I know that the photos are synced and working. Just when I tell apple TV to use all my photos it doesn't. Any thoughts?

    I don't have any suggestions for you, except that I'd always thought what a good job apple had made with this feature, on my tv's I'm extremely delighted with the way it shuffles my photos. Clearly something is not right for you because my tv's are so good at shuffling pictures, it has to be more than just different opinions about the same experience..

  • Mystery photo is locked and prevents me from deleting iMovie project

    I made a move with iMovie which included a photo that I didn't know was locked. Having transferred the iMovie to a DVD I moved the file to the main trash so as to free up space on my Mac. Before emptying main trash, I decided to delete a selection of the photos used in the iMovie in question. I managed to delete the photos no problem, or at least they are no longer in my trash so I presume they've been deleted. However, the iMovie cannot be deleted when I try and empty trash - I get a message telling me that a certain photo is locked and cannot be deleted, therefore the iMovie cannot be deleted. However, the photo in question is no longer in my iPhoto library so I have no way of finding the photo to unlock it and thus enable me to delete the photo/iMovie and empty my trash. My start up disk is nearly full so I really need to empty the trash to free up some space. Any ideas?

    Thanks for responding you guys. Further scowering for clues in other discussion threads provided the answer thanks to "windowsbegone": GENIUS!! My problem is now solved. I followed "windowsbegone"'s instructions from another thread in the hope that it would help and it did. HURRAH!! Here's what they said:
    "Find the movie file where the trash item that you want to recover are. Cntl-click the file. Choose "show package contents" Click on "Media". Find the clips that you want to recover."
    Doing this showed me icons of the locked photo and I simply went into the info and unlocked them. Emptied the trash and they're gone. At last!
    Thanks to everyone who took time to think about this - much appreciated.

  • Screensaver lock not working

    Ever since upgrading to 10.4.7 (from 10.4.6), the screensaver lock does not work.
    The "Require password to wake this computer from sleep or screen saver" checkbox is checked, and I have changed my admin password quite a few times to try and "shake" this option loose.
    I have a hot corner to start my screen saver, but when I disable the screen saver (by moving the mouse or tapping a key on the keyboard) I never get challenged.
    Since there is CtlAltDel lock feature in OS X, like there is in Windows, the screen saver lock is all I have, and I don't want to resort to third-party solutions.

    See my thread http://discussions.apple.com/message.jspa?messageID=2721327#2721327
    I finally had to reset my SMU in addition to command-option-P-R three times at system restart.

  • Please advise how I can register my Photoshop Starter Edition when I apply I do not receive an unlock code so I am unable to continue to use the program and all my photos are locked in, please advise, thanks John

    Please advise how I can register my Photoshop Starter Edition when I apply I do not receive an unlock code so I am unable to continue to use the program and all my photos are locked in, please advise, thanks John

    Please refer to the appropriate Forum, this one is dedicated to Photoshop proper.
    Photoshop Album Starter Edition

  • Photos for lock screen problem

    When you choose a photo for lock screen or home screen (ios7.2) it will not allow you to move and scale it! It just zooms to the middle bit so the whole photo cannot be displayed! Very annoying apple!

    Search the forum as this subject has been beaten to death.
    You can try this:
    http://support.apple.com/kb/HT5595
    If that doesn't fix things, you may want to try my workaround:
    https://discussions.apple.com/thread/5335229?tstart=90

  • Why does image / photo in lock screen appear like background?

    why does image / photo in lock screen appear blurred in ios 7.0.3 on iphone 5?

    Sorry, the image is not visible.
    Some  of the display settings are stored in PRAM. PRAM reset is harmless.
    Reset PRAM:   http://support.apple.com/kb/PH14222
    Best.

  • Zen Sleek Photo Freezes/Locks Up after about 5 minutes usage (need to drain battery to recov

    Hi,
    My 20G Zen Sleek Photo has just recently transformed itself into a useless brick.
    No matter what I try and do, it always ends up freezing after about 5 minutes usage. When you force a reset it does unlock but when it comes back on it sticks on the Creative "copyright" start up screen.
    I've reformatted and re-installed the firmware several times but with the same result.
    font face="comic sans ms,sans-serif">
    The only time it totally unlocks is when you either:
    () let the battery fully drain and then recharge it or
    (2) you disconnect the battery lead and then press the On/Off switch for several minutes.
    I've looked everywhere for a solution/reason but nothing. You find plenty of people with the same problem but no answers. Surely someone knows how to fix the problem
    Is it a faulty battery (unlikely because mine charges up fine and holds it charge well)
    Is it the hard dri've (very unlikely since the player can start up correctly [given the above recovery procedure] and play tracks within the 5-0 minutes you have available)
    Is it the firmware (I doubt it, I can't see what the firmware's got to do with a delayed lock up, having worked fine up to that point)
    Is it the motherboard (maybe....., to my mind it points to a component failure that allows an electric charge to build up and not dissipate, the only way to discharge it is to short the battery pins [with, I hasten to add, the battery removed!])
    font face="comic sans ms,sans-serif">
    Has anyone within the Creative community successfully solved this problem Has anyone received a decent answer from Creative
    I find it staggering that the guys at Creative have washed their hands of this problem. They, after all, are the most likely people to identify the problem - only they have a schematic of the motherboard that would allow them to investigate and locate the problem.
    For the record the firmware I'm using is v .0.0.
    Any guidance would be much appreciated,
    Victor

    Is there really no one with an answer to this problem or have I overlooked a previous post that explained the fault.
    BR
    Victor

  • IOS7 - After taking a photo the lock screen zooms in and I can not enter my password. Does anyone know why?

    Everytime I take a photo on my phone either when it is locked or not, when I come back to my phone to use it next the lock screen has zoomed in and I can not enter my password. I have to either switch the phone off or keep playing with the side button. Its only happened since iOS7 has been installed. Can anyone help?

    On the Home screen, double-tap with three fingers to exit zoom.
    Then go to Settings > General > Accessibility and make sure Zoom is turned Off.
    http://support.apple.com/kb/ts3129

  • PUZZLED: Iphone 4s ran out of space after taking one photo from lock screen and deleted whole photo album. Can I recover?

    My phone is running 6.0.1. I took one photo from the lock screen by sliding up the camera button.  It was a little blurry so I tried again and the iphone 4ssaid it couldn't because the phone was out of space. 
    After shutting the phone off and turning it back, put in the passcode and checked my photos and they were all gone.  my usage says I only have 150kb left on the 16gb phone it says zero photos and zero videos. I only have 10 applications and 606 songs.  It seems the photos are still on the device as the space is being used but i cant access them.  Any idea or suggestions will help. Thanks

    I i backup from current state would it not backup without the photos. Maybe I should just restore from the last backup posible and this should have all photos until then. But before i restore from backup I wish i could just access the photos. I don't understand in the first place how they all deleted, and secondly why iphone still recognizes the space being used.  This is such a glitch, which is very frustrating.  i wish someone at apple can give me more insight....

  • Iphone 4s ran out of space after taking one photo from lock screen and deleted whole photo album. Can I recover?

    My phone is running 6.0.1. I took one photo from the lock screen by sliding up the camera button.  It was a little blurry so I tried again and the iphone 4s said it couldn't because the phone was out of space. 
    After shutting the phone off and turning it back, put in the passcode and checked my photos and they were all gone.  Usage says I only have 150mb left on the 16gb phone it says zero photos and zero videos. I only have 10 applications and 606 songs.  It seems the photos are still on the device as the space is being used but i cant access them. Is very puzzleing...Where did they go and can I recover them? Any idea or suggestions will help. Thanks

    I i backup from current state would it not backup without the photos. Maybe I should just restore from the last backup posible and this should have all photos until then. But before i restore from backup I wish i could just access the photos. I don't understand in the first place how they all deleted, and secondly why iphone still recognizes the space being used.  This is such a glitch, which is very frustrating.  i wish someone at apple can give me more insight....

Maybe you are looking for