HT2534 how can I find the none button for payment method on mac?

I'm a student. I have some problem with payment method. I don't have credit card. I can't find the none button to choose and I don't know how to do to get this button . This is my first time creating apple ID.

Unless you used the instructions on the HT2534 page that you posted from when creating the account then you won't get the 'none' option - if you don't use those instructions then credit card details will need to be entered before an account can be used in the stores.
Steps to create a new account with 'none' as the payment option : https://discussions.apple.com/message/24321860#24321860
If you want to use the same email address on a new account then you can change it on the one that you've already created by logging into it via the Store > View Account menu option on your Mac's iTunes or via http://appleid.apple.com

Similar Messages

  • HT2534 i can't see the none option in payment method

    i can't see the none option in payment method

    Hello there, harjeetfromsantnagar.
    The following Knowledge Base article offers some great information about your issue in particular:
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • HT1918 Where exactly is the 'None' button for payment methods.

    Nothing is showing up besides Visa, Master Card, Paypal, etc. And I JUST redeemed a $50 iTunes card, so of course I wanna be able to use it. Quite frankly, this has never happened before. What do I do to stop it from asking for my credit card information? D: Please help.

    No need to over react
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card

  • HT4484 i can't find the none button under the payment information....it used to be there....i live in Canada.

    i can't find the none button...i swear there used to be one.

    Many reasons can cause this, contact
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • How can I find the serial number for my creative suite CS6 I bought it from a store.

    How can I find the serial number for my creative suite CS6 I bought it from a store.

    https://www.adobe.com/account.html for serial numbers or subscriptions on your Adobe page... or
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • How can I find the serial number for my stolen iPad that's associated with my apple ID ?

    How can I find the serial number for my stolen iPad that's associated with my apple ID ?

    If you registered it with Apple check your registered items at Your Support Profile for Registered Purchases. Also, see iOS- How to find the serial number, IMEI, MEID, CDN, and ICCID number.
    What To Do If Your iDevice Is Lost Or Stolen
    If you activated Find My Phone before it was lost or stolen, you can track it only if Wi-Fi is enabled on the device. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. What to do if your iOS device is lost or stolen
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
      8. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • Where in itunes can I find the eject button for my new ipod nano?

    Where in itunes can I find the eject button for my new ipod nano?

    When in iTunes on the top R it should say your name and ipod and then there is a triangle pointing up with one or two lines underneath.  Just click on that and then it's ok to disconnect.

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • HT2534 I can't find the "None" Option in the payment option, what should I do?

    I'm setting up my Apple ID to register it to App Store but as I continue to my Payment option, I can't find the "None" option. I don't have a credit card so I won't can't fill up the card number or something. How can I continue with this?

    You can create an iTune and App Store account without credit card details
    1. Sign out of current Apple ID if you are sign-in to one
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (must be a valid email address; don't use the one you have created earlier)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • How can I find the non-truncated serial number of CS4 masters collection installed on my Mac?

    I got CS4 Masters Collection about 3 years ago when I was still using a PowerPC G5 Mac. Since then, I've upgraded my setup with Intel machines. I'd like to use Adobe Premiere Pro on my MacBook Pro, as I cannot run it on my G5. I found a download link on Adobe's servers for the old Adobe Premiere CS4 trial, and I downloaded it. Since it isn't installed on the G5, I should be able to use it on my intel machine, right? So I went into Help/System Info on one of the other CS4 apps installed on my G5, and found the serial code, but it was shortened to 20 characters, when the registration requires 24. How can I find the last 4 characters so I can activate Premiere? I found a guide, but it only works for PC's. Please help, I'm tired of using FCPX.

    No, that is not rue, Adobe limits the supply of their software explicitly to Adobe themselfs and to their contract distributers. And the other problem is that the serial is stcked on the package of the DVDs. So, if someone passes his original DVDs to someone else he gives him also the serial. He has no possibility to hinder someone the use of these SN. So he has given away the proof of his licence.

  • How Can I Find the "Store" Button. (I'm not talking about the iTunes Store. I'm not that confused.)

    I am trying to download previous purchases to my new computer but it says that my computer is not authorized. I tried following the directions the help page gave me and I'm still lost. I can't find the "Store" button. If someone could help me I would really appreaciate it!

    It's not a button, but a menu item. Look in the menubar of iTunes for the Store menu underwhich should be an option to Authorize this Computer. Be sure to use the same Apple ID that you used to purchase the items.

  • HT2534 I can't got the None button that allow me to create it! without credit card?

    I can't got the None button that allow me to create mac app store ID ! without credit card?

    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
              http://support.apple.com/kb/HT2534

  • How can I find the "Accept" button to download Adobe Reader? I've downloaded it, installed it, can't find the 'accept button'. am using a Mac.

    need help in finding the 'accept button for downloading adobe reader. I'm using a Mac.

    You're all wrong. Here's the story:
    I have reluctantly been using the Chrome browser for some time, and suddenly they have withdrawn support for viewing PDFs in Reader, not in the browser. Didn't announce it, just did it. Goodbye Chrome. Grrrrr.
    Compatible web browsers and PDFMaker applications

  • How can I find the router number for airport extreme card?

    I am trying (unsuccessfully) to wirelessly connect my PlayStation 3 to my iMac Duo using the built in Airport Extreme Card.
    Can someone please tell me how to find the router number for the built-in Airport? I am using OSX 10.4.9. The wireless card type on my Mac info is "Airport Extreme (Ox14E4, Ox89)".
    Thanks in advance.

    Since the iMac is using OS X's Internet Sharing, the iMac is acting as a router. The router IP address created by the iMac is dependent on the IP address assigned to the iMac. The first 2 numbers are the same but the last 2 are .2.1.
    For instance:
    If your iMac is getting an IP address of 192.168.0.200 your Mac's router IP address will be 192.168.2.1
    Similarly, if your iMac is getting an IP address of 10.0.1.200 your Mac's router IP address will be 10.0.2.1
    So
    Open Network Utility.
    Click on "Info". Under "Please select a network interface for information" select "Network Interface (en0)" to see what IP address the iMac has been assigned.
    Click on "Info". Under "Please select a network interface for information" select "Network Interface (en1)" to see what IP address the iMac is using as the router address on the wireless interface.

  • Where can I find the "Group button" for layers? Element 8

    So Im trying to find the button to group a layer but I can't.
    Any idea where I can find it?

    That's being a bit pedantic, I think. In all previous versions of PSE the function was called grouping. Just because adobe decided to change its name doesn't mean the function isn't there anymore. I have to say I find this tendency of Adobe to cal something one thing and then call it something else and assign the original name to a different function HUGELY annoying, as do all the PS and PSE instructors I've ever met.

Maybe you are looking for