I cannot find icloud player on my computer or items submitted purchased from other sources

I find it easy to access Amazon cloud but I am unable to find items on itunes match sinec I moved files to a separate hard drive when they were filling up my Apple notebook. Do I need to download itunes icloud player again? Please advise what I need to do. I also want to access icloud on my ipod and a Samsung Galaxy phone. Thanks, John Tyrrell - Triel 2976

I'm afraid I do not quite understand what you are trying to accomplish. There is no "cloud player" application. You access your music in the cloud with iTunes on a computer and through the Music app on iOS devices. Please describe the problem you are having in more detail so we can help you.
As to accessing "icloud" on mobile devices, iCloud is not the same as iTunes Match. Please tell us what model of iPod you have. At this time only OS X, iOS and Windows (Windows Vista SP2 and up) are supported.

Similar Messages

  • TS2634 Cannot find iCloud in Settings on my iPad 1?

    Want to connect my iPad first generation, my iMac and my ihone 4S through iCloud. Help please? Cannot find iCloud under settings on my iPad?
    74 year old computer illiterate,
    Tom Rusk
    <Personal Information Edited by Host>

    As Crizzo stated, you are probably not running the necessary iOS for iCloud.
    You can check in Settings>General>About>Version .... To see which iOS the iPad is running. This will explain how to update your iPad. You must do this via iTunes on your computer and you want to make sure that you have the latest version of iTunes installed as well.
    http://support.apple.com/kb/HT4623
    After you have updated to iOS 5, you will be able to update over the air in the future without the need to go through iTunes on your computer.
    BTW ... It is not a good idea to post your phone number in a public forum. I have asked the hosts to remove it from your post.

  • Javax.media.NoPlayerException: Cannot find a Player

    Hi all,
    I've installed JMF,
    and tried the sample 'SimplePlayerApplet.java' from Sun:
    http://java.sun.com/products/java-media/jmf/2.1.1/samples/
    (see the code below)
    However, everytime I run the applet,
    I get the message:
    "javax.media.NoPlayerException: Cannot find a Player"
    Can anybody help?
    -------code from sun website-----------------
    * @(#)SimplePlayerApplet.java     1.2 01/03/13
    * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.String;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.io.IOException;
    import java.util.Properties;
    import javax.media.*;
    //import com.sun.media.util.JMFSecurity;
    * This is a Java Applet that demonstrates how to create a simple
    * media player with a media event listener. It will play the
    * media clip right away and continuously loop.
    * <!-- Sample HTML
    * <applet code=SimplePlayerApplet width=320 height=300>
    * <param name=file value="sun.avi">
    * </applet>
    * -->
    public class SimplePlayerApplet extends Applet implements ControllerListener {
    // media Player
    Player player = null;
    // component in which video is playing
    Component visualComponent = null;
    // controls gain, position, start, stop
    Component controlComponent = null;
    // displays progress during download
    Component progressBar = null;
    boolean firstTime = true;
    long CachingSize = 0L;
    Panel panel = null;
    int controlPanelHeight = 0;
    int videoWidth = 0;
    int videoHeight = 0;
    * Read the applet file parameter and create the media
    * player.
    public void init() {
    //$ System.out.println("Applet.init() is called");
    setLayout(null);
    setBackground(Color.white);
    panel = new Panel();
    panel.setLayout( null );
    add(panel);
    panel.setBounds(0, 0, 320, 240);
    // input file name from html param
    String mediaFile = null;
    // URL for our media file
    MediaLocator mrl = null;
    URL url = null;
    // Get the media filename info.
    // The applet tag should contain the path to the
    // source media file, relative to the html page.
    if ((mediaFile = getParameter("FILE")) == null)
    Fatal("Invalid media file parameter");
    try {
    url = new URL(getDocumentBase(), mediaFile);
    mediaFile = url.toExternalForm();
    } catch (MalformedURLException mue) {
    try {
    // Create a media locator from the file name
    if ((mrl = new MediaLocator(mediaFile)) == null)
    Fatal("Can't build URL for " + mediaFile);
    try {
    JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
    JMFSecurity.writePropArgs);
    JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
    JMFSecurity.readPropArgs);
    JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
    JMFSecurity.connectArgs);
    } catch (Exception e) {}
    // Create an instance of a player for this media
    try {
    player = Manager.createPlayer(mrl);
    } catch (NoPlayerException e) {
    System.out.println(e);
    Fatal("Could not create player for " + mrl);
    // Add ourselves as a listener for a player's events
    player.addControllerListener(this);
    } catch (MalformedURLException e) {
    Fatal("Invalid media file URL!");
    } catch (IOException e) {
    Fatal("IO exception creating player for " + mrl);
    // This applet assumes that its start() calls
    // player.start(). This causes the player to become
    // realized. Once realized, the applet will get
    // the visual and control panel components and add
    // them to the Applet. These components are not added
    // during init() because they are long operations that
    // would make us appear unresposive to the user.
    * Start media file playback. This function is called the
    * first time that the Applet runs and every
    * time the user re-enters the page.
    public void start() {
    //$ System.out.println("Applet.start() is called");
    // Call start() to prefetch and start the player.
    if (player != null)
    player.start();
    * Stop media file playback and release resource before
    * leaving the page.
    public void stop() {
    //$ System.out.println("Applet.stop() is called");
    if (player != null) {
    player.stop();
    player.deallocate();
    public void destroy() {
    //$ System.out.println("Applet.destroy() is called");
    player.close();
    * This controllerUpdate function must be defined in order to
    * implement a ControllerListener interface. This
    * function will be called whenever there is a media event
    public synchronized void controllerUpdate(ControllerEvent event) {
    // If we're getting messages from a dead player,
    // just leave
    if (player == null)
    return;
    // When the player is Realized, get the visual
    // and control components and add them to the Applet
    if (event instanceof RealizeCompleteEvent) {
    if (progressBar != null) {
    panel.remove(progressBar);
    progressBar = null;
    int width = 320;
    int height = 0;
    if (controlComponent == null)
    if (( controlComponent =
    player.getControlPanelComponent()) != null) {
    controlPanelHeight = controlComponent.getPreferredSize().height;
    panel.add(controlComponent);
    height += controlPanelHeight;
    if (visualComponent == null)
    if (( visualComponent =
    player.getVisualComponent())!= null) {
    panel.add(visualComponent);
    Dimension videoSize = visualComponent.getPreferredSize();
    videoWidth = videoSize.width;
    videoHeight = videoSize.height;
    width = videoWidth;
    height += videoHeight;
    visualComponent.setBounds(0, 0, videoWidth, videoHeight);
    panel.setBounds(0, 0, width, height);
    if (controlComponent != null) {
    controlComponent.setBounds(0, videoHeight,
    width, controlPanelHeight);
    controlComponent.invalidate();
    } else if (event instanceof CachingControlEvent) {
    if (player.getState() > Controller.Realizing)
    return;
    // Put a progress bar up when downloading starts,
    // take it down when downloading ends.
    CachingControlEvent e = (CachingControlEvent) event;
    CachingControl cc = e.getCachingControl();
    // Add the bar if not already there ...
    if (progressBar == null) {
    if ((progressBar = cc.getControlComponent()) != null) {
    panel.add(progressBar);
    panel.setSize(progressBar.getPreferredSize());
    validate();
    } else if (event instanceof EndOfMediaEvent) {
    // We've reached the end of the media; rewind and
    // start over
    player.setMediaTime(new Time(0));
    player.start();
    } else if (event instanceof ControllerErrorEvent) {
    // Tell TypicalPlayerApplet.start() to call it a day
    player = null;
    Fatal(((ControllerErrorEvent)event).getMessage());
    } else if (event instanceof ControllerClosedEvent) {
    panel.removeAll();
    void Fatal (String s) {
    // Applications will make various choices about what
    // to do here. We print a message
    System.err.println("FATAL ERROR: " + s);
    throw new Error(s); // Invoke the uncaught exception
    // handler System.exit() is another
    // choice.
    }

    First and most obvious question is, what are you trying to have the applet view? The NoPlayerException generally means that JMF couldn't figure out how to display what you're telling it to display, be that an unknown codec, or unknown media type.

  • Adobe Illustrator appears as "installed and updated" on Creative Cloud but I cannot find the Application on my Computer (Windows)

    Creative Cloud is installed and working on my computer, nevertheless the Application "Adobe Illustrator" appears as "Installed and Updated" but it is physically NOT in my computer.
    I cannot find the Application in my computer, I installed Photoshop and other Apps, they are all to find in my PC, except Illustrator.
    I tried to uninstall Creative Cloud and all the Apps that I had, I re-installed creative cloud but still it showed "Adobe Illustrator" as "installed and updated", even if I have no Adobe illustrator folder on my Computer, it really does not exist in my computer.
    What is wrong with the Application?

    Klerica please see CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html for information on how to reinstall Adobe Illustrator.

  • Updated itunes and ipad but cannot find icloud in settings. how do I get it or where is it?

    I just updated itunes and ipad.  I cannot find icloud in settings.  Where is it or how can I get it?

    It should be there.  Are you sure the iPad is running iOS 5?  You can check in Settings>Genreal>About.  The iOS version is shown under Version.

  • RTPSocketPlayer Cannot find a Player

    I can not execute RTPSocketPlayer.class from sun
    mycode =
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.rtp.*;
    import javax.media.rtp.event.*;
    import javax.media.rtp.rtcp.*;
    public class RTPSocketPlayer implements ControllerListener {
    String address = "224.224.224.100";
    int port = 49150;
    String media = "video";
    RTPSocket rtpsocket = null;
    RTPPushDataSource rtcpsource = null;
    Player player = null;
    private int maxsize = 2000;
    UDPHandler rtp = null;
    UDPHandler rtcp = null;
    public RTPSocketPlayer() {
    rtpsocket = new RTPSocket();
    String content = "rtpraw/" + media;
    rtpsocket.setContentType(content);
    rtp = new UDPHandler(address, port);
    rtpsocket.setOutputStream(rtp);
    rtcp = new UDPHandler(address, port +1);
    rtcpsource = rtpsocket.getControlChannel();
    rtcpsource.setOutputStream(rtcp);
    rtcpsource.setInputStream(rtcp);
              System.out.println(rtpsocket);
    try {
    rtpsocket.connect();
                   player = Manager.createPlayer(rtpsocket);
                   //System.out.println("oche");
    rtpsocket.start();
    } catch (NoPlayerException e) {
    System.err.println(e.getMessage() + " ballball");
    e.printStackTrace();
    return;
    catch (IOException e) {
    System.err.println(e.getMessage());
    e.printStackTrace();
    return;
    if (player != null) {
    player.addControllerListener(this);
    public synchronized void controllerUpdate(ControllerEvent ce) {
    if ((ce instanceof DeallocateEvent) ||
    (ce instanceof ControllerErrorEvent)) {
    if (rtp != null) rtp.close();
    if (rtcp != null) rtcp.close();
    // method used by inner class UDPHandler to open a datagram or
    // multicast socket as the case maybe
    private DatagramSocket InitSocket(String sockaddress,
    int sockport)
    InetAddress addr = null;
    DatagramSocket sock = null;
    try {
    addr = InetAddress.getByName(sockaddress);
    if (addr.isMulticastAddress()) {
    MulticastSocket msock;
    msock = new MulticastSocket(sockport);
    msock.joinGroup(addr);
    sock = (DatagramSocket)msock;
    else {             
    sock = new DatagramSocket(sockport,addr);
    return sock;
    catch (SocketException e) {
    e.printStackTrace();
    return null;
    catch (UnknownHostException e) {
    e.printStackTrace();
    return null;
    catch (IOException e) {
    e.printStackTrace();
    return null;
    // INNER CLASS UDP Handler which will receive UDP RTP Packets and
    // stream them to the handler of the sources stream. IN case of
    // RTCP, it will also accept RTCP packets and send them on the
    // underlying network.
    public class UDPHandler extends Thread implements PushSourceStream,
    OutputDataStream
    DatagramSocket mysock;
    DatagramPacket dp;
    SourceTransferHandler outputHandler;
    String myAddress;
    int myport;
    boolean closed = false;
    // in the constructor we open the socket and create the main
    // UDPHandler thread.
    public UDPHandler(String haddress, int hport) {
    myAddress = haddress;
    myport = hport;
    mysock = InitSocket(myAddress,myport);
    setDaemon(true);
    start();
    // the main thread receives RTP data packets from the
    // network and transfer's this data to the output handler of
    // this stream.
    public void run() {
    int len;
    while(true) {
    if (closed) {
    cleanup();
    return;
    try {
    do {
    dp = new DatagramPacket( new byte[maxsize],
    maxsize);
    mysock.receive(dp);
    if (closed){
    cleanup();
    return;
    len = dp.getLength();
    if (len > (maxsize >> 1)) maxsize = len << 1;
    while (len >= dp.getData().length);
    }catch (Exception e){
    cleanup();
    return;
    if (outputHandler != null) {
    outputHandler.transferData(this);
    public void close() {
    closed = true;
    private void cleanup() {
    mysock.close();
    stop();
    // methods of PushSourceStream
    public Object[] getControls() {
    return new Object[0];
    public Object getControl(String controlName) {
    return null;
    public ContentDescriptor getContentDescriptor() {
    return null;
    public long getContentLength() {
    return SourceStream.LENGTH_UNKNOWN;
    public boolean endOfStream() {
    return false;
    // method by which data is transferred from the underlying
    // network to the session manager.
    public int read(byte buffer[],
    int offset,
    int length)
    System.arraycopy(dp.getData(),
    0,
    buffer,
    offset,
    dp.getLength());
    return dp.getData().length;
    public int getMinimumTransferSize(){
    return dp.getLength();
    public void setTransferHandler(SourceTransferHandler
    transferHandler)
    this.outputHandler = transferHandler;
    // methods of OutputDataStream used by the session manager to
    // transfer data to the underlying network.
    public int write(byte[] buffer,
    int offset,
    int length)
    InetAddress addr = null;
    try {
    addr = InetAddress.getByName(myAddress);
    } catch (UnknownHostException e) {
    e.printStackTrace();
    DatagramPacket dp = new DatagramPacket( buffer,
    length,
    addr,
    myport);
    try {
    mysock.send(dp);
    } catch (IOException e){
    e.printStackTrace();
    return dp.getLength();
    public static void main(String[] args) {
    new RTPSocketPlayer();
    And when I run program >>>>
    D:\Topic\RtpSocket>java RTPSocketPlayer
    javax.media.rtp.RTPSocket@56a499
    Cannot find a Player for: javax.media.rtp.RTPSocket@56a499
    javax.media.NoPlayerException: Cannot find a Player for: javax.media.rtp.RTPSock
    et@56a499
    at javax.media.Manager.createPlayerForSource(Manager.java:1536)
    at javax.media.Manager.createPlayer(Manager.java:524)
    at RTPSocketPlayer.<init>(RTPSocketPlayer.java:37)
    at RTPSocketPlayer.main(RTPSocketPlayer.java:266)

    Im also having the same problem if anyone finds the answer then plz reply

  • I am trying to install current version of QuickTime.  I get the message that it cannot find QuickTime.msi on my computer.    Then I get a message "The older version of QuickTime cannot be removed. Contact your technical support group."

    I am trying to install current version of QuickTime.  I get the message that it cannot find QuickTime.msi on my computer.
    Then I get a message "The older version of QuickTime cannot be removed. Contact your technical support group.
    I am simply trying to view video files recorded on my iPhone and transferred to my computer.

    See if anything in this post might help...
    https://discussions.apple.com/message/22905774#22905774

  • *UNABLE_CREATE_PLAYER*javax.media.NoPlayerException: Cannot find a Player f

    Dear all,
    I have the following error : UNABLE_CREATE_PLAYERjavax.media.NoPlayerException: Cannot find a Player for :
    But I can't find why. Here is the revelent part of my code.
    VCDataSource myDataSource = new VCDataSource(MicrophoneCaptureDevice.getLocator());
    // Add the DataSource to the MediaPlayer
    VCMediaPlayer.setSource(myDataSource);
    // run the media player
    VCMediaPlayer.start();
    could you explain where I am wrong ! =)

    Hi
    I have a question: where did you initialized the player?
    (something like Manager.createPlayer(...);
    regards

  • Javax.media.NoPlayerException: Cannot find a Player for :v4l://0

    Hi,
    I'm trying to grab a frame in a linux box with a webcam.
    First i was having trouble in getting my webcam registered but thats history and now i can use jmfstudio to view thru the camera's eye.
    But using the code below to get a frame i get the following exception:
    Exception in thread "main" javax.media.NoPlayerException: Cannot find a Player for :v4l://0
    at javax.media.Manager.createPlayerForContent(Manager.java:1412)
    at javax.media.Manager.createPlayer(Manager.java:417)
    at javax.media.Manager.createRealizedPlayer(Manager.java:553)
    at FrameGrab.main(FrameGrab.java:26)
    Code:
    public class FrameGrab {
    public static void main(String[] args) throws Exception {
    Vector list = CaptureDeviceManager.getDeviceList ( null );
    CaptureDeviceInfo devInfo = (CaptureDeviceInfo)list.elementAt ( 1 );
    // Create capture device
    CaptureDeviceInfo deviceInfo = CaptureDeviceManager.getDevice(devInfo.getName());
    Player player = Manager.createRealizedPlayer(deviceInfo.getLocator());
    player.start();
    // Wait a few seconds for camera to initialise (otherwise img==null)
    Thread.sleep(2500);
    // Grab a frame from the capture device
    FrameGrabbingControl frameGrabber = (FrameGrabbingControl)player.getControl("javax.media.control.FrameGrabbingControl");
    Buffer buf = frameGrabber.grabFrame();
    // Convert frame to an buffered image so it can be processed and saved
    Image img = (new BufferToImage((VideoFormat)buf.getFormat()).createImage(buf));
    BufferedImage buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
    // Save image to disk as PNG
    ImageIO.write(buffImg, "png", new File("webcam.png"));
    // Stop using webcam
    player.close();
    player.deallocate();
    System.exit(0);
    Any tips?

    hi
    i've got the same problem too
    the jms could only play .mp3 not other formats
    is the installation wrong?
    could some experts give me some advise?
    my e-mail:[email protected]

  • I cannot find my ipod on my computer

    I cannot find my ipod on my computer as a device. It used to be there but is not any longer

    Start here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • In Bridge I cannot find Lightroom as a program to open files. All the other programs like photoshop etc are indicated?

    In Bridge I cannot find Lightroom as a program to open files. All the other programs like photoshop etc are indicated?

    You would go into Preferences > File Type Associations and from the dropdown menu and choose "Browse" to get to Lightroom.
    So yes you can set files that Lightroom supports to open from Bridge into Lightroom.
    But I don't think you'd want to.
    Lightroom is a standalone product for a Photography workflow. Bridge is a manager for Creative suite products like Photoshop, Illustrator, Indesign. Basically web and print design workflows.
    Bridge is not a manager for Lr because Lr has it's own catalog system.
    Lightroom is not a Creative Suite product.
    Bridge does use Adobe Camera Raw to make adjustments, but move those adjusted files into Lr, you have to make a decision whose settings stay.
    This video should explain the difference.
    Adobe Bridge CC vs. Lightroom 5 - Terry White's Tech Blog
    Julieanne Kost also explains using the two together. LR/BR - Working with Lightroom and Adobe Bridge | Adobe Evangelists - Julieanne Kost | Adobe TV
    Gene

  • When I open a pdf link I am getting an error "The system cannot find the file specified. " The same link is opened in other browsers.

    I used to open the link" http://supportdocs.sonybiz.net/indexes/pi%5CLFS%5CMay_2004%5C00035186.pdf" in firefox earlier. Now I use version 5.0. Recently I noticed that such links in pdf are not opening with firefox and getting an error that "The system cannot find the file specified. " But the same is opened in other browsers. I do not know whether it is a settings problem or limitation of firefox.
    It is very much helpful if someone can help me in resolving this issue.

    That link has backslashes (%5C) that need to be changed to forward slashes:
    *http://supportdocs.sonybiz.net/indexes/pi/LFS/May_2004/00035186.pdf

  • Q30: Cannot find sales order for a committed stock item

    I have a few item numbers which show committed stock in item master data/stock but I cannot find an open sales order or even with an open line on a closed sales order. I have tried various query reports without success.
    Does anyone have a key to unlock this problem?
    Thanks,
    Robin

    Hi,
    Sorry but I am pretty new to SAP and on a learning curve so no idea what note 999124 is or even where/how I would use it.
    Can you explain further please?
    Robin
    Lakshmipathi     
    Posts: 17,513
    Registered: 8/9/07
    Forum Points: 34,462 
    Solved problem (10)
    Very helpful answer (6)
    Helpful answer (2)
       Re: Q30: Cannot find sales order for a committed stock item  
    Posted: Jan 12, 2011 3:18 PM    in response to: Robin Bellion           Reply 
    Check Note 999124 - Incorrect committed\On order quantity when changing orders
    thanks
    G. Lakshmipathi

  • HT201269 I have years worth of music on my PC that is about to die.  If I get an iPad is there anyway to get the music from my PC onto the iPad? I have the iCloud but my understanding is only music actually purchased from iTunes lives int he cloud.

    I have years worth of music on my PC that is about to die.  If I get an iPad is there anyway to get the music from my PC onto the iPad? I have the iCloud but my understanding is only music actually purchased from iTunes lives int he cloud. I have music that was legally purchased and loaded to my iTunes account from cd's that I no longer own.  I need a new laptop and am deciding between the iPad and the Mac book.  I use the computer for music, photos, and web - nothing else and nothing fancy.  I don't know that there is a way to save my huge music library without saving it to an external hard drive and then loading it to a new one (does the iPad have a port to plug an external hard drive into?)

    First, you would need to make a backup of the entire iTunes folder on the PC. You could get music to the iPad if the PC was still functioning, or you would have to move the music to another computer. An iPad is not a laptop, and does not have a port to plug an external drive into. You can sync music to the iPad from the computer, but you are correct, unless you get iTunes Match, you would need a computer to copy the music to and then sync to an iPad.

  • My computer is registered to purchase from the US store. How can I make a purchase from the Ireland iTunes store?

    My computer is registered to purchase from the US store. How can I make a purchase from the Ireland iTunes store?

    HerbertBack wrote:
    How come I can buy foreign books through Amazon as e-book, but the same book can't be downloaded from iTunes? That doesn't makes sense.
    Why would you think that all stores would have the same policy?
    Amazon allows it, iTunes does not.  That is why.  Like most companies, Apple does not forward explanations to al of their decisions to the general public.  It does not have to make sense to you, for it to be true.  Apple has teams of experts that have determined that this is how they should conduct their business.
    With iTunes, you cannot use other countries stores.
    Sorry

Maybe you are looking for

  • SQL loader import issue..

    Hi, I am working on 10g database on ibm AIX .. i need to use sql loader and insert some data in to table using a input file. The input file contains follwing format..- data.dat 001 901 200 1611196 "dis ltype gu" Mhamicddu kuasa 12as king all these va

  • InDesign Layout - Printer wants in AI?

    We're designing an instruction manual, and supplied the factory with a PDF file of the artwork. They are saying that their printer can not print PDF files and require the artwork laid out in an Illustrator file in print spreads. Has anyone had this i

  • Problem with dropped frames

    Can anyone make a suggestion on how to fix this? It keeps popping up every few seconds & I cannot watch a single sequence without constant interruptions.  It says that one of the solutions is to increase the speed of the disk.  I don't know what that

  • A better list of workbooks

    Hi folks, We - and I think many people must be - are a little disappointed by the lack of organisation provided by the list of workbooks in Discoverer Viewer (on the web). I was wondering, before we go out and write something to wrap around it, wheth

  • Old airport express and 10.9

    How can i configure an old airport express on mavericks Apple have stopped supporting them, very poor show!!