How do I get all Notes from iPad2 tp iPad3?

I have more Notes on iPad2 and can't get all of them on iPad3. Does anyone have ideas?  Thanks

I don't see an option in iTunes to sync them.  Also, I don't see a way to sync then to iCloud. They areon my iPad, not in iCloud, and there doesn't seem to be a way to get them to the iCloud.

Similar Messages

  • How can I get all photos from iPhoto to automatically back up to iCloud from my Mac OSX Version 10.6.8 operating system.  Not enough memory to upgrade.

    How can I get all photos from iPhoto to automatically back up to iCloud from my Mac OSX Version 10.6.8 operating system.  Not enough memory to upgrade.

    You can't.  iCloud is not for general file backup from a Mac. It's for backup up and syncing data between mobile devices and and Macs and  The following is from this Apple document: iCloud: Backup and restore overview.
    iCloud automatically backs up the most important data on your (mobile) device using iOS 5 or later. Once you have enabled Backup on your iPhone, iPad, or iPod touch .....
    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.
    Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    You get 5 GB of free iCloud storage for:
    Photos and videos in the Camera Roll
    Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    App data
    Home screen and app organization
    Messages (iMessage, SMS, and MMS)
    Ringtones
    Visual Voicemails
    But not from a Mac.  If you want to backup your photos and other important files I suggest you get an external hard drive and use  it with Time Machine.
    OT

  • How do I get all contacts from my iphone 4 to icloud?

    how do I get all contacts from my iphone 4 to icloud? I've just got some of them.

    All you have to do is enable iCloud on your phone and turn notes on.  They should automatically appear on your phone.

  • How can i get all values from jtable with out selecting?

    i have one input table and two output tables (name it as output1, output2). Selected rows from input table are displayed in output1 table. The data in output1 table is temporary(means the dat wont store in database just for display purpose).
    Actually what i want is how can i get all values from output1 table to output2 table with out selecting the data in output1 table?
    thanks in advance.
    raja

    You could set the table's data model to be the same:
    output2.setModel( output1.getModel() );

  • How can I get all photos from the camera roll onto the photo stream so they will share between iphone and ipad?

    How can I get all photos from the camera roll, and all new pictures taken, to get on the photostream so they can share between iphone and ipad?

    When turning PhotoStream on with photos available in the Camera Roll, only photos captured by the iPhone or saved on the iPhone are placed in the PhotoStream.
    For all photos that were in the Camera Roll prior to turning PhotoStream on, import the photos with your computer and add the photos to your PhotoStream on your computer.

  • How do I get all music from my iPod classic to itunes on my computer?

    How do I get all music from my iPod classic to itunes on my computer? I was able to "authorize" the purchased music (40 songs) to download to laptop but I can't select my entire library (1500 songs) to download to laptop!

    Recover media from iPod
    See this post from forum regular Zevoneer for options on moving your iPod data back to your computer.
    tt2

  • How do I transfer all notes from iPad to my macbook

    How could I transfer all notes from iPad 4th generation to my MacBook?

    I would do that by transferring my existing notes on my iPad into an iCloud account.  You would set up an iCloud notes account on your iPad (Settings > iPad).  Make sure all the notes reside in the iCloud account (not an easy task).  Then turn on iCloud notes on your MacBook, and they will all mysteriously appear.
    Another way would be to wait for iOS 8 and Yosemite.  Once these two new operating systems are released, Apple has said you will be able to use AirDrop to move information between iOS and OS X devices.

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • How can i get the serialnumber from ipad2 in php webserver?

    Making php webPage,
    I need to get the serialNumber from iPad2.
    Is it possible??
    As i know, it can't be. But i wish it can be.
    Would you please help me?

    Venkat,
    For Payroll extractor you have do the config for BW Payroll month assignment. This setting is for payroll results consolidation ( INPERIOD or FORPERIOD with contry specific).
    Secondly if are not getting data even you have some valid results in RT cluster, check the authrization for background user ALEREMOTE. You have added some additional profiles for HR Data extraction as per your system release.
    Check OSS note 150315.
    Regards,
    RC

  • HT204053 how do i get all pictures from my phone in icloud to my macbook

    I recently had to buy a new hard drive for my macbook and I am having problems transferring photos.  How can i get my photos from my phone in iphoto?  I had

    Setting/Photos & Camera/My Photo Stream.
    Then enable it in iPhoto on the computer.

  • How do I get all information from my smart phone 4 to my new smart phone 5

    How can I move all information from my iPhone 4 to my iPhone 5?

    Using iTunes for this is recommended over iCloud since it will be faster and more thorough. Set the backup to be stored locally on the computer's drive.

  • How can I get all tracks from an album into the album in my library?

    When importing the albums from a folder, the tracks for some of the albums were split up.  How can I get them in one?

    Hello JudyD276
    The article below will give the steps to get the songs grouped together for you.
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • How do you get all downloads from one computer to another

    How do I get everything on iTunes from one computer to another?

    You've posted to the iTunes Match forum, which your question isn't really related to. However this KB article will help:<http://support.apple.com/kb/HT4527>.

  • How do I get my notes from damaged iphone onto mac?

    I dropped my iphone 3G a few months ago and the screen cracked pretty badly, but it still worked fine until last night. I would have bought new one, but I have been waiting patiently for a year now for the new iphone to come out. The 3G phone still works and charges and everything, but it seems like the sensory area in the bottom right corner has stopped working. I can't slide and unlock my phone. I am still receiving calls, texts, reminders, etc. but I cannot view them. I backed up and transferred everything from the phone after this happened, but my notes. I neeeeeed my notes.
    How can I backup/transfer my notes from my iphone without going into the phone to my macbook pro?
    Help!!!!
    I have an appointment at the Genius bar today at 3:10pm. Maybe they can help me???
    Thank you!!!!
    Allie

    This is an application for the Mac that can transfer your notes (and just about everything else):  http://www.ecamm.com/mac/phoneview/

  • How do I get all Photos from iMac to MBP

    My iPhoto album has several hundred pictures in several albums.  While on the road, I'd like to put them on CD's or DVD's.  Right now they are all on my iMac and I'd like to move them over to my MBP which I have with me all of the time.  It makes more sense to be able to do the disc media on the road rather than at home.  Any suggestions how I can pair the iMac to the MBP in order to get the pictures onto the MBP would be an enormous help?

    Join them with a Firewire cable and then restart the iMac while holding down T so it Boots into Target Disc mode, then it will appear on the MacBook Pro Desktop as a regular volume. Then just drag the iPhoto Library across from one to the other (this would replace any Library on the MBP so if you need that rename it first)

Maybe you are looking for

  • Implement Chasm & Fan Trap at Universe level

    Hi All, Could anyone provide me some idea about 'how to implement Chasm & Fan Trap at Universe' practically?? Thanks for ur time & help. Regards,

  • Premiere Pro CC 2014 Stalls Midway Through Render

    I've recently added the CC 2014 suite to my computer, and for the most part it's good and solid.  However, whenever I try to output a file from Premiere Pro CC 2014, either as a direct export or via Media Encoder, the program simply stops rendering m

  • PR PO Process

    Dear MM Experts, Can any one suggest the way to follow the PR PO process if the users only have the configuration of the material to be purchased but not the exact materials. Please consider the below when providing an answer, 1) Stock of items are m

  • Me account won't verify

    Please can someone help? I backed up my new 5S and my me account won't verify because its showing an old business email account. I have changed my email address and verified via my MacBook Air but, my phone is still showing and asking for the old ema

  • Header row repeat for each page?

    Hi all. I have a rtf template with a table with 4 rows and lets say there 4 rows are headers but doesnot have any formfields.... I have a seperate table with form fields beneath it. I need my header tbale to be displayed on each page in output. I am