I like many need help with a problem of burning cds

I am trying to burn a simple playlist to a memorex music cd-r. Every time I try a message pops up with the error code of 4261 and then pops out the cd. Any help will be very much appriciated as I am at my wits end with this problem. Thank you so very much!
Windows, Media Center PC    

Place the PSU in and connect the 20 pins connector and the 4 pins connector will do.
You may also try swapping the RAMs with another one to test f the RAM is to be at fault.

Similar Messages

  • 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

  • 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 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.

  • 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.

  • 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

  • Need help with m2ts problem in PE 7

    Why can't I import m2ts formats in PE7 as I can import mpg formats?

    Ed C Jake wrote:
    The video comes from a Sony CyberShot DSC HX30V.  The photos and video clips were imported using Sony's program:   PlayMemories Home       which is apparently required to export video from the camera.
    I then copied the photos and videos into an appropriate folder on my external HD.
    The next step was to import the photos and videos into PE7.  No problem with the photos BUT PE7 did not recognize the m2ts files.
    I have almost the same camera.  Mine is the predecessor to the HX20/30V.  For those that don't know the camera, it is a moderately price pocket "point and shoot" that Sony decided should shoot stunning, stabilized HD video.  If you want a pocket sized video camera, this should be the first one you look at.
    I also bought a big brother, the RX100.  I shoot in the highest quality 1080p60 AVCHD.  You can dumb these cameras down to an older format, like MP4.  But, if you want them to perform at their best settings, you need new software.  I started with PrE9, then 10.  The worked with the lower quality settings of AVCHD 1.0 and could be made to work with 1080p that was included in AVCHD 2.0. I was not until the current 11 that AVCHD 2.00 was fully supported.  "Fully Supported" means that 1080p60 was included.  You bought a 1080p60 camera so you need the software to match.  Buy PrE 11!
    My "workflow" is the same as yours.  I use PlayMemories to move the video to my computer.  It does a few things well.  It organizes the files for me and, most important, allows 100% lossless editing.  It can trim, split and join parts of original footage to make new files with no transcoding or rendering.  It is fast, even on older weaker computers.  So, just for the opportunity of occasional lossless editing, I keep that in my habit pattern.
    I hate to correct Steve, but the files made by the camera don't need "capturing".  (I don't know what capturing is. I think it may have to do with cameras that used firewires.)  AVCHD files only need to be copied.  The files are born as editable video.  The files that end in .m2ts that are made by the camera are all that are needed and can be used by most current editing software except PlayMemories.  PlayMemories uses the other minor files for it's special Sony magic.  If you don't want any of PlayMemories features you can get rid of the .modd and .moff files.
    You can use PlayMemories, Windows Explorer, Lightroom, Elements Organizer or whatever to move the files from either the camera plugged into USB, a card reader plugged into USB or putting the card in the computer directly.  It does not matter how you get them there.  You do need to drill down a little to find the files if you use the simpler methods because AVCHD's relationship to Blu-Ray formats put them in a layered folder structure on the SD card.
    Once the .m2ts files are on the computer you can put them into Premier Elements by doing a Get or Add Media from files or folders.   Again, you need version 11 for it to work.
    One last comment.  HD files like 1080p are large with lots of digital information.  If your computer is as old as PrE7 is, you need a new computer for to handle them.  
    Bill
    PS:  Steve,  I signed up for a month of lynda.  I'm working on Lightroom and PSE.  I'll be watching yours too!

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Need help with G4 problem

    Months ago I have a problem on my G4 MDD which intermittently shuts down after putting it to sleep. Now some new problems are coming out. First one I noticed is that sometimes even the power switch light would turn off even though the computer is still on. I can still use the internet and such but noticed that when I need to digitized video footage using FCE there would be some noise on the video which leads me to conclude that the power is unstable. Am I correct in this? 2nd problem is sometimes it will not even power up unless I either pull the plug and plug it in again or open the side of the computer. Now regarding opening the side of the computer, I noticed that if I powered it up with the side door opened and try to close it the computer will shut down. Sometimes I managed to close the door and it will stay on with out a problem. Right now I just leave the side door open and so far power seems to be ok for 72 hours. So is this a logic board problem or a connection problem between the psu and the logic board?

    I'm leaning towards Tom's opinion of heat, too. Modern Macs have thermal sensors that shut down the computer if key temps rise too high. Dual processor MDDs run especially hot, as do MDDs with both slots in the front drive bay occupied.
    The two cheap things to do first are a) give the inside a cleaning, focusing on the main fan and its housing, and b) check your workspace to ensure that there is room around the computer for intake and exhaust air.
    The primary air intake is not the four molded "ducts" on the front but rather the area at the bottom of the front panel below them. Keep that area clear--it's best not to put "bottom breather" computers like the MDD on the floor where that can pull in even more dirt. Crowding the exhaust in the back can run up temps, too. Try to position the tower so nothing is within 8 inches of the back,

  • Need help with Backup problems - anyone seen this before?

    I am experiencing 2 primary problems:
    1) When attempting a recent backup with HotSync on my desktop PC (Treo 700p, HotSync Manager v. 6.01, XP): I hadn't backed up for a few weeks, and this time it crashed sometime during the backup of the Calendar (and this behavior is repeated).  So I then unchecked the backup of Calendar, but then it just hung on Contacts for about 15 minutes, so I realized it wasn't doing anything anymore (I have lots of contacts, but not not 15 minutes worth).  At this point I gave up, but I obviously need to figure out how to make HotSync work again.  Any ideas?
    2) (not sure if this is the forum to address this): When using Backup Buddy v. 2.04 a couple of days ago, every time I tried to backup, it would get maybe 1/5th into the backup and crash and restart.  I figured out in short order that Address.DB is what was causing the crash. [I tried to e-mail the file so I could examine it and save it, but just attaching it in SnapperMail made the device crash].  So I took the chance of deleting the Address.DB (as it seemed small and didn't appear to contain any backup information), and it looks like all of my information was retained.  My question here is: two times since the initial problem, something has recreated Address.DB, which again causes the 700p to crash, so I have had to delete it again.  So when is this file being (re)created, and what is the purpose of it?
    An additional (minor) difficulty that I've had occur on a couple of occasions: After a recovery (where my BackupBuddy information was more current than my HotSync data), I restored, and all the calendar entries were double - 2 identical entries adjacent to one another. Has anyone seen this?
    Thanks in advance -
    B
    Post relates to: Treo 700p (Verizon)

    Sounds like the device has become corrupted.
    Post relates to: None

  • Need help with chart problem

    I have built the attached vi to read a binary file. It has two problems which I have not been able to figure out. The way it works is as follows: Reads the entire file, and grabs the trace names from the file. Populates the list box with these names. Select the traces you want to see and then the legend display will size itself and populate with the selected names. The selected traces will also display on the chart.
    1. Sometimes, when picking a SINGLE trace it won't display on the chart. Instead I see a blank chart and the X-Axis shows Dec. 31 1903 @ 7pm. Usually If I select more than one it displays correctly. A probe shows me the data is in the wire going to the chart, but the chart doesn't seem to update.
    2. Presently I am using a loop to read the file in its entirety. However the chart only displays 1 second worth of data. This is one segment of the original file. By reading the whole file I am seeing the LAST second of my data. Previously I removed the loop and then I only see the first second of data. Is there an easy way to select a different segment of the file to display?
    I have been fighting with these two issues for several days now and I don't seem to be any closer....
    Here is my vi and a sample binary file. (Note that I couldn't attach it as .bin so it needs to be re-named back to .bin from .txt)
    technomage
    Attachments:
    Read-bin.vi ‏56 KB
    23-08-2006-080252.txt ‏128 KB

    altenbach, Thanks a ton for your assistance. I have gained serious insight by examining how you approached this. I am able to see how my thinking was somewhat flawed. Here is the vi I used to write the file. I have also included another sample .bin file (which needs to be renamed to .bin), and a subvi I built to generate filenames based on time stamps.
    This is part of a system we are trying to build to monitor some of our equipment 24/7. The plan is to use this data to monitor long term degradation of the equipment in order to perform preventive maintenance, before problems occur. I work in a Nuclear plant, so problems can be serious...
    In the final application the "Trigger" will be set by a physical input. For example, when a fuelling machine component is commanded to move we will start the data acquisition and when the machine is commanded to stop, the acqusition stops. The plan is to archive all of the data, and any analysis would be done by the system engineers later.
    We would like to able to examine the entire data file which would be captured. A typical movement of our machine might last for as long as 2 minutes. We want to capture all of this time period, but we might need to examine only a couple of seconds anywhere within this window.
    Thanks again for your insight. 5 Stars across the board....
    technomage
    Attachments:
    12-09-2006-074635.txt ‏766 KB
    write.vi ‏82 KB
    Filename Generator.vi ‏20 KB

  • Need help with Sound Problem

    If you have 1 sound file playing on say frame 1, how do you
    get frame 2 to play a different sound, without playing frame one's
    sound as well? Right now 'frame 2' is playing both sound files. If
    I use the commande 'stopAllSounds' the frame 2 sound file will not
    play either.
    Please help. Thank you.

    nwbgator wrote:
    > If you have 1 sound file playing on say frame 1, how do
    you get frame 2 to play
    > a different sound, without playing frame one's sound as
    well? Right now 'frame
    > 2' is playing both sound files. If I use the commande
    'stopAllSounds' the
    > frame 2 sound file will not play either.
    The sound once started will play for as long as you loop it
    or as long as its length
    is (if not loop is define). Even sound run independent to
    timeline so if you enter
    frame 2 it will simply play another sound.
    You need to make some on/off switches on frames or actions
    that will control the
    sound. Entering another frame won't do it and using
    stopAllSounds works like purge
    and clear player from all its sounds. The only way to get
    sound back will be by
    reloading the entire movie. One of these actions that not
    many of us are using.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Need help with simple problem.......

    Hello, I'm fairly new to Java, taking my first year in it. I have a little applet that I have to write up but I'm having some difficulties. Someone please help :)
    OBJECTIVE: Print out the following using a FOR loop.
    OUTPUT:
    JavaProgramming
    JavaProgramming
    JavaProgramming
    JavaProgramming
    JavaProgramming
    I am really having trouble doing the loop and spacing, so that it would have "JavaProgramming" appear 5 times and automatically indent 2 spaces everytime. I've done a "HSA" Console Program (NOT APPLET) where there are 5 words that are not spaced but when I try to do the same in an applet, it simply wont repeat in the loop. Below is the program where there are 5 words WITHOUT spacing in my applet program, I don't know how to repeat it 5 times and have it space 2 times everytime :(
    public class Test extends Applet
        // Place instance variables here
        public void init ()
        } // init method
        public void paint (Graphics g)
            for (int i = 0 ; i < 5 ; i++)
                g.drawString ("JavaProgramming", 20, 20);
        } // paint method
    } // Test classThis will only show "JavaProgramming" once when i run the program. I need it to show 5 times, with 2 spaces indented every time!

    this:
    g.drawString ("JavaProgramming", 20, 20);
    probably needs to be something like:
    g.drawString("JavaProgramming", 20+(i*10), 20+(i*10));
    i.e: increase x and y pos for each iteration.

  • Need help with interesting problem

    - I have two similar Windows machines both running Oracle 9.2.0.#
    - They have the exact same spfile and the same tables, indexes and rows
    - All hit ratios are in the high 90's%
    - Neither is running statistics but both are running Choose optimizer mode
    - Im running the same application on both running a heavy update statement through a full table scan select on a table with 15 million+ rows through ODBC Client.
    On machine 1 it takes under 2 hours. On machine 2 it takes over 24 hours. This tells me there is a major smoking gun. There are three noticeable differences between the 3.
    1) Both are using locally managed tablespaces
    - machine 1 has many smaller 2G datafiles in the tablespaces
    - machine 2 has few large 10G datafiles in the tablespaces
    2) - Machine 2 is using an external hard drive and an internal hard drive (UNDO datafiles are split between internal and external, all other datafiles are on external hard drive) through a usb
    - Machine 1 is using an internal hard drive soley.
    3) - Machine 1 is using 9.2.0.1
    - Machine 2 is using 9.2.0.6
    Im curious if anyone has any experience with this and the best way to determine how bad the I/O is? I believe the issue is problem 2 and NOT 1 or 3. Any help in determing the problem would be much appreciated
    Scott

    This is tough without knowing more, but I suspect a culprit is the external hard drive accessed via USB. Have you tried placing ALL of your redo logs on internal drives? (Redo logs are different than the UNDO Tablespace/Rollback segment). Updating millions of rows generates heavy Redo -- the redo logs should be on fast drives.

  • 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.*

Maybe you are looking for

  • My computer is blinking ?

    Hello, My computer is blinking ? It does works properly but its blinking once a while as 1/4 sec. at approx. every minute, not regularly. Any idea ? Thanks Louis

  • Extract the Month from the day with Query designer ...

    Hi everybody, Is there exist a method in Query designer to extract the CalMonth (Date Month) from the CalDay ? Thanks! Rodolphe.

  • Cpu intensive or io intensive

    Dear all, How do i know if a util/programme is cpu intensive or io intensive. Regards, Yoonus

  • ParallelElement in a series

    Hi, is it possible to play parallel elements in a series by adding a ParallelElement to a SerialElement? I mean I already tried this and it didn't work out. But maybe I used a wrong way. parallelMedia = new ParallelElement(); serialMedia = new Serial

  • I can't sign in to use my widget browser in cs6

    I get this error message when trying to sign in to use the widget browser in CS6: "Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL (http://www.adobe.com/cfusion/exchange/exchangedwwidgetsfacade.cfc?wsdl)"