May I know how to change my country or region?

May I know how to change account or region?

OK. Although it won't result in any quick fix you should submit this bug to Apple at:
http://www.apple.com/feedback/iphone.html

Similar Messages

  • Does anyone know how to change your country location ? I am traveling and I need to make a purchase and do updates. My App Store tells me I need to switch to a US store to make purchases.

    Does anyone know how to change your country location ? I am currently traveling and I need to make a purchase and do updates. My App Store tells me I need to switch to a US store to make purchases.

    Unless you live in the country and have a credit card with a billing address in the country-you don't.
    http://www.apple.com/legal/itunes/us/terms.html#GIFTS
    "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance."
    Substitute whatever your home country is if it is not the US, terms are the same.

  • My iphone 5 using other account, now i would like to change another apple ID. May i know how to change it?

    sir,
    im using iphone 5 & using other apple ID, but now, i would like to change another apple ID on my phone. may i know, how to change it & what is the procedure?

    Go to Settings > iTunes & App Stores.  Tap on the Apple ID, choose to sign out, then sign in with a different Apple ID.
    Go to Settings > iCloud.  Do the same thing there.... Or, I think you may have to 'Delete Account', but choose to keep the data on the phone. 

  • May i know how to change my username ?

    May i know how to change my username ?

    If you're asking how to change your username here in the Apple Support Communities the answer is you can't. The software running this site doesn;t allow it. It is not even possible for a host to do it.
    If you asking about some other username then post back.
    regards

  • Hi Guys Do you know how to change the country for app nana

    Hi Guys
    Do you know how to change the country/region in app nana because i have a lot of nanas but my region is US. I want the region to be Australia. CAN YOU PLEASE HELP ME
    Thanks

    Check the third answer down on this link. If it doesn't solve your problem use the link to contact appnana.
    https://mapiz.wufoo.com/forms/appnana-helps/

  • May I know how to change the color of texts inside the indicator box?

    Can anyone tell me how to change the color of texts inside the indicator box? I have tried to use property node but not really know how it functions.
    In fact, I am writing a program for which the number inside indicator on front panel will show red color if the measured value can't reach the requirement. I am using LabView 6.1 Professional
    Thank You for your attention!!!!!!

    Simply use a property node with "NumText.TextColor" and wire the correct color depending on your test result.
    The attached simple example (LV 6.1) lets you change it from the front panel. In your case, you would use your test output instead of a FP switch, of course. Message Edited by altenbach on 05-25-2005 09:05 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    TextColor.vi ‏18 KB

  • HT1040 I'm from united kingdom but iPhoto from america, how to change the country before i order them.

    I'm from united kingdom but iPhoto from america and postage, post code, how to change the country before i order them?...i need post code from untied kingdom, i don't know how to change from zip code(USA) into post code (UK)?

    iPhoto Menu -> Preferenes -> advanced
    Select the UK at the Print Store dropdown.

  • I just bought a used macbook pro 15 unibody, and would love to know how to change it's name from "previous owner's macbook pro" to "my macbook pro". Any help would be greatly appreciated.

    I need to know how to change the macbooks name to reflect new ownership. Thanks.

    jeremyfromcanton wrote:
    It did not come with the original discs, and I bought it for the fact that it came with certain programs already on it. I do have the snow leopard os disc I bought to update my older macbook, but don't want to lose those programs which I bought it for.
    Then you need to obtain them from the seller.  It is illegal (according to Apple) to sell Macs without the system discs that came with it.
    You can get replacement System Discs from Apple's Customer Support - in the US, (800) 767-2775 - for a nominal S&H fee. You'll need to have the model and serial number of your Mac available.
    If you're not in the US, you may need to go through the regional Apple Store that serves your location to find the contact number. Here's a list of links to all of those -
    http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html
    Mac OS X 10.6 Help: If you forget your administrator password

  • I just upgraded my Photoshop CC to CC 2104 but eventhough my previous  PS language is english Creative Cloud installed Turkish PS  and there is no language choice other than Turkish in preferences menu. Pls let me know how to change language to English fr

    I just upgraded my Photoshop CC to PS CC 2104 but eventhough my previous PS language is english Creative Cloud installed Turkish PS and there is no language choice other than Turkish in preferences menu. Pls let me know how to change language to English from Turkish.

    Hi BulKa59,
    Thats strange. Could you share a screenshot of the CC desktop app preferences panel?
    May i also know the operating system on which you are working?
    Try to sign out from CC desktop app and then sign in back and check if you get the option to change the language.
    Also, what is your operating system language?
    Regards
    ~ Arpit

  • Know how to change the outline shape of a tooltip?

    Hi All,
    I was wondering if anybody knows how to change the shape of a tooltip popup box?
    I've implemented my own UI delegate for ToolTipUI and overridden the paint( Graphics g, JComponent c ) method which I thought would have allowed me to completely control the rendering of the tooltip, box and all. But what I discovered was that even when I did nothing inside this method, the rectangular popup window was still appearing (I stepped through the code, and the correct instance of UI was being used, not the one that may have been defined by UIManager.set( "ToolTipUI", "foo.Bar" )) After a little more investigation, I ended up in ToolTipManager.showTipWindow() which eventually calls
    PopupFactory popupFactory = PopupFactory.getSharedInstance();
    tipWindow = popupFactory.getPopup(insideComponent, tip, location.x, location.y);
    tipWindow.show();To try to overcome this, as a test I extended JButton with the following constructor:
    public TestButton() {
        super();
        setUI( new MyCustomUI() );
        ToolTipManager.sharedInstance().unregisterComponent( this );
    }but this didn't solve the problem either. Has anybody got any ideas on this?
    Cheers,
    Paul.

    Try this.
    regards,
    Stas
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.awt.geom.*;
    public class Test {
        JScrollPane scroll;
        JPanel p=new JPanel(new BorderLayout());
        Robot robot=new Robot();
        public Test()  throws Exception {
            final JFrame frame=new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add(p);
            JButton b=new JButton("Test balloon!");
            b.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    TransparentFrame frame1=new TransparentFrame();
                    int x=frame.getX()-100;
                    if (x<0) x=0;
                    int y=frame.getY()-100;
                    if (y<0) y=0;
                    frame1.setBounds(x,y,100,100);
                    frame1.createBalloon();
                    frame1.setVisible(true);
            frame.getContentPane().add(b);
            frame.setBounds(200,200,120,50);
            frame.show();
        public static void main(String[] args) throws Exception {
            new Test();
    class TransparentFrame extends JWindow {
        Robot robot;
        BufferedImage screenImg;
        Rectangle screenRect;
        MyPanel contentPanel=new MyPanel();
        boolean userActivate=false;
        Area Balloon;
        public TransparentFrame() {
            super();
            createScreenImage();
            contentPanel.Balloon=Balloon;
            this.setContentPane(contentPanel);
            this.addComponentListener(new ComponentAdapter() {
                public void componentHidden(ComponentEvent e) {}
                public void componentMoved(ComponentEvent e) {
                    resetUnderImg();
                    repaint();
                public void componentResized(ComponentEvent e) {
                    resetUnderImg();
                    repaint();
                public void componentShown(ComponentEvent e) {}
            this.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                public void windowClosed(WindowEvent e) {
                public void windowOpened(WindowEvent e) {
                public void windowIconified(WindowEvent e) {
                public void windowDeiconified(WindowEvent e) {
                public void windowActivated(WindowEvent e) {
                public void windowDeactivated(WindowEvent e) {
                    Balloon=null;
        protected void createScreenImage() {
            try {
                if (robot==null)
                    robot=new Robot();
            catch (AWTException ex) {
                ex.printStackTrace();
            Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
            screenRect=new Rectangle(0,0,screenSize.width,screenSize.height);
            screenImg=robot.createScreenCapture(screenRect);
        public void createBalloon() {
            Rectangle bounds=new Rectangle(0,0,getWidth(),getHeight());
            Balloon=new Area(new Rectangle(bounds));
            System.err.println(Balloon.getBounds());
            RoundRectangle2D content=new RoundRectangle2D.Double(0,0,getWidth(),getHeight()/3,20,20);
            Polygon polygon=new Polygon(new int[] {20,getWidth()/2,getWidth()},new int[] {getHeight()/3,getHeight()/3,getHeight()},3);
            Area a=new Area(new Rectangle(bounds));
            a.subtract(new Area(content));
            a.subtract(new Area(polygon));
            Balloon.subtract(a);
            contentPanel.Balloon=Balloon;
        public void resetUnderImg() {
            if (robot!=null && screenImg!=null) {
                Rectangle frameRect=getBounds();
                int x=frameRect.x;
                contentPanel.paintX=0;
                contentPanel.paintY=0;
                if (x<0) {
                    contentPanel.paintX=-x;
                    x=0;
                int y=frameRect.y;
                if (y<0) {
                    contentPanel.paintY=-y;
                    y=0;
                int w=frameRect.width;
                if (x+w>screenImg.getWidth())
                    w=screenImg.getWidth()-x;
                int h=frameRect.height;
                if (y+h>screenImg.getHeight())
                    h=screenImg.getHeight()-y;
                contentPanel.underFrameImg=screenImg.getSubimage(x,y,w,h);
    class MyPanel extends JPanel {
        BufferedImage underFrameImg;
        Area Balloon;
        int paintX=0;
        int paintY=0;
        public MyPanel() {
            super();
            setOpaque(true);
        public void paint(Graphics g) {
            super.paint(g);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            g.drawImage(underFrameImg,paintX,paintY,null);
            if (Balloon!=null) {
                g.setColor(Color.yellow);
                ((Graphics2D)g).fill(Balloon);
            g.setColor(Color.red);
            g.drawString("Balloon test!",10,20);
    }

  • Anyone know how to change security questions

    SSomeone please help. I don't know how to change my security passwords / questions when I try to buy something

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (114885)

  • OK so i need to reset my security questions because i do not remember them,but the link that is given for my email is incorrect. i do not know how to change that?

    OK so i need to reset my security questions because i do not remember them,but the link that is given for my email is incorrect. i do not know how to change that?

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (103340)

  • HT5312 I don't know how to change my questions for my Apple ID

    I don't know how to change my questions for my Apple ID

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • I forgot the answers to my security questions so I went to my account to change them, but the email account they send the security info to no longer exists and I don't know how to change it. Can anybody help me?

    I forgot my answers to my security questions so I went to my account to change them, but the email accout that they send all the security info on how to change them no longer exists and I don't know how to change that email with knowing my security question. Can anybody help me?

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122370)

  • I just downloaded IOS 5 on to my IPHONE 4. When i text people that also have Iphones for Imessage my name is my email. anyone know how to change it?

    I just downloaded IOS 5 on to my IPHONE 4. When i text people that also have Iphones for Imessage my name is my email. anyone know how to change it?

    You have an Apple ID signed in to all the devices which is causing this.
    "When you sign in to your Apple ID with iMessage using an iPhone with iOS 6, your Apple ID is linked to your phone number. This allows you to receive iMessages sent to your phone number on other iOS 6 devices signed in to the same Apple ID."
    To correct this, go into Settings > Messages > Send and Recieve at > See below...
    On your phone: Uncheck your son's phone number
    On his phone: Uncheck your phone number.
    On iPad: Uncheck both phone numbers to prevent iMessages sent to either number to also appear on the iPad.
    If you have email addresses associated here, then you may have to remove those as well, although you won't be able to remove the Apple ID that you're using. Any iMessage sent to that Apple ID will arrive at all the device unless you sign out of that Apple ID and create/use another Apple ID for that device.

Maybe you are looking for

  • Fluid grid layouts do not work in IE 7/8

    Hello, I just created a simple fluid grid layout with Dreamweaver CS6, but there is a problem in Internet Explorer. IE 9 shows it right. When I start IE 9, I press F12 to get to the developer panel. When I switch to IE 7 / 8, the layout crashes. Ther

  • Firmware & connectivity problem in ZEN MicroPh

    I really need some help...i bought yesterday a zen microphoto and i spent a lot of ours to configure it but i failed.Some months ago i had i zen micro so i'm not completely irrelevant with the subject.My Zen micro worked fine.But zen microPhoto does

  • Adobe Acrobat pro keeps shutting down

    each time i try adding a new blank page the software stops working and gives me an error message "Adobe Acrobat has stopped working, not sure why as the software worked fine for the first few days

  • Autogenerated mail for CUNI transaction(t006 table)

    Hi Experts, Requirement is to monitor or control unnecessary changes or creation of UOM in CUNI transation.whenever a person  change UOM or create a new UOM(changes in T006 table),system should generate a mail and send it some group of persons mailbo

  • User exit for salary calcuation through PA30 infotype 8

    Hello gurus, I want user exit which will trigger in PA30 when we put infotype 8 for a particular employee in display or change mode. In PBAS package i have found the exit PARA0002. In this i have 3 components. I put the hardcoded break-poin in these