Need to change regions but without canceling my iTunes Match

I recently moved back to the US but cannot change my region unless I cancel my iTunes Match subscription. What can I do? Please help!

Hi,
You need to contact Apple to cancel match. Read this doc https://discussions.apple.com/docs/DOC-5432
Jim

Similar Messages

  • I've moved countries and wanting to update in my profile. It won't let me change countries until I cancel my itunes Match Subscription - how do I do that?

    I've moved countries and wanting to update this in my profile. It won't let me change countries until I cancel my itunes Match Subscription - how do I do that?

    You need to reset the password for the "old" account, and then use that to turn off iCloud.  Then you will be able to sign in with your new ID.
    You can reset your password at iForgot.apple.com.
    If you don't know the answers to the security questions, you will need to start there.
    http://support.apple.com/kb/HT5312
    -If you established a rescue email address, there will be a link on the "Passwords & Security" page of id.apple.com.  Clicking the link will send the reset to your rescue email address (NOTE:  This is not the same address as your Apple ID email)
    -If there is no link on the page, then you didn't establish a rescue email address.  Contact AppleCare at 800.694.7466 (If you are in the US), and ask for account security.  You will need to answer some questions to verify your identity, AND you will need access to a computer to generate a temporary support pin.
    -If you are not in the US, click http://support.apple.com/kb/HT5699 - Apple ID: Contacting Apple for help with Apple ID account security
    HTH

  • How do I change my iPad country back to the UK without cancelling my iTunes Match subscription?

    When I was browsing iTunes yesterday on my iPad the country linked to my iPad switched to being the US.
    I now can't use my iPad to shop in several uk stores.
    I don't have easy access to the PC the iPad is linked to with iTunes.  Also I don't actually want to cancel my iTunes Match subscription.

    You can try signing out your Apple ID and signing back in at Settings > iTunes and App Stores
    Or, if that doesn't work
    Follow this procedure:
    1. Go to Settings > iTunes & App Stores > Apple ID.
    2. Tap your Apple ID.
    3. Tap View Apple ID.
    4. Enter your password.
    5. Go to Country/Region in the popup window to change to the desired store.
    See also: http://support.apple.com/kb/HT1311

  • Needed() and changed() region function

    Hello,
    I'm studying the basicBoxBlur code that comes as sample in
    PBToolkit. As I'm a beginner in code writing, I have some troubles
    understanding properly the use of needed() and changed() region
    function: are they supposed to simplify the PB calculations, since
    the filter runs even commenting those lines?
    Could you gently provide some more info about their role
    specifically in the basicBoxBlur code?
    I'm sorry if this appears as dummy question, but the my
    personal learning curve is quite steep... (my actual goal is to be
    able to rewrite some sort of Gaussian Blur, Maximum, Minimum and
    Median Photoshop filters, so this is only a initial step toward
    them - I'll be fighting with sorting algorithms later on :)
    TIA,
    Davide Barranca

    Hi Davide,
    I'm really glad you've asked this question. It's a very good
    question. Region functions would be considered one of the more
    confusing, topics with respect to Pixel Bender. Unfortunately, this
    makes it difficult to explain in words, but we'll try anyway.
    The region functions are the mechanism by which you indicate
    to the product your running in (whether it's the toolkit,
    Photoshop, or After Effects) how your filter affects the size of
    the image. Currently, Flash does not support these functions in the
    Pixel Bender source, but you do need to implement the same thing in
    the supporting ActionScript code.
    If you think about a blur or any other convolution type
    filter, you end up sampling a certain window around the pixel in
    order to get the output color. For instance, if you have a blur on
    the X axis that's one pixel in radius, you end up sampling 3 pixels
    for every output: one to the left, the pixel that's at the same
    coordinate as the output pixel, and one to the right of that.
    Simple. If you consider what happens at the edge of the image,
    though, things get more complicated. If you processing the result
    for the very left edge of the output image, say at coordinate
    (0,0), you'll need to sample three pixels, (-1, 0), (0, 0), (1, 0).
    You need to account for the negative values when sampling. There is
    a similar problem on the other edge where you will be sampling at a
    location greater than the output window on the right. This means
    that to produce an output of size 512, you actually need an input
    of size 514 (one extra pixel for the left, and one extra pixel for
    the right). This is what the needed function is calculating. The
    function answers the question: "For an output of size X, what size
    input do I need?" In most cases this will be exactly the same as
    the output, but in some examples, like BoxBlur, this is not the
    case.
    The same thing happens on the output as well. Consider the
    one dimensional box blur with a radius of 1 again. In this case,
    you provide it an input of size X. If we were interested in
    displaying any pixels that had any color at all, we would get an
    output of size X + 2. This is because the edge pixel contribute to
    the coloring of pixels outside of the input dimensions. In other
    words, we would get a non-black pixel at location (-1, 0) because
    the pixel at (0, 0) would be within the radius. This is what gives
    you a smearing of the image outside of its boundaries when you
    apply a blur to it. This is what the changed function is
    calculating. In other words, it asks the question: "If I give the
    filter an input of size X, what sized output would it produce?"
    Again, for most cases, this would be the same as the input
    size. Filters that fall into this category are color corrections.
    Additionally, for convolutions and blurs, the needed function would
    be the same as the changed function. For warps and other
    transformations, this is not the case. The best example of this is
    scaling the image by two.
    When you commented out the region functions, the output image
    became smaller by the blur radius. This was probably not very
    noticeable, but if you made the radius large, you would see the
    difference. Additionally, you are probably asking why we need this
    level of detail in the filter. In most simple examples, no one
    would ever notice this since we often have a single input image and
    execute a single filter on it. However, because these filters can
    be used as a small part of the workflow for professional graphics
    and effects applications, getting these details right is very
    important for the filter to render the correct results in all
    cases.
    Since you asked specifically about the basicBoxBlur sample,
    here's a breakdown. Note that the functions are exactly the same
    code because it's a convolution.
    float2 singlePixel = pixelSize(src);
    This is getting the pixel aspect ratio. One thing I didn't
    mention is the notion of the pixel aspect ratio and the need to
    account for this when calculating the regions (this is the subject
    of another post entirely).
    return outset(outputRegion, float2(singlePixel.x *
    ceil(blurRadius), singlePixel.y * ceil(blurRadius)));
    The next line is increasing the requested region by the size
    of the blur window radius (conceptually expand the single radius
    out to a radius of size blurRadius). We take the ceiling of the
    blur radius in case the radius is a non-integral value.
    I hope that helps clear up any confusion. Please let me know
    if you have any questions or need clarification on any points. By
    the way, I'm very impressed with your list of filters, and I wish
    you the best of luck with the sorting ones.
    Thanks,
    Brian Ronan

  • I want to change region but i have 0.70$ i want to remove it , can you help me ?

    i want to change region but i have 0.70$ i want to remove it , can you help me ?

    Contact iTunes Support - http://apple.com/emea/support/itunes/contact.html - and ask them to clear your balance.

  • How can i cancel my itunes match so i can change country / region

    have moved to malaysia, How do I cancel my Itunes match , so I can be allowed to change country/region?

    Hi
    How to Change Country with iTunes Match
    Jim

  • I need to change countries but the system won't allow because of an outstanding 7 cents credit balance.  What do I need to do?

    I need to change countries but the system won't allow because of an outstanding 7 cents credit balance.  What do I need to do?

    You can try contacting iTunes Support and ask them if they can remove the balance from your account so that you can change countries : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I accidentally put my dads account into iCloud. i need to change it but i dont know how because its grayed out. if i press delete account, will it delete the whole account or just delete it from the iPhone?

    I accidentally put my dads account into iCloud. i need to change it but i dont know how because its grayed out. if i press delete account, will it delete the whole account or just delete it from the iPhone?

    but it says DELETE ACCOUNT in red. are you sure its only deleting from the phone?

  • I need to change region on itunes?

    i need to change region on itunes and i got a message that i have rented yet to expire. i need to know what was rented and how to move forward in the region changing

    I have the same problem. I moved back to Finland after 3 years in the US. Now I am trying to change the region settings on my iTunes and I get the message saying that I am not able to change the region because I have rentals that have not yet expired. As a matter in fact they have expired already several days ago. They do not even show on the iTunes when I connect my iPad (iOS 5.1.1)

  • HT4914 how can i cancel my itunes match subscription??? i want to change my apple id region

    i have a mexican apple id but now i want to change it to usa itunes sotre... but i have to cancel my itunes match subscription so i dont know how to do it

    I'm having the same issue, trying to move my itunes account to a new country is being a huge pain. The only way you can cancel your subscription to Itunes Match is by contacting Apple support.  Having said this, Apple support emailed last night stating that it is not currently possible to cancel my subsription to iTunes Match!  And they have no estimated time on resolving this issue. 
    I suggest, if you haven't already done so, that you check out the conditions and limitations of moving  your itunes account to a new country, plenty of information on this topic in the forums. 
    Good luck! 

  • I have moved from the UK to the USA and have a new phone, I try to change my country location on the store and get an error message saying I have to cancel my itunes match and have a pass incomplete, any ideas?

    I have moved from the UK to the USA and have a new phone, I try to change my country location on the store and get an error message saying I have to cancel my itunes match and also that I have a pass incomplete, any ideas how to fix and change the store. It is becoming a problem with getting some USA aps and content
    Thank you
    Tom

    iTunes match is a subscription that you have in when you were still in the UK. According to the terms & conditions you'll need to wait for the susbcription to end before you can change your country to iTunes Store USA.

  • I need specific instructions on how to change my credit card informaiton for iTunes Match

    I have looked everywhere in the Apple system to get instructions to change my Credit Card number for iTunes Match.  I found the instructions on how to change my payment information in the iTunes Store Account but when I follow those instructions, they are not correct.  What happened is that I had to cancel my credit card and my bank issued a new credit card andin the meantime, Apple tried to renew my iCloud account and it was rejected because I had not changed my credit card information on file.  Now I am trying to change my credit card information and I cannot accomplish that task.  Can someone help me?
    <Email Edited By Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it.
    It sounds as if you have already found the method to change your card details, but just to confirm: go to the iTunes Store. Click 'Account' under 'Quick links' at the right. Log in.
    Where it says 'Payment Information' click on 'Edit' to the right of it.
    You should then be able to enter the correct card details.
    Is this not working? Do you get an error message?

  • I download app only available in Poland and change my IDi now I came back to original account but can not activate itune match anymore I have to wait 90 days any issue because I pay itune match with my original account  thanks for support

    I download app only available in Poland and change my IDi now I came back to original account but can not activate itune match anymore I have to wait 90 days any issue because I pay itune match with my original account  thanks for support

    thanks Meg
    I understand you are not Apple but i was presuming that some logic or technical reason i miss was behind this.
    I really do not see any logic business pratice. If i understand i can be agree or desagree but as minima i know the rules and why.
    to sumarize...my story 
    my id was with XXX and i bought Itune match one year with this account and 4 device are conected with the same account.
    on Ipad device i change my ID to YYY then .... because i need to update some apps and connect to itune match i came back to ID XXX then no problem to update apps but .... no way to come back to itune match.
    .... no way to use itune match anyhow with Ipad and account XXX linked with account XXX. WHYYYY ??? no clue.

  • HT4914 how to cancel the itunes match?

    I would like to change to another region. But it says that I need to cancel my itunes match first.
    How could I do to solve this problem?

    You probably can't cancel the sub but you can change the country for App Store. I did this on my mac by accessing my iTunes account, clicking on change country or region. When you get to the change country page with the message re the active iTunes Match sub, scroll to the bottom of the page where there are more options, one of which is change country under the manage list. I chose the uk here and it restored my App Store to uk on all my devices.
    Not sure you can do this from the iPad.
    Hope that helps.

  • How do I cancel an iTunes match account?

    Trying to change my country setting on my icloud account, but cannot seem to be able to as I keep getting a message to first cancel my itunes match account. How do I do that?
    Thanks.

    You can cancel itunes match
    I've emailed support back and forth and they wont budge
    as you know you cant change creditcard info etc so.....no more apps , no more itune purchase.
    The arrogance of Apple is mind boggling
    I'm stuck until October 2013
    Think I'll still be using apple products then?
    Nope

Maybe you are looking for