How can i view the photos detials?

is there any means i can view the photos details on my iphone 4?
thanks

Hi Sandy,
The slideshow in Starter Edition has very basic functionality. To be able to create a slideshow with music and other advanced options, you would need to use Photoshop Elements Software.
~Vibha~

Similar Messages

  • HOW CAN I VIEW THE PHOTOS FULL SIZE

    HOW CAN I VIEW THE PHOTOS FULL SIZE,I click on view slide show but only stay in that mode for 5 seconds

    Hi Sandy,
    The slideshow in Starter Edition has very basic functionality. To be able to create a slideshow with music and other advanced options, you would need to use Photoshop Elements Software.
    ~Vibha~

  • How can I view the photos contained in a backup without restoring my iPhone?

    I've had a new iPhone for a while now, and have recently remembered that I had backed up quite a few photos on iCloud in the past. I can see that my backup takes up a lot of memory through the iCloud app for windows.
    My question is: How can I view a backup without using it to restore my iPhone. I don't currently have a mac, only PC and and iPhone.
    Thanks.

    You cannot.
    If the backup is local (not iCloud) you might be able to using a 3rd party tool.

  • TS3989 I can't view the photos in photo stream. When i click on the photo stream, automatically it goes back to home. Why is this happening? How do i resolve?

    I can't view the photos in photo stream. When i click on the photo stream, automatically it goes back to home. Why is this happening? How do i resolve?

    If older photos are missing it may be because photo stream photos are only held in iCloud for 30 days.  After that they are removed from iCloud but will remain (up to 1000 photos) on your device until deleted.  Also, only photos taken after enabling photo stream are added to your photo stream, and only when the camera is closed, your device is connected to wifi and you have at least 20% battery life remaining.
    To transfer the missing photos you can either create a shared photo stream containing them and invite yourself to it (see http://help.apple.com/icloud/#mmc0cd7e99), import the photos to your computer and sync them to your iPad, or use an app like PhotoSync to transfer them to your iPad over wifi.

  • How can I view all photos from a specific year?

    How can I view all photos taken in one calendar year like 2010? Is there a way to filter this way?

    Yes, create a smart album or a search with a "Date" rule or a Calendar rule.
    For example: New > Smart Album
    Add Rule:  Date
         Capture year is 2010.
    or: Add Rule: Calendar
    and click-step  the year back to 2010:
    In the Calendar it is a bit cumbersom to select a whole year, because it will only show 3 month at once. Select the first day and then scroll to to the end oft the year.

  • How can I view the size of a particular event in iPhoto '11?

    How can I view the size of a particular event in iPhoto '11? The 'Get Info' option is not displaying the size of the event like it used to in iPhoto 8.

    But the event does not really have a size - you can export the photos and make the size pretty much what you want - while it is in iPhoto it is an event
    I guess that iPhoto could report the size of the original photos as imported - or the size of the modified photos if exported as JPEGs - or the size of the modified photos if exported with a maximum dimension of 1080 - but the event simply is photos and does not have a "size" until you export it
    Obviously you want to know the size but the question was
    what is your puprose for knowing the size?
    WIth that information maybe there is a way to get you what you want
    But the basic answer is simply that an event does not have a size - an event is a collection of photos and each photo has either two or three versions in the iPhoto library and each photo can be exported for outside use in several formats and at any size
    LN

  • I just bought a MacBook Pro, and need to d/l my photos from my memory card reader.  iphoto keeps coming up as the app to use, but the column on the left says "No name, and shows 0 photos on the black screen.  How do I view the photos on the reader?

    I just bought a MacBook Pro, and need to d/l my photos from my memory card reader.  iphoto keeps coming up as the app to use, but the column on the left says "No name, and shows 0 photos on the black screen.  How do I view the photos on the reader?

    Did it...  When I clicked on "No name", a file folder came up and, I forgot to put MacBook Pro in the name bar... That was it!  Maybe someone else can use this post Hopefully...

  • How can I get the photos on my pc onto my Macbook without emailing each one individually to myself?

    How can I get the photos on my pc onto my Macbook without emailing each one individually to myself?

    Welcome to Apple Support Communities.
    Copy them from your PC to a flash drive or an external drive, then open iPhoto and select Import to Library.
    Depending on your settings, iPhoto might open automatically and ask if you want to import them when the device (camera or flash drive or external drive) containing the images is connected.
    At the end of the import, iPhoto will ask if you want to delete or keep the photos on the other device. Keep until you're absolutely certain all images are imported correctly and you've viewed them in iPhoto. It's always nice to have a backup.

  • How can I view my photos within my iCloud account? I don't have an icon for that, like I do for Calendar, for instance.

    how can I view my photos within my iCloud account? I don't have an icon for that, like I do for Calendar, for instance.

    There is no "Online Gallery" feature in iCloud.
    You can use photostream instead to snyc your pictures across your devices, but not to the internet.

  • How can I view the USMT recovery key in SQL report

    Hello all,
    Can anyone help me to provide sql query for below link… What I am looking is Just to create a report with all computers that has computer association any type with the recovery key information.
    http://www.windows-noob.com/forums/index.php?/topic/1763-how-can-i-view-the-usmt-recovery-key/
    I have tried below but not working so looking for help…..
    SELECT     TOP (100) PERCENT dbo.v_StateMigration.SourceName, dbo.v_StateMigration.SiteCode, dbo.v_StateMigration.SMPServerName, 
                          dbo.v_StateMigration.SourceMACAddresses, dbo.v_StateMigration.RestoreMACAddresses, dbo.StateMigration.StateEncryptDecryptKey, 
                          dbo.StateMigration.StorePath, dbo.StateMigration.StoreSize
    FROM         dbo.StateMigration INNER JOIN
                          dbo.v_StateMigration ON dbo.StateMigration.SMPServerName = dbo.v_StateMigration.SMPServerName CROSS JOIN
                          dbo.v_UserStateMigration
    WHERE     (dbo.StateMigration.StorePath IS NOT NULL) AND (dbo.StateMigration.StoreSize IS NOT NULL)
    ORDER BY dbo.v_StateMigration.SourceName

    Try this.
    SELECT Distinct
    SM.SourceName,
    SM.SiteCode,
    SM.SMPServerName,
    SM.SourceMACAddresses,
    SM.RestoreMACAddresses,
    SMT.StateEncryptDecryptKey,
    SM.StorePath,
    SM.StoreSize
    FROM
    dbo.v_StateMigration SM
    JOIN dbo.v_UserStateMigration UM on SM.RestoreClientResourceID= UM.RestoreClientResourceID
    join dbo.StateMigration SMT on SM.SMPServerName = SMT.SMPServerName
    WHERE
    (SM.StorePath IS NOT NULL)
    AND (SM.StoreSize IS NOT NULL)
    ORDER BY
    SM.SourceName
    http://www.enhansoft.com/

  • How can I use the photos from iphoto to display in contacts?

    Contacts has a space for a photo.  At one time I knew how to populate this space with photos from iPhoto. Currently my choices are to use an icon or take a pic with the camera.
    How can I add the photos from iPhoto to the choices for populating the "Contacts" image space for individual cards?

    See this Discussion...
    https://discussions.apple.com/message/19082703#19082703

  • How can I pass the photos from one iphone to another?

    how can I pass the photos from one iphone to another?

    Use the Beaming feature. See the info at the ? In iPhoto for iOS.

  • How can i delete the photo library in my iphone 4 with ios6

    how can i delete the photo library in my iphone 4 with ios6

    go to settings > general > usage > music app under the storage section > slide across the bar that says 'photo library' and a red delete button will appear
    you can also plug the device into your computer with itunes, go to the photos tab at the top center and uncheck where it says 'sync photos.' then press 'apply' in the bottom right corner. this will erase the photos that were synced to your phone from the computer

  • TS3697 There is no camera roll download pop up after connected to iTune, to solve that I used Photo Transfer App to download the Photos, but how can I delete the photos in the camera rolls, as there are 9000 photos in the camera roll

    There is no camera roll download pop up after connected to iTune, to solve that I used Photo Transfer App to download the Photos, but how can I delete the photos in the camera rolls, as there are 9000 photos in the camera roll

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • How can I delete the photos in Collections/moments?

    How can I delete the photos in Collections/moments? I have set icloud photo settings to none, and delete all my photos in album, but I'm still getting 5.6 G of photos!

    help!

Maybe you are looking for

  • Moving entries of imported Audio cd's to one genre to another?

    I've imported a number of audio cd's from the same artist and it has arranged them into two different genres. Anyone know how to move imported items in the itunes library from one genre to another so that the mulitple albums by the same artist are co

  • How to use srcpac? Is it still being developed?

    srcpac and srcpac-git don't work for me, but another user claimed it works just fine. Can anyone please point out what am I dong wrong? srcpac-git has e.g. an updated manpage, but still doesn't work $ cat /etc/srcpac.d/less s#--prefix=/usr#--prefix=/

  • Dim edges on Macbook Pro

    Within the last few days it seems that when I wake my mbp up from sleeping, the edges of the monitor are dimmer than the center. I saw one post that suggested it was just the display warming up, but I've had my mbp for about 5 months now and this is

  • Oracle Alert Requirement

    Hi , We have created a alert and defined two action items under the same. That's a periodic alert. Action items defined are 1) Send mail 2) Call concurrent program. In case of mail action item mails are getting sent, depending upon the number of reco

  • Invalid signature value under java 1.5.0_10 and PKCS11

    Hi! I have a problem with my GemSafe "Smart Card" and Java 1.5. I've developed a program that signs a document, every thing seems to be fine, but when I try to verify the signature a "Signature encoding error" is thrown. If we change the line: Signat