Slideshow doesn't show any photos

After I load my photos into the slideshow menu, I click play/preview. The music plays but no photos are being shown. Any help?

Hi peter,
If this pertains the the post in the other forum, I think it is the same problem of you might have renamed images in the iPhoto Library in the Finder.
Old Toad has a solution for this if you didn't rename too many of them.
Old Toads solution:
There is a way you can recover your library. Here's what I developed and it worked for me. But make a backup copy of your iPhoto Library folder beforehand just in case:
How to recover those photos lost due to renaming in the Finder
1 - do a search of just the iPhoto library folder with the following criteria:
File name contains ".jpg" (or .psd) and File size is less than 1 KB. (You can just do a search for File size less than 1 kb but do not delete the other zero sized files that are of a non image type).
That will find all of those zero sized files that were created when iPhoto couldn't fine the originals.
2 - move those zero sized image files to the trash.
3 - now delete those "bad" photos from the iPhoto library using the normal method within iPhoto (if you don't they will be recovered every time you do a library rebuild with the "recover orphaned photos" option selected).
4 - launch iPhoto with the Command+Option keys depressed and when the rebuild menu comes up select the last option, "Recover orphaned photos in the iPhoto Library folder".
This will recover those renamed files and put then in a new roll. The only downside is that their titles in iPhoto will be "Roll xx-1, etc. You can do a Get Info on them, find the actual file name and change the title so they are the same.
So it can be done with a little work.
The only way to rename files that have already been imported into iPhoto is to export them to the desktop, rename them there and then reimport. Once imported you can delete the original set.
You shouldn't encounter problems when embedding the metadata into the files. But to be absolutely sure, pick one test photo and give it a go.
You do know that you can use Photoshop from within iPhoto as the editor of choice, right? Just go into iPhoto's preferences and in the General pane under "Double-Click Photo" select Photoshop as the editor to use when you double-click a photo. The only caveat is that when you go to save the edit you must use the same filename, extension and location that you found the file in. If you must create a layered or otherwise pdf file it must be saved to the desktop and then imported as a new file.
Hope this has been of some help. Good luck.
O.T.

Similar Messages

  • IPhoto app doesn't show any photos from my photos app

    I just upgraded my new iPad to iOS 6 beta. Maybe that's the problem but suddenly my iPhoto app doesn't show any photos at all. All the tabs (albums, photos, events, etc) are empty.  When I open the app it says "updating photo library" briefly, but that's it. I tried rebooting, deleting the app and reinstalling it, basically everything I could.  Is this a known iOs6 bug?

    Ok, I have the release and I have the issue, photos are just boxes w no pictures, is there a way to remove library and reload? The photo app works fine and all pictures are there.

  • Photo stream doesn't show any photo

    Listen, I have this problem when I open iCloud photos, folder "Photo Stream" shows, I open it and it doesn't show any photo taken on my iPhone, but I can play slide show and see every single photo, but only in that way with slide show, how can I fix this? It worked alright for a few days, now it's somehow different, help please.....

    GimmeCheezburgers
    This solved my questionRe: I upgraded to iOS6 and now I can't save photos from facebook app?
    Sep 21, 2012 7:05 AM (in response to GimmeCheezburgers)
    Nevermind... figured it out.
    If anyone else runs into the problem, here's the fix:
    Settings > Privacy > Photos > turn facebook to ON

  • IPhoto 9 does not show any photo of old Mac Mini's iPhoto 7 library

    I'm trying to migrate an 80GB iPhoto library from my old Mac Mini to a new iMac. The old Mac Mini has iPhoto version 7. The new iMac iPhoto 9.
    When I copied the complete library, iPhoto does not show any photos. How can I fix this? I already tried:
    Using iPhoto Library Upgrader – however it shows: Your library can open with the current version of iPhoto and does not need to be prepared with this tool.
    Using iPhoto's rebuilding etc functions on both Macs – this does not do the trick
    Using iPhoto Library Manager – also shows 0 photo and rebuilding does not work.
    Anybody knows a solution?
    Thanks!

    Doesn't work :
    It is also quite strange that iPhoto just opens the library without any warnings, but without showing any of the content (photos, albums, etc.)

  • Please help me out! my ipod doesn't show any thing in my screen.

    please help me out! my ipod doesn't show any thing in my screen. please can someone helphelp me please T^T.
    or could someone teach me to open a ipod photo on. i want to check inside is it find?

    Try resetting it. If that doesn't help, try restoring it.
    There are no user serviceable parts inside an iPod, and opening it will void the warranty.

  • BPEL Console doesn't show any instances created

    Hi,
    We are using file protocol to read the files from trading partner into B2B. File is successfully processes by B2B. I can see that in reports.
    Then I have defined a BPEL process to Dequeue the messages from B2B using AQ Adapter, transforms and places the files in the local file system.
    The BPEL process is simple flow with one receive , transform and invoke activity.
    I have configured AQ adapter using WSIF browser. I can see the deployed document definition in browser.
    I have the TP agreement deployed, BPEL process deployed, but I don't see the 850 file processed. BPEL Console doesn't show any instances created. How would I know where what went wrong?
    Please help.

    Try using java oracle.tip.adapter.b2b.data.IPDequeue to dequeue the message and see if you can dequeue
    Then you'l be able to pin point if the issue is with your BPEL or with B2B Queue's
    Kalyan

  • "Dependecies" tab doesn't show any information for a selected table version 4.0

    Hello,
    I work with SQL Developer 4.0.0.13. I can see 20 tables in the list. When I select one table, in the tabs on the right side I can see information for "columns" and "data" and "constraints" and "indexes"... but the tab "Dependencies" doesn't show any information about references between this table and other tables in the schema.
    Oracle database is v11.2
    Can you please tell me what do I need to do in order to see information on "Dependencies" tab for a table?
    Thank you,
    Milan

    Hi, here is my example of XML extension showing referencing tables:
    Save the following XML to a file.
    <items>
      <item type="editor" objectType="TABLE">
        <title><![CDATA[*Referencing Tables]]></title>
          <query>
            <sql><![CDATA[SELECT
      cfk.owner "OWNER",
      cfk.table_name "TABLE NAME",
      cols.column_name "COLUMN",
      cfk.constraint_name "CONSTRAINT NAME",
      cfk.delete_rule "DELETE RULE",
      'SQLDEV:LINK:' || cfk.owner || ':TABLE:' || cfk.table_name ||
      ':oracle.dbtools.raptor.controls.grid.DefaultDrillLink' "LINK"
    FROM
      sys.all_constraints cpk,
      sys.all_constraints cfk,
      sys.all_cons_columns cols
    WHERE
      cpk.owner = :OBJECT_OWNER AND
      cpk.table_name = :OBJECT_NAME AND
      SUBSTR(cpk.table_name, 1, 4) != 'BIN$' AND
      SUBSTR(cpk.table_name, 1, 3) != 'DR$' AND
      cpk.constraint_type in ('P', 'U') AND
      cfk.r_owner = cpk.owner AND
      cfk.r_constraint_name = cpk.constraint_name AND
      cfk.constraint_type = 'R' AND
      cols.owner = cfk.owner AND
      cols.constraint_name = cfk.constraint_name
    ORDER BY
      cfk.owner, cfk.table_name, cfk.constraint_name,
      cols.column_name]]>
          </sql>
        </query>
      </item>
    </items>
    In SQLDeveloper select Preferences -> Database -> User Defined Extensions and click <Add Row>.
    In the "Type" field enter "EDITOR" and in the "Location" field enter the path to the file with XML.
    After restarting SQLDeveloper You should see a new tab "*Referencing Tables" for tables.

  • IPhoto 11 doesn't show the photos that I just imported from an SD card, but says its importing to library 15 min after SD card is removed.

    iPhoto 11 doesn't show the photos that I just imported from an SD card, but says its importing to library 15 min after SD card is removed. The import seemed to start normally, I went to mail to check messages, came back to iPhoto & the usual prompt about wanting to delete the photos on the card never came up. The photos didn't show up in events or the library & the device icon wasn't showing so I tried to import again. A prompt then came up saying that I needed to wait until the import was done!

    Hi, this problem is also happening to me also. I just took some pics of my daughter on my nikon d3100 and imported them from SD card to iPhoto. It says 'preparing to import' but during the process i do not see the photos being imported. After it was done, there was a new event album, i clicked opend it to see my photos but all of them were blank. I forced quit and re-launched iPhoto but it didnt work, i even re-imported, not to no avail.. Please help.  Earlly 2011 13' MacBook pro 10.7.2

  • When I try to access my emails the screen opens but doesn't show any emails

    When I try to access my emails the screen opens but doesn't show any emails

    Tap to open a new tab and Private will be at the bottom left of the page. If it is active, tap to turn it off.

  • Tools sync now doesn't show any progress bar???

    I have created sync module for firefox.
    But when i click on : Tools > sync now
    Why it doesn't show any progress bar???
    Firexfox team should look into this matter.
    I love firefox.
    Best Regards,
    Jason Malaysia

    Yup Okay..
    But i'm now wondering, if it run background:-
    Where does it update sync to?
    Is it into my firefox account?
    Where i can see my backup bookmarks?
    Best Regards,
    Jason Malaysia

  • Running Sync BPEL process doesn't show any HTML form /XML source for input

    Hi
    I designed,compiled and deployed SYNC BPEL process on to server
    but when I opened console and try to run the process, it doesn't show any form for input
    Actually it has to take input
    Where I am doing wrong...?
    Thanks for any help...

    Hi Praveen,
    That is correct, you're not doing anything wrong. The BPEL Console doesn't show any forms for testing the services if the service is synchronous.
    I test my synchronous webservices with Eviware SoapUI. This is a freeware tool. Check: http://www.soapui.org/
    Just create a new project in soapUI, create a new request from WSDL, copy and paste the WSDL in soapUI. It will generate a default request for you, which you can edit and execute.
    HTH,
    Bas

  • When i call someone who already connected with another call it doesn't show any wating notification. why? it is very important. all other mobiles have this potion. Please give me some solution.

    when i call someone who already connected with another call it doesn't show any wating notification. why? it is very important. all other mobiles have this option. Please give me some solution.

    Your iPhone can take multiple calls. If you answer your phone from one person or call someone and another call comes into you, you will hear a beep and if you pull your phone away from your ear, you will see that you can hang up the call with the 1st person or answer the 2nd call and then swap between the two.
    I have no idea what you mean by you calling someone who is already talking to someone. I've never been able to see on my iPhone that someone I'm calling is already talking to someone else.

  • I changed my username and now afp doesn't show any users. I have file sharing on. And also when I select "get more info" on the shared folders they don't have my username in there. it just has "applepc(me)" it my old username before changing it.

    I changed my username and now afp doesn't show any users. I have file sharing on. And also when I select "get more info" on the shared folders they don't have my username in there. it just has "applepc(me)" my old username before changing it showed the correct username? please any help would be great.

    Turn Time Machine OFF temporarily in its preference pane. Leave the window open.
    Navigate in the Finder to your backup disk, and then to the folder named "Backups.backupdb" at the top level of the volume. If you back up over a network, you'll first have to mount the disk image file containing your backups by double-clicking it. Descend into the folder until you see the snapshots, which are represented by folders with a name that begins with the date of the snapshot. Find the one you want to restore from. There's a link named "Latest" representing the most recent snapshot. Use that one, if possible. Otherwise, you'll have to remember the date of the snapshot you choose.
    Inside the snapshot folder is a folder hierarchy like the one on the source disk. Find one of the items you can't restore and select it. Open the Info dialog for the selected item. In the Sharing & Permissions section, you may see an entry in the access list that shows "Fetching…" in the Name column. If so, click the lock icon in the lower right corner of the dialog and authenticate. Then delete the "Fetching…" item from the icon list. Click the gear icon below the list and select Apply to enclosed items from the popup menu.
    Now you should be able either to copy the item in the Finder or to restore it in the time-travel view. If you use the time-travel view, be sure to select the snapshot you just modified. If successful, repeat the operation with the other items you were unable to restore. You can select multiple items in the Finder and open a single Info dialog for all of them by pressing the key combination option-command-I.
    When you're done, turn TM back ON and close its preference pane.

  • Ultiboard part wizard doesn't show any copper layers during part creation

    Ultiboard part wizard doesn't show any copper layers during part creation. I have to check the box to activate Copper Top in the part editor, once the part is made in order to see what I've made. I suspect there is a connection between this issue and my prior issue with the inability of the Multisim database to link to parts that I have recently made in Ultiboard. This all just began happening this week (of 8-27-12) Design Suite version is 10.1 & OS is Windows 7.
    Thanks.

    Hi Todc,
    This is very strange. My suggestion is that you can try to delete the configuration file. To delete the configuration file, go to Options >> Global Preferences. Under the Paths tab, select the path to the configuration file all the way upto config\ as shown in screen shot. Close Ultiboard and navigate to this folder. Delete all the files and then try to open Ultiboard again. This should resolve the issue.
    Please let me know what happens.
    Regards,
    Tayyab R,
    National Instruments.
    Attachments:
    v10 Global Preferences.JPG ‏77 KB

  • IPS MC: It doesn´t show any signature.

    Hi.
    I had IPS MC 2.1.0 (Build 123) functioning fine. I installed the idsmdc2.1.0-win-CSCsc336961.tar file in order to solve the CSCsc33696 bug. Next, I installed an update signature for IPS version 5 (But I didn´t has any IPS sensor version 5, I just was checking), but the update didn´t work. Afther it, I noted that I have a big issue: When I try to modify any signature, in the Settings->IOS IPS, it shows:
    Object loading failed. Errors occurred while loading the Signatures. Not all signatures may have been loaded.
    It doesn´t show any signature.
    I erased all the sensors, including the IOS IPS. Then I import one of the IOS IPS and follow the instruction for the CSCsc33696 bug. I reimported the device, deployed configuration, disabled the IPS feature in the router and enabled the feature in order to load the signature configuration, but the issue persist. Then, I installed the newest signature update to IDS sensor version 4 (it includes IOS IPS update) and it installed without problems, but the problem in the sigature page perisist.
    I reinstalled the IPS MC, but the problem persist. I uninstalled the IDS MC, and installed again without save the database. It shows the application IDS MC and Security Monitor without configuration, like a new installation, but the issue persist!!!
    Someone had this problem? Someone know how can I solve it?
    Thanks.

    The Cisco IOS IPS feature restructures the existing Cisco IOS Intrusion Detection System (IDS), allowing customers to choose to load the default, built-in signatures or to load a Signature Definition File (SDF) called attack-drop.sdf onto the router. The attack-drop.sdf file contains 118 high-fidelity Intrusion Prevention System (IPS) signatures, providing customers with the latest available detection of security threats. For more information refer to following url:
    http://www.cisco.com/en/US/products/ps5854/prod_configuration_guide09186a00802c9587.html

Maybe you are looking for

  • Macbook Air only connects to the internet for a few seconds at a time.

    My 2013 Macbook Air (10.8.5) will only connect to the internet for a few seconds. It recognizes the wifi, but will just timeout when trying to access a website. If I turn Wifi off and then back on, it will work for another few seconds, only for the s

  • Add ability to select background display color for transparent areas of image

    Right now the background color for images with an alpha channel if always white.  This makes Bridge useless for sorting through images where the primary color is white.  It also looks like crap when you are doing a slideshow preview on a black backgr

  • Viewing multiple charts/tables in 1 report

    From what I understand about Discoverer, it is not possible to run more than one query in a worksheet and it is not possible to view more than one worksheet at a time in Viewer. We currently have a Business Objects report that executes 5 queries and

  • Portal Eventing in MSS not working with VC

    We have written a VC component that wants to subscribe to the event raised by the General Information web dynpro in MSS. I want to to pick up the chosen employee number and respond to it. I've read OSS note 1112733 and have entered the namespace and

  • Photoshop now won't recognize dxo files!

    Well, I fixed the Bridge problem (not showing RAW thumbnails), now, when I try to open a DXO file from Bridgem Photoshop doesn't recognize the file type. Any suggestions besides reinstalling my entire system?