Need help with Itunes problem not being able to put custom made ringtone on iphone 4s.

My iphone 4s is running iOS7. My windows laptop is running the latest version of itunes, i follow instructions everywhere to get the ringtone i made onto my cellphone and i get stuck where it says to go to the apps tab and then scroll down till you see the apps you have and choose the app that you made the ringtone with. Well when i select apps it just goes to the app store, it doesn't do anything else. How in the world do i get that to come up so i can move the ringtone from the app to my phone??? please help!

Although WAV files have the same audio coding as an audio CD, a disc full of WAV files does not act like an audio CD; it lacks the indexing and ToC needed in order for a "regular" CD player to play it. As Diane notes, put your WAV files in an iTunes playlist and burn it as an *audio CD.*

Similar Messages

  • Need help with itunes problem

    I just installed itunes version 7.6.2 and I plugged my ipod into my computer and hit the restore button so i can erase and redo my ipod. Then when I plugged my ipod into my computer my ipod is stuck on the restore mode and i can't see the information bar or the music bar under my ipod name. I can only upload music and eject my ipod. PLEASE HELP!!! this is so fustrating.
    this is what the screen looks like when i click on my ipod or plug it in.

    Glad you got it sorted!

  • Problem with Adobe Reader not being able to run with Maverick  10.9.2?

    problem with Adobe Reader not being able to run with Maverick  10.9.2?

    Have you updated your version of Adobe Reader?

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • HT2173 my iMac will not get past the start screen, after i restarted it after it not being able to upload my photos from my iPhone 4S to iPhoto  app on my iMac bc a visa vas about 3:15 min

    my iMac will not get past the start screen, after i restarted it after it not being able to upload my photos from my iPhone 4S to iPhoto  app on my iMac bc a visa vas about 3:15 min.  What should I do to get my imac past this?

    According to your posted Profile here you are running a PPC based iMac.  This Forum is only for "Intel iMac's", and so to get the expert and correct help you need you should repost your question in the "PPC iMac Forum".
    Hope this helps

  • Cannot contact Apple, need help with iTunes & Registration?

    1, The number provided does not work outside the US.
    2, The number for Thailand doesn't work either.
    Serial number: C02KJ0xxxxxxx
    Technical Support says is  Expired ???
    3, Can can tech support be expired on a 3 day old machine?
    4, Why won't it register on the website?
    What a nightmare. I want to register my 3 day old computer but you say tech support has expired.
    I'm in Thailand and cannot call your support number. Its the number is incorrect.
    Really need some help with iTunes can someone help me? OK to pay but I really really need some support.
    Jason

    First, have you moved or renamed the iTunes or iTunes Music folders, or any of the folder or track files in those folders, since iTunes last worked correctly?

  • Need Help with Scrolling Problem

    I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

    Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

  • Problem with .wav files not being able to play on CD players

    What am I doing wrong? I took some .wav recordings, loaded them into iTunes, then transferred to a CD-R. The files from the CD-R would play on both Mac and PC computers, but not on any CD players. When loading the files, they automatically went into iTunes. Should I have somehow put them into Garage Band - would that even make a difference? I thought maybe my discs were bad/wrong, so purchased Music CD-R and have the same problem.
    Please, can someone help? Thanks!

    Although WAV files have the same audio coding as an audio CD, a disc full of WAV files does not act like an audio CD; it lacks the indexing and ToC needed in order for a "regular" CD player to play it. As Diane notes, put your WAV files in an iTunes playlist and burn it as an *audio CD.*

  • Anyone having problems with adobe reader. not being able to view email attachments?

    I have been recieving emails now for the last 9 days & I have not been able to view attachments  for some reason?

    Please provide some details.

  • Please I Need Help With iTunes..!!

    Hi I am New In This Forum and I hope I Could Find The Help I Was Not Able To Find and Get at Apple Store / Support Dept Lots Of Times I Call Them Over The The Phone I Am Not Kidding When Say Probably 10-15 Times, Plus The Times I Went Ahead To One Nearest Apple Store To My House For The Same and The Only Unique Problem That I Been Complaining For The Last 6-8 Months....Error Messages Like This >>  iTunes : ERROR REQ Could Not Be Completed, Item You've Requested  Is Not Currently Available In The U.S Store...!!! I Really Don't Understand it what Happen I Was Using Before For Years, I Have Like 5,000 Songs and Videos, Movies, Pictures etc, I Mean I Was Able To Use it, I Can't Not Even Have Access To Login To My Account at All Either..and APPLE STORE, They Just Told Sorry They Don't Know What's Wrong With it Don't Know How To Help Me..
    My INFO IS: MacBook Pro 2010-2011
    MAC OS X
    VERSION: 10.8.2
    PROCESSOR: 2.4 GHz INTEL CORE 2DUO
    MEMORY: 4 GB 1867 MHz DDR8
    STARUP DISK: MACINTASH HD
    I Really Hope There's Someone Who Might Be Able To Help Me Out, To Resolve This Issue Or I am Going To Be Go Crazy About This Issue With iTunes...The Matters is That For Therapy I Really Need My Music and Its Not a Joke Music Its My Therapy Some How...Long Story...
    Once Again Thank You. God Bless You All
    Irene/[email protected]

    Windows doesn't detect iPhone: http://support.apple.com/kb/ts1538

  • Need help with a problem after cloning my HD....

    I recently cloned my HD to a backup drive. I did an erase and install of Tiger on my original drive. I recently cloned everything back onto my original drive from my backup drive. Now when I go to boot up on my original drive, for the first time ever I must type a Username and Password to log on to the computer. Trouble with this is, I tried my username and password and it would not work. I double, triple, quadruple checked my spelling and tried different combinations just in case i was being stupid, NOPE. It won't let me log on to my main HD. Can anyone help with this?

    Let me get this straight. You did
    1: Cloned your original boot drive to a external - not a problem
    (did you boot from the clone to check it out?, did you use cloning software or???)
    2: You erased your original boot drive - ok no problem.
    3: You then installed Tiger on your original boot drive - ok no problem there
    4: But you cloned from your clone back onto your original, freshly installed Tiger drive?
    Why did you do this?
    Cloning copies the whole drive, all the little hidden stuff, copy protection etc.
    That's why it's called a clone.
    Did you mean to say you copied certain folders/files from the clone onto the new Tiger install on your original boot drive?
    What folders/files was these?
    You need to copy the contents of certain folders inside your User folder, not the folders themselves.
    What software did you use to clone with?
    Read my detailed instructions here
    http://homepage.mac.com/hogfish/Personal6.html
    http://homepage.mac.com/hogfish/Personal10.html

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • I need help with iTunes. I just bought a new laptop and I have a few questions

    So I  just bought a new laptop and few days ago. It's an HP. I have the iPhone 4 (8GB). So all my songs from iCloud are on my phone. I want to manually put them on my phone. All of my songs, videos, pictures etc. are on my new laptop. I went to apply the changes on iTunes when I selected "Manually manage music and videos". And a message came up saying "This iPhone is synced with another iTunes library on another PC. Do you want to choose to erase this iPhone and sync with this iTunes library?" Under that it says "Erasing and syncing replaces the contents of this iPhone with the contents of this iTunes library."
    So what do I do? I don't want to click sync and loose everything on my phone. I will no longer use the other comuter. I really need help.
    Thank you!

    There are some instructions on this page for syncing to a new computer : https://discussions.apple.com/docs/DOC-3141
    You should be able to copy iTunes purchased music from the phone via File > Devices > Transfer Purchases
    If you still have your old computer and you haven't copied your library over form it, then there are also some methods listed on this page about how you could copy it over : http://support.apple.com/kb/HT4527 - the page refers to music, but I've used the home sharing method to copy apps, films etc between computers.

  • I NEED HELP WITH SYNC PROBLEM!

    I have already posted about this once and got no help! I can not afford Apple's greedy fee for helping us with a product we paid a lot for
    My iPad will not sync with iTunes anymore!
    The error I get is: The iPad "Jonnathon's iPad" cannot be synced. An error occurred while reading from the device.
    Sometimes the error is different saying it cant find a required disk.
    It always occurs just after downloading apps that had been purchased or updated since the last sync.
    I have made sure my iTunes is up to date and the iPad does have the latest version of it's OS.
    I did do a "Run Diagnostics" and did both "Device connectivity tests" and "Device sync tests" and no problems were found. But I still get the errors!

    This is wiered.You better call the Apple and say your problem.Maybe they could help you.Or maybe your iPad has a virus.If you think it has a virus , you have to restore it.

Maybe you are looking for

  • Report likeMB5B

    Hai Guys, My requirement is a report like MB5B to show opening and closing stock with value as MB5B does not show value but only quantity. Kindly suggest your ideas Regards R.Senthil

  • Oracle Matrix Report output to XML Publisher

    We have an Oracle matrix report (rdf) registered in our applications and we are trying to format the report output using XML publisher. I have taken XML output of the report by changing the Report output to XML in concurrent program definition. Using

  • Problem in Teststand Operator Interface

    I am facing problems when i try to run my sequence file from TestStand Operator Interface for LabVIEW. It gives either all tests as failed or skipped but the same sequence file when i execute from TestStand Sequence Editor it gives me correct results

  • Message to users in EP

    Hi,      I want to send a message to users in EP like we do from SM02 . Please tell me the steps Thanks

  • How do I get the spinning circle to stop?

    I've had this for 2 months and it has been great until this morning. I tried to turn it off and it is just stuck on the spinning shut down circle on the black background. Won't respond to anything. Thanks for the help.