Access my Reading List from PC?

Is there are way to access my Reading List that created on iPhone/iPad, on my PC through iCloud? I don't use Safari.
Or alternatively it would be nice to be able to email the Reading List...

Hello modance
Check out the article below for troubleshooting bookmarks and access to your reading list.
iCloud: Troubleshooting iCloud Bookmarks and Reading List
http://support.apple.com/kb/TS4001
Thanks for using Apple Support Communities.
Regards,
-Norm G.

Similar Messages

  • How do i remove my reading list from my macbook pro

    How do i remove my reading list from my macbook pro?

    Hi marazulnet,
    Do you mean the reading list in Safari?
    Click on Clear All.
    Regards,
    Ian.

  • How do i remove reading lists from my safari on my mac book

    how do  remove a reading list from safari

    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os?view=discussions 
    http://www.apple.com/support/macbookpro
    http://www.apple.com/support/safari

  • How can i sync my reading list (from/to) my iphone 4 [iOS 5]

    how can i sync my reading list (from/to) my iphone 4 [iOS 5] .?
    icloud i enabled.

    Use iCloud to keep your Reading List up to date on your iOS devices and computers
    Go to Settings > iCloud, then turn on Documents & Data.
    On your phone, the reading list will be found at the top of your Safari bookmarks list.

  • Synchronization reading list from Safari Windows to iPhone

    Hello!
    I have some problems with synchronization reading list from Safari Windows to iPhone.
    I have some sites in list, but I dont have it on iphone. icloud on, apps for windows downloads.
    What need i do?

    I know it's been a while, but in case others come across this problem:
    You need to have the iCloud Control Panel for Windows installed and Bookmark synchronization set to Safari for syncing reading lists to work.

  • Accessing an Array List from another class

    Hi, I was a member on here before, but I forgot my password and my security question is wrong.
    My question is how do I access a private arraylist from a different class in the same package?
    What I am trying to do is the following (hard to explain).
    Make a picking client for a shop, so that when an order is recieved, the picker can click on the orders button, and view all of the current orders that have not been completed. This Pick client has its own user interface, in a seperate class from where the BoughtList array is created, in the cashier client. The boughtlist is created when the cashier puts in the product number into the cashier client and clicks buy. I seem to be having trouble accessing the list from another class. Once the order is completed the cashier clicks bought and the list is reset. There is another class in a different pagage that processes some of the functions of the order, eg newOrder().
    Yes it is for Uni so I dont need / want the full answers, jist something to get started. Also please dont flame me, I have done many other parts of this project, just having trouble getting started on this one.
    Here is the code for the cashier client. The code for the Pick client is almost the same, I just need to make the code that displays the orders.
    package Clients;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.NumberFormat;
    import java.util.Locale;
    import Catalogue.*;
    import DBAccess.*;
    import Processing.*;
    import Middle.*;
    class CashierGUI 
      class STATE                             // Cashier states
        public static final int PROCESS  = 0;
        public static final int CHECKED  = 1;
      class NAME                             // Names of buttons
        public static final String CHECK  = "Check";
        public static final String BUY    = "Buy";
        public static final String CANCEL = "Cancel";
        public static final String BOUGHT = "Bought";
      private static final int H = 300;       // Height of window pixels
      private static final int W = 400;       // Width  of window pixels
      private JLabel      theAction  = new JLabel();
      private JTextField  theInput   = new JTextField();
      private JTextArea   theOutput  = new JTextArea();
      private JScrollPane theSP      = new JScrollPane();
      private JButton     theBtCheck = new JButton( NAME.CHECK );
      private JButton     theBtBuy   = new JButton( NAME.BUY );
      private JButton     theBtCancel= new JButton( NAME.CANCEL );
      private JButton     theBtBought= new JButton( NAME.BOUGHT );
      private int         theState   = STATE.PROCESS;   // Current state
      private Product     theProduct = null;            // Current product
      private BoughtList  theBought  = null;            // Bought items
      private Transaction     theCB        = new Transaction();
      private StockReadWriter theStock     = null;
      private OrderProcessing theOrder     = null;
      private NumberFormat theMoney  =
              NumberFormat.getCurrencyInstance( Locale.UK );
      public CashierGUI(  RootPaneContainer rpc, MiddleFactory mf  )
        try                                             //
          theStock = mf.getNewStockReadWriter();        // DataBase access
          theOrder = mf.getNewOrderProcessing();        // Process order
        } catch ( Exception e )
          System.out.println("Exception: " + e.getMessage() );
        Container cp         = rpc.getContentPane();    // Content Pane
        Container rootWindow = (Container) rpc;         // Root Window
        cp.setLayout(null);                             // No layout manager
        rootWindow.setSize( W, H );                     // Size of Window
        Font f = new Font("Monospaced",Font.PLAIN,12);  // Font f is
        theBtCheck.setBounds( 16, 25+60*0, 80, 40 );    // Check Button
        theBtCheck.addActionListener( theCB );          // Listener
        cp.add( theBtCheck );                           //  Add to canvas
        theBtBuy.setBounds( 16, 25+60*1, 80, 40 );      // Buy button
        theBtBuy.addActionListener( theCB );            //  Listener
        cp.add( theBtBuy );                             //  Add to canvas
        theBtCancel.setBounds( 16, 25+60*2, 80, 40 );   // Cancel Button
        theBtCancel.addActionListener( theCB );         //  Listener
        cp.add( theBtCancel );                          //  Add to canvas
        theBtBought.setBounds( 16, 25+60*3, 80, 40 );   // Clear Button
        theBtBought.addActionListener( theCB );         //  Listener
        cp.add( theBtBought );                          //  Add to canvas
        theAction.setBounds( 110, 25 , 270, 20 );       // Message area
        theAction.setText( "" );                        // Blank
        cp.add( theAction );                            //  Add to canvas
        theInput.setBounds( 110, 50, 270, 40 );         // Input Area
        theInput.setText("");                           // Blank
        cp.add( theInput );                             //  Add to canvas
        theSP.setBounds( 110, 100, 270, 160 );          // Scrolling pane
        theOutput.setText( "" );                        //  Blank
        theOutput.setFont( f );                         //  Uses font 
        cp.add( theSP );                                //  Add to canvas
        theSP.getViewport().add( theOutput );           //  In TextArea
        rootWindow.setVisible( true );                  // Make visible
      class Transaction implements ActionListener       // Listener
        public void actionPerformed( ActionEvent ae )   // Interaction
          if ( theStock == null )
            theAction.setText("No conection");
            return;                                     // No connection
          String actionIs = ae.getActionCommand();      // Button
          try
            if ( theBought == null )
              int on    = theOrder.uniqueNumber();      // Unique order no.
              theBought = new BoughtList( on );         //  Bought list
            if ( actionIs.equals( NAME.CHECK ) )        // Button CHECK
              theState  = STATE.PROCESS;                // State process
              String pn  = theInput.getText().trim();   // Product no.
              int    amount  = 1;                       //  & quantity
              if ( theStock.exists( pn ) )              // Stock Exists?
              {                                         // T
                Product pr = theStock.getDetails(pn);   //  Get details
                if ( pr.getQuantity() >= amount )       //  In stock?
                {                                       //  T
                  theAction.setText(                    //   Display
                    pr.getDescription() + " : " +       //    description
                    theMoney.format(pr.getPrice()) +    //    price
                    " (" + pr.getQuantity() + ")"       //    quantity
                  );                                    //   of product
                  theProduct = pr;                      //   Remember prod.
                  theProduct.setQuantity( amount );     //    & quantity
                  theState = STATE.CHECKED;             //   OK await BUY
                } else {                                //  F
                  theAction.setText(                    //   Not in Stock
                    pr.getDescription() +" not in stock"
              } else {                                  // F Stock exists
                theAction.setText(                      //  Unknown
                  "Unknown product number " + pn        //  product no.
            if ( actionIs.equals( NAME.BUY ) )          // Button BUY
              if ( theState != STATE.CHECKED )          // Not checked
              {                                         //  with customer
                theAction.setText("Check if OK with customer first");
                return;
              boolean stockBought =                      // Buy
                theStock.buyStock(                       //  however
                  theProduct.getProductNo(),             //  may fail             
                  theProduct.getQuantity() );            //
              if ( stockBought )                         // Stock bought
              {                                          // T
                theBought.add( theProduct );             //  Add to bought
                theOutput.setText( "" );                 //  clear
                theOutput.append( theBought.details());  //  Display
                theAction.setText("Purchased " +         //    details
                           theProduct.getDescription()); //
    //          theInput.setText( "" );
              } else {                                   // F
                theAction.setText("!!! Not in stock");   //  Now no stock
              theState = STATE.PROCESS;                  // All Done
            if ( actionIs.equals( NAME.CANCEL ) )        // Button CANCEL
              if ( theBought.number() >= 1 )             // item to cancel
              {                                          // T
                Product dt =  theBought.remove();        //  Remove from list
                theStock.addStock( dt.getProductNo(),    //  Re-stock
                                   dt.getQuantity()  );  //   as not sold
                theAction.setText("");                   //
                theOutput.setText(theBought.details());  //  display sales
              } else {                                   // F
                theOutput.setText( "" );                 //  Clear
              theState = STATE.PROCESS;
            if ( actionIs.equals( NAME.BOUGHT ) )        // Button Bought
              if ( theBought.number() >= 1 )             // items > 1
              {                                          // T
                theOrder.newOrder( theBought );          //  Process order
                theBought = null;                        //  reset
              theOutput.setText( "" );                   // Clear
              theInput.setText( "" );                    //
              theAction.setText( "Next customer" );      // New Customer
              theState = STATE.PROCESS;                  // All Done
            theInput.requestFocus();                     // theInput has Focus
          catch ( StockException e )                     // Error
          {                                              //  Of course
            theOutput.append( "Fail Stock access:" +     //   Should not
                                e.getMessage() + "\n" ); //  happen
          catch ( OrderException e )                     // Error
          {                                              //  Of course
            theOutput.append( "Fail Order process:" +    //   Should not
                                e.getMessage() + "\n" ); //  happen
    }

    (disclaimer: I did not read through your Swing code, as I find that painful)
    My question is how do I access a private arraylist from a different class in the same
    package?Provide a public accessor method (getMyPrivateArrayList())

  • Migrating Stickies content and Safari Reading List from Snow Leopard to Mavericks

    I am about to upgrade from Snow Leopard to Mavericks but am concerned about maintaining the integrity of two collections of important material: the contents of hundreds of Stickies notes, and the collection of Reading List bookmarks in Safari. I want to be able to access these items from the new versions in Mavericks. From what I've read, both sets of material should be portable, but I want to make sure that there will not be unforeseen problems and loss of this content. Are there any problems or issues people have encountered doing this, or any tricks or tips I should be aware of?

    Try making a test user account in System Preferences > Users & Groups.
    Isolating an issue by using another user account
    Then log out of your usual user account and try the test user account, and see if the website  will let you in.
    I suspect that the problem is an internet plugin that is not compatible with Mavericks. The old internet plugin will not be in the test user account.
    If the site lets you in with the test user account, then it's a process of trial and error to figure out which plugin is the culprit.
    The internet plugins are found in a few places.
    Most are in /Library/Internet Plugins
    Some may be in ~/Library/Internet Plugins
    ~/Library is hidden by default.

  • How to undo Safari copying bookmarks, history, favorites, and reading list from Macbook Pro to iMac after Yosemite update?

    I just updated my iMac 27inch Mid 2011 to Yosemite 10.10.2.  I have a Macbook Pro that I primarily use for everyday stuff. I upgraded to Yosemite a while ago on my macbook. Now that I upgraded my iMac, it transferred everything saved in Safari on my macbook pro to my iMac. My favorites, history, bookmarks, and reading list were copied over. This is driving me nuts! I had a separate set of data saved on the iMac because I use it for different purposes. All of the original bookmarks, favorites, history, etc. on my iMac are now gone. I logged out of iCloud (which was a feature I did not enjoy when upgrading to Yosemite) yet all of the safari data from my laptop is still cloned onto my iMac. Please tell me there is a way to undo this or refresh safari pre-Yosemite update!
    Thank you!

    Then there's no way to recover the lost data. You will lose every bit of data you have if you don't start backing up.
    Mac Basics: Time Machine backs up your Mac - Apple Support

  • I have lost my reading list from safari.

    I have lost all the items from my reading list in safari and it will not save any items, what can I do to retrieve the list? I get the message reading list is empty

    Click the Reading List icon just left of the Bookmarks icon on the toolbar or Shift + Command + L
    The Reading List can be hidden, but it cannot be removed entirely.

  • How to delete reading list from safari

    How do I delete the reading list entries on my iMac-Safari 8 and Yosemite being used

    Click the sidebar icon in toolbar to open the sidebar.
    Click the reading glass icon to select Reading List.
    Move the mouse pointer to the top right of the reading list ite.
    An "X" should appear.
    Click it to delete the item.

  • How to sync reading lists from my Safari on Macbook with the iPhone Safari?

    How can I sync my reading lists on the Safari on my Macbook Pro to the Safari on my iPhone?
    Do I need to use iCloud?

    Howdy Anna,
    Indeed, iCloud can keep your Bookmarks, Reading List, and currently open tabs available across devices.
    Bookmarks, Reading List, and iCloud Tabs
    iCloud keeps your bookmarks and Reading List up to date in Safari on all your devices. It also updates iCloud Tabs to show you all the webpages you have open in Safari on your Mac computers with OS X v10.8 or later and your iOS devices with iOS 6 or later.
    OS X Mavericks: Keep content current on all your devices with iCloud
    https://support.apple.com/kb/PH14354
    Sincerely,
    Allen

  • How can I add sites to my 'Reading List' from the desktop version?

    Kindle has this add-on to Firefox desktop version called 'Send to Kindle', where I simply hit Ctrl+K and then I would have the current webpage stored on my Kindle. Very handy when I am commuting to work without connectivity.
    How can I achieve this with my tablet and Firefox for Android's Reading List feature?

    We don't have this feature at the moment. We may add it as part of the New Sync that we are working on.

  • Are there any widgets availble for creating a to-read list from web pages?

    I frequently find myself wanting to read specific pdf's or web page content but not having the time to do it when I find them. It would be lovely to have an easy to use storage space for them on the dashboard as I frequently use it keep myself on task.
    I know there are a wealth of apps that can save pdf content for later viewing (yojimbo, evernote, etc ..) but I'm specifically wondering if there is anything that either integrates those tools into the dashboard or just has a stand alone widget.
    Having the ability to "send to" from any browser to this widget for easy transfer and possible storage would be key.

    I just hand code my HTML forms because I know what I'm doing.  But if you prefer to use the Insert Panel > Forms tab, you'll need to check out this HTML5 forms tutorial by David Powers.
    Making HTML5 Forms in DW CC (video)
    http://tv.adobe.com/watch/learn-dreamweaver-cc/html5-forms-workflow/
    Next, use CSS to style your form labels, legends, fieldsets, input fields and submit button.  See example below, view source in browser to see the code.
    http://alt-web.com/TEST/Basic-HTML5form-jquery.html
    Now that you have your HTML form, you need a script to gather, validate and process the form data.  Ask your hosting provider if they have a form-to-email script you can use.  Many hosts have scripts already on their servers which you can activate from your C-Panel or by referencing the script in your form's action attribute. 
         <form action="path-to-form-on-server/form-to-email-script.php">
    If your host doesn't have scripts you can use, find out which server-side programming languages your server supports -- PHP, ASP, ASP.net, Perl, etc..   This dictates what kind of scripts you can use.
    Ideally, you want to find a script that is a) secure, b) hides your e-mail address from robots and c) has built in spam prevention.
    http://foundationphp.com/tutorials/email.php
    Nancy O.

  • Access registry (read/write) from java

    Hi folks,
    I'm struggeling with a Java/COM bridge to read/write the registry from my java application. The documentation from Sun on this is very sparely. Would be grateful for any hints!
    Regards,
    C.H. Liljegren

    Hi Bud,
    After a long time of asking everybody and then getting no response from any of the guys from the forum .I finally decided to do it myself and guess what I do succeded in reading and writing from the registry of windows from a Java program .
    I dont have the code now its there in my office . I will send it to u tomorrow .
    But one thing I came to know that if u wanna do some thing u have to take the initiative.
    I will send u the code tomorrow.
    Take Care.
    Manoj.

  • How to access alternate Contact lists from BlackBerry

    When I have more than one Contact lists in Outlook, how can I see them on the BlackBerry?
    example: 
    Contacts - contains all personal entries
    Business - contains an extensive list of strictly business related entries

    this is how you can accomplish this:
    http://www.blackberry.com/btsc/articles/968/KB04652_f.SAL_Public.html
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

Maybe you are looking for

  • Error: Makepkg was unable to build kdenlive package

    Another problem building kdenlive. Can anyone shed some light on the problem here, thanks ==> ==> kdenlive dependencies: - mlt++ (already installed) ==> Continue the building of 'kdenlive'? [Y/n] ==> ---------------------------------------------- ==>

  • LCD TV Problems

    Hello, I have a 32 inch LCD HDTV that I decided to connect to my mac as a second monitor. I have a Powermac G5, first generation dual 1.8GHz with the stock GeForce FX5200 installed. I bought an HDMI/DVI cable and conected the DVI to my fx5200 and con

  • Customer Open Item - FBL5n - segment field

    added field segment to tcode OBVU... the field appears on FBL5n, customer open item,but the amount is not populating.  any ideas?

  • "this feed has no episodes" error when submitting to iTunes

    Hey there, This is probably a simple fix but I can't seem to figure it out as I am very new to this. My link is here: http://feeds.feedburner.com/VolumizePodcast When I submit this link to iTunes it says "this feed has no episodes" Any ideas?

  • Can I use older AC adaptor?

    I just bought the x201 that comes with a 65watt 20volt 3.25amp AC adaptor. I have old thinkpad AC adaptors, 90 watt, 20 volt, 4.5 amps, with the same connector. Can I use that as a spare? Thanks in advance.