My Photos is empty after messing around with my iPhone but i can see my pics taking by my camera when i start Camera and i click on the buttom left corner, it opens the camera roll pics which i can't see choosing Photos

any help will be appreciated, thank you

Photos is an app for creating albums of photos that are ON YOUR COMPUTER. The Camera Roll is photos taken with the iPhone. You cannot transfer photos from the Camera Roll to the Photos app directly; you must copy them to your computer using a photo management app on the computer. After they are on the computer you can sync them to the Photo app.
I suggest reading the manual, as it describes the process much better than I have. http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

Similar Messages

  • Iphone contacts "not available" to car phonebook after messing around with Outlook.pst file names and backups. Iphone4 connects to car though and other phones connect properly.

    iphone contacts "not available" to car phonebook after messing around with Outlook.pst files, names and backups, on my ms XP 2003 laptop. I substituted a much smaller new Personal Folder -Contacts File, with a smaller list of phone numbers (4 only as a test) which successfully synced to the iPhone 4. The iPhone connects to the Skoda Octavia HandsFreeSystem OK (Bluetooth works fine), but now iPhone wont load the new Contacts as it did originally. However a family Nokia (never messed with) can connect properly. So must be the iPhone or more likely an Outlook.pst \ Contacts problem. Ideas?

    After fiddling a little more, the following fixed my corrupted outlook.pst file:
    1) I made a backup
    2) In outlook under file, I exported the calendar to excel
    3) In outlook under file, I imported the calendar back to outlook
    And voila, it worked.

  • My phone crashed while away. apple backed the phone on a friends comp (pic/MMS/SMS/contacts). When I get home and use my comp backup to add music, etc will I lose SMS/pic, etc? THANKS!!!

    my phone crashed while away. apple backed the phone on a friends comp (pic/MMS/SMS/contacts). When I get home and use my comp backup to add music, etc will I lose SMS/pic, etc? THANKS!!!

    Follow this article to back up your data before syncing again to your computer:
    https://discussions.apple.com/docs/DOC-3141
    You can also use the camera wizard to copy your photos to your computer before you sync again.

  • I have changed my account to SIM only and when I put my new SIM Card into my iPhone 4 it just says 'no service' in the top left corner, also iMessage has stopped working too. I can only use my phone on my WiFi at the moment, does anyone have any idea?

    I have changed my account to SIM only and when I put my new SIM Card into my iPhone 4 it just says 'no service' in the top left corner, also iMessage has stopped working too. I can only use my phone on my WiFi at the moment, does anyone have any idea?

    I already have, I contacted Orange yesterday and they said I will receive a text to confirm the registrastion for my new SIM Card, they said the text would arrive between 2 and 24 hours and its been over 24 hours with no text recieved

  • IPhoto 5.0.4  The edit screen shows an "i" icon in the low/R corner for opening an edit box.  One function offered is Naming a photo.  When I click on that "i", it turns blue but no edit box is opened.  Is it hidden somewhere?

    iPhoto "help" gives info on how to NAME a photo. I click on the related icon, but nothing happens.

    As I recall it's in the Info window that you mentioned that you should be able to change the title of the file:
    However, that does not change the file name unless you export the photo out of iPhoto using the Title as the new file name.
    If you can change the title there try rebuilding the library's database file and repair library permissions by launching  iPhoto with the Option + Command keys held down and select those item to rebuild.

  • Bridge cs6 . I can't select more than 1 file even when I use ctrl and select a few files. Bridge will just open them indivudually.It was working properly a week ago.

    I cannot open multiple files on Bridge cs6  on my pc. I hold down ctrl. but it just opens them individually. This function was working in the past. caps lock is off, nothing has changed....help.

    As I select a file, it will launch its application automatically. Therefore I can not select multiple files or just single files without opening the application.
    I did not have this problem before. I started having this problem after I updated my system to OS X Yosemite.
    I tried to reset Bridge preferences, installed updates, but nothing worked so far.
    Can anybody help?

  • My macbook goes into 'sleep' mode when my mobile runs over the bottom left corner, next to the trackpad, does anyone else have this problem?

    Not sure if anyone else has this problem. I only noticed it a few weeks ago when I left my mobile on the keyboard, towards the left of the trackpad. When I started typing I accidentally nudged my phone off the board and then everything went black. I hit any button and everything turned back on again. I'll assume that it went into 'sleep' mode. Is this normal or should I be worried about the health of my mac?

    I am facing pretty much the same problem ... although sometimes the click does work on other parts of the trackpad, but largely I have to stay focused on the left bottom corner. It's getting slightly frustrating esp. because I like the click better than the "tap" and my MAC is only a month old!!
    Is this a software issue or a h/w problem?
    ~ saumil

  • Hi, I am new to Applescript and after messing around with it have a few questions.

    Firstly, I love applescript so far and have made an alarm clock, simple get weather app and applescript app that announces the time and date. i would like to be able to use this as a jarvis like combined app where i can have all of these built into one applescript. secondly i would like a better version of my weather app to be included that can give me weather based on my location (not the location i have it set too). lastly it would also be a miracle if someone could give me a way to make a simple chat like bot that can talk back because i have tried setting up eliza (chat bot from apple) but because it uses ichat things are much more difficult for me as a novice to set up properly.  for instance type hi in a display dialog box and have the text returned open up in messages and be able to communicate with my chat bot that would have predefined responses for what i type. like if i type weather it would know to tell me the weather.  anyway ill have my codes listed below and if anyone can help with any part of this that would be fantastic and greatly appreciated. also just a note i will never sell this thing if someone helps me by giving me coding to get this idea working.  i just want it because i could greatly use having a virtual assistant and to use personally.  thanks in advance for all people who do help.
    --codes for getting date
    set {year:y, month:m, day:d} to (current date)
    y --> 2006
    m --> April
    d --> 15
    -- note that the month given above is not text unless coerced to text. "April" is a word in the AppleScript lexicon.
    -- these results can also be obtained directly, one at a time:
    month of (current date) --> April
    -- or as a list:
    {year, month, day} of (current date) --> {2006, April, 15}
    -- and finally, the day of the week can be extracted:
    weekday of date "Saturday, April 15, 2006 4:29:04 PM" --> Saturday
    say date string of (current date)
    --codes for getting time
    set currentDate to current date
    set amPM to "AM"
    set currentHour to (currentDate's hours)
    set currentMinutes to currentDate's minutes
    if (currentHour ≥ 12 and currentHour < 24) then
              set amPM to "PM"
    else
              set amPM to "AM"
    end if
    --  make minutes below 10 sound nice
    if currentMinutes < 10 then
              set currentMinutes to ("0" & currentMinutes) as text
    end if
    --  ensure 0:nn gets set to 12:nn AM
    if currentHour is equal to 0 then
              set currentHour to 12
    end if
    --  readjust for 12 hour time
    if (currentHour > 12) then
              set currentHour to (currentHour - 12)
    end if
    set currentTime to (currentHour as text) & ":" & ((currentMinutes) as text) & " " & amPM as text
    say currentTime
    --alarm with weather
    -- prompt the user for the desired wake up time
    set targetTime to the text returned of (display dialog "Enter the wake-up time:" default answer "7:00 AM")
    say "Goodnight sir…"
    -- wait until we reach the target date/time
    repeat while (current date) is less than date targetTime
      -- should be 60
      delay 2
    end repeat
    say "It is " & getTimeInHoursAndMinutes()
    on getTimeInHoursAndMinutes()
      -- Get the "hour"
              set timeStr to time string of (current date)
              set Pos to offset of ":" in timeStr
              set theHour to characters 1 thru (Pos - 1) of timeStr as string
              set timeStr to characters (Pos + 1) through end of timeStr as string
      -- Get the "minute"
              set Pos to offset of ":" in timeStr
              set theMin to characters 1 thru (Pos - 1) of timeStr as string
              set timeStr to characters (Pos + 1) through end of timeStr as string
      --Get "AM or PM"
              set Pos to offset of " " in timeStr
              set theSfx to characters (Pos + 1) through end of timeStr as string
              set theHours to hours of the (current date)
              if theHours > 18 then
                        say "good Evening"
              else if theHours > 12 then
                        say "good Afternoon"
              else if theHours > 6 then
                        say "good Morning"
              else if theHours > 0 then
                        say "good Morning"
              end if
              return (theHour & ":" & theMin & " " & theSfx) as string
    end getTimeInHoursAndMinutes
    tell application "Mail" to launch
    tell application "Calendar" to launch
    tell application "iTunes" to launch
    set CityCode to 2353736
    set t_format to "F"
    set v_format to "S"
    set a_format to "Y"
    set IURL to "http://weather.yahooapis.com/forecastrss?w=" & CityCode
    set file_content to (do shell script "curl " & IURL)
    --looking for the line with actual condition
    set theText to text ((offset of "yweather:condition" in file_content) + 1) thru -1 of file_content
    set sub_1 to text ((offset of "\"" in theText) + 1) thru -1 of theText
    set actual_condition to text 1 thru ((offset of "\"" in sub_1) - 1) of sub_1
    set sub_1a to text ((offset of "temp=" in sub_1)) thru -1 of sub_1
    set sub_1b to text ((offset of "\"" in sub_1a) + 1) thru -1 of sub_1a
    set actual_temp to text 1 thru ((offset of "\"" in sub_1b) - 1) of sub_1b
    if t_format is equal to "C" then
              set actual_temp to (5 / 9) * (actual_temp - 32) as integer
    end if
    set theText to text ((offset of "yweather:forecast" in file_content) + 1) thru -1 of file_content
    set sub_2 to text ((offset of "\"" in theText) + 1) thru -1 of theText
    set today_min_temp to word 9 of sub_2
    set today_max_temp to word 12 of sub_2
    if t_format is equal to "C" then
              set today_min_temp to (5 / 9) * (today_min_temp - 32) as integer
              set today_max_temp to (5 / 9) * (today_max_temp - 32) as integer
    end if
    set sub_3 to text ((offset of "text" in sub_2) + 1) thru -1 of sub_2
    set sub_4 to text ((offset of "\"" in sub_3) + 1) thru -1 of sub_3
    set today_forecast to text 1 thru ((offset of "\"" in sub_4) - 1) of sub_4
    set sub_5 to text ((offset of "yweather:forecast" in sub_4) + 1) thru -1 of sub_4
    set sub_6 to text ((offset of "\"" in sub_5) + 1) thru -1 of sub_5
    set tomorrow_min_temp to word 9 of sub_6
    set tomorrow_max_temp to word 12 of sub_6
    if t_format is equal to "C" then
              set tomorrow_min_temp to (5 / 9) * (tomorrow_min_temp - 32) as integer
              set tomorrow_max_temp to (5 / 9) * (tomorrow_max_temp - 32) as integer
    end if
    set sub_7 to text ((offset of "text" in sub_6) + 1) thru -1 of sub_6
    set sub_8 to text ((offset of "\"" in sub_7) + 1) thru -1 of sub_7
    set tomorrow_forecast to text 1 thru ((offset of "\"" in sub_8) - 1) of sub_8
    if a_format is equal to "Y" then
              say "The current weather in Alpine is " & actual_temp & " degrees and " & actual_condition
    end if
    delay 4
    tell application "Mail"
              set unreadMessages to (get every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)
              set numberofmessages to (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false))
              if (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)) is 1 then
                        tell application "Mail"
                                  say "There is only " & numberofmessages & " new email"
                                  repeat with eachMessage in unreadMessages
                                            say "From! "
                                            say (get sender of eachMessage)
                                            say "Subject."
                                            say (get subject of eachMessage)
                                            set read status of eachMessage to true
                                  end repeat
                        end tell
              else if (count of (every message of mailbox "INBOX" of account "jarvisMail" whose read status is false)) is greater than 1 then
                        tell application "Mail"
                                  say "There are " & numberofmessages & " new messages"
                                  repeat with eachMessage in unreadMessages
                                            say "From! "
                                            say (get sender of eachMessage)
                                            say "Subject."
                                            say (get subject of eachMessage)
                                            set read status of eachMessage to true
                                  end repeat
                        end tell
              else
                        say "You have no new messages"
              end if
              tell application "Mail" to quit
    end tell
    delay 4
    set today to (current date)
    set today's time to 0
    set tomorrow to today + days
    set myHome to {}
    tell application "Calendar"
              set futureEvents to every event of calendar "Home" whose start date is greater than or equal to today and end date is less than or equal to tomorrow
              tell application "Calendar" to quit
    end tell
    repeat with anEvent in futureEvents
              tell application "Calendar" to set {summary:theSummary, start date:theStartDate, allday event:allDayEvent} to anEvent
              if (allDayEvent) then
                        set theTime to "At some time today"
              else
                        set {hours:Eventhour, minutes:Eventminute} to theStartDate
                        if (Eventhour > 12) then
                                  set Eventhour to Eventhour - 12
                                  set pre to "PM"
                        else
                                  set pre to "AM"
                        end if
                        if (Eventminute is 0) then set Eventminute to ""
                        set theTime to "At " & Eventhour & " " & Eventminute & " " & pre
              end if
              set the end of myHome to theTime & " you have the event… " & theSummary
    end repeat
    set numberOfHome to (count myHome)
    if (numberOfHome is less than 1) then
              say "you have no events today."
    else if (numberOfHome is equal to 1) then
              say "you have one event today"
      delay 1
              say item 1 of myHome
    else
              say "you have" & numberOfHome & " Home today"
      delay 1
              repeat with thismeeting in myHome
      say thismeeting
                        delay 0.5
              end repeat
    end if
    delay 4
    tell application "iTunes"
              play playlist "Jarvis Alarm"
              delay 900
              tell application "iTunes" to quit
    end tell
    --weather
    set weather to "curl " & quote & "http://weather.yahooapis.com/forecastrss?p=USNY0996&u=f" & quote
    set postWeather to "grep -E '(Current Conditions:|F<BR)'"
    set forecast to do shell script weather & " | " & postWeather
    say (characters 1 through -7 of paragraph 2 of forecast) as string

    4piper wrote:
     I have a HP Envy 15 Notebook PC "without" a cd/dvd drive. I bought one that plugs in which is a pain, but I am findind myself having to install updates that lasts for hours. Please, can someone help me??? I am almost ready to go back to Dell because I have had to many issues! I have spent more time on the upgrades/updates than I have actual enjoyment on this PC. And it is 13 days old.
    And getting a PC that does not have a cd player is completely, well I am not going to say it. How was I going to download the printer? Or any other software?
    Can someone please tell me if there is a one button upgrade/update that will get this done and over with?
    Thank you.
    Piper
    Hi,
    Could you tell us what Envy 15 it is, please? I mean the full model name. The new laptops don't have any DVD drives because all drivers etc can be downloaded from the internet and all bootable images don't have to be burned to DVDs but simple converted to usb drives. Tell us also what printer you have got so we can find the right drivers for you.
    Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
    Testing - HP 15-p000
    HP Touchpad provided by HP
    Currently on Debian Wheeze
    *Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

  • I do not have that "Firefox Tab" in the top left corner of my browser like it is shown in the video. Why is my version of 4.0 different than the demo version?

    After watching the demo video today, I noticed that my browser does not look like the one depicted in the video. For instance, there is no "Firefox" tab in the upper left corner like on the video.

    The new interface is only default on Windows Vista and Windows 7. To get it on Windows XP you need to hide the menu bar. To do that in the View menu select Toolbars, then click on the "Menu Bar" entry.
    If you need access to the menus you can press either Alt or F10 to temporarily display them.

  • I was messing around with .kext files in the MacintoshHD and now my MacBook Pro won't start up.

    I was messing around with .kext files in the MacintoshHD and moved the system.kext and two others to my desktop and deleted the originals and now the MacBook Pro won't start up. All I get at start up is the apple icon then a bunch of text shows up part of which says Mac OS version: not yet set. then the apple icon turns into the power icon and tells me to turn off the computer. I've tried reinstalling from the install DVD by holding down option when powering on and selecting the install DVD and it just goes to a white screen with the apple icon and stays like that. I didn't have the disk utility on my Mac before this happened because I deleted it to make room on my computer a while ago so I'm not sure if that's why it won't load the install DVD but anyone who knows the solution to this with out going to get it repaired would be greatly appreciated. Thank you!

    Never mind my dad just found the original install DVD and that worked. Before I was using an install disc that Apple sent me for another issue I was having, but thanks for replying so quickly and trying to help on this Thanksgiving day!!!

  • I was messing around with my iPad and put in a in app purchese and forgot the pass code help!

    I was messing around with my iPad and put in a in app purchese and forgot the pass code help!

    Do you mean you forgot the passcode for your iPad?  If so you need to restore it through the recovery mode described in http://support.apple.com/kb/HT1808

  • Under Windows 7, 64-bit, Firefox intermittently will not open a new window - all I get is a grey screen, with a tiny part of my homepage displayed in the top left corner of the screen.

    The problem began after a recent Firefox update. Occasionally, when I try to open a new Firefox window, all I get is a grey screen with a tiny section of my homepage visible in the top left corner of the screen. NOTE: Firefox stores all of these aborted attempts, as, whenever I close it and then re-open it, the first time I open a new window it automatically opens all of the windows that had originally failed to open.
    == This happened ==
    Every time Firefox opened
    == on or about June 26, 2010

    Got the exact same problem aswell, finally fed up with it now as i just started up firefox and 14 new windows opened because of this bug, luckily my computer can handle them but someone with a slower processor it would have been a nightmare, needs fixing ASAP.
    Reverting back to 3.6.3 until this issue is solved. (link for anyone wanting to do the same below)
    http://www.filehippo.com/download_firefox/7345/

  • I would like to know the best way to scan music into a pdf format which I can then sync with ipad

    I would like to know the best way to scan music into a pdf format which I can  then sycn with ipad

    smgchandler,
    Any camcorder that can connect via USB or that can save to an SD card can interface with an iPad if you have the iPad Camera Connection Kit so that you can watch your videos on the new iPad's beautiful retina display.  You can find this on the Apple website or in most big box retail stores.
    http://store.apple.com/us/product/MC531ZM/A?fnode=MTc0MjU4NjE

  • Whenever I try to upload photos into iPhoto, they load but when importing it just stops a picyure or two into it and then just sits there. I can't stop the import so I have to shut off my camera when it is importing and start again. Help?

    Whenever I try to upload photos into iPhoto, they load but when importing it just stops a picture or two into it and then just sits there. I can't stop the import so I have to shut off my camera when it is importing and start again. Does anyone know how to fix this?

    As a test  launch iPhoto with the Option key held down and create a new, test library.  Tru importing from your camera to it and to see if the same problem persists. Does it?
    OT

  • My AI program (CS5 Illustrator 15.1.0) will not open some PDFs. It was working just yesterday, but now will only open a PDF if the graphics of the PDF is visible in the box that appears in the lower left corner of the dialog box after you click Open. The

    My AI program (CS5 Illustrator 15.1.0) will not open some PDFs. It was working just yesterday, but now will only open a PDF if the graphics of the PDF is visible in the box that appears in the lower left corner of the dialog box after you click Open. The file size does not seem to matter. Any ideas?

    Hello Kathie,
    Sorry for the inconvenience that has caused to you.
    Please let me know if you have tried converting any other PDF to word with Reader.
    Alos, please sign up at "https://cloud.acrobat.com/" using your Adobe ID credentials. Click on 'ExportPDF' tab and upload the PDF that you want to convert to Word.
    Let me know if this converts fine.
    Hope to hear from you.
    regards,
    Anubha

Maybe you are looking for

  • Print thru Airport Express under Fusion/Windows XP

    I have a MacBook Pro (10.5.2), Airport Extreme Base Station, and a new Airport Express with an attached HP color laserjet. No problem printing wirelessly from OS-X. However, also running Fusion with WinXP and have been printing from there for months

  • Issues with creating EXE in LV 9 (w/ patch)

    When creating an executable in LV 9 (with the new patch installed), it is taking around 7 to 8 minutes to create the executable... where as in LV 8.5 it only took around 1 minute (same VI no changes). After the EXE is done I go into my build folder a

  • Re: Playing of MP3 audio format in MIDP 2.0

    I have the same error ? Has anybody found a solution ? thx a lot Niko

  • Download legacy Java for PS CS3 Yosemite compatibility

    When I try to load Photoshop CS3 Extended after installing latest version of Yosemite, I get an error message telling me to install a legacy version of Java to enable Photoshop. Clicking on the "more information" button brings me neither a link to do

  • How can I import movie form a JVC camera with a .TOD extention

    Hello everyone, I took some movie from my holiday with a JVC camera. And as good mac user, I wish to use iMovie to try to make some movies. The problem is that iMovie does not accept movie with TOD extention. Then I have no idea how could I transform