Big problem applet-midi-au sound

hello all,
i have in my applet an String in rtttl Format (for mobile phones).
how can i convert this string into the *.au Format.
i have already an rtttl to midi converter (returns a byte array in midi format)
in my applet, but can't play this byte array over javax.sound because the applet can get the system midi devices.
Moreover it is not allowed to use a java plugin, i must use the internal java
environment from the browers, and older browses have only java versions under 1.2
In addition to that it is not allowed to post a midi file temporarily.
So i must use the au Format.
Has anybody an idea, how i should solve this problem, or a format description about
au files etc....????????????????

hi
can u help me in converting midi sound file to rtttl sound file
thanks
Amit

Similar Messages

  • Big problem with on-board sound

    I'm thinking that I already know the reason for this, but i want a second opinion!
    About a week ago, I moved my computer. I went to plug it in, and when I did, I saw a small spark in the back. When I actually turned it on, the sound had stopped working!  I dunno what to do with it. My motherboard is a MSI K8N Neo Platinum. I've updated my audio drivers to Nvidia 4.57 yesterday, but that didn't work either. My speakers are working, as I've tested them with other things.
    I've also reset the CMOS, but that didn't work.
    Please help!
    Cheers!

    I had almost the same thing happen to me.  Audio was working fine from the back for a few days.  I check to see if my front panel connections were working, and sounded fine.  After a while, the sound was getting a crackling sound in the headset.  I thought something might be out of wack so I rebooted and I havent had sound ever since.  I thought it might be related to the front panel, so I disconnected it and replaced the 2 jumpers.  Still nothing.  All my windows drivers indicated everything was working fine.  I have the latest drivers.  I tried disabling the soundcard in the bios, rebooting, then reenabling...no difference.
    I double checked the wiring on the port connection, and realized I DID have 2 pins criss crossed, the mic in and the ground.  But I wouldnt think that would be enough to short out the sound chip.  Well, I got fed up and ordered a SB Audigy 2 card to replace it...only to come here and find dozens of threads with the card and this mb...I cant win!

  • Please Help : Big problem with applets

    Hi,
    I have a big problem which I have not been able to figure out. The applet I have enclosed works fine on some computers but not on others .
    I am running :
    java version "1.3.1_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_02-b02)
    Java HotSpot(TM) Client VM (build 1.3.1_02-b02, mixed mode)
    The applet runs perfectly Ok at university but not on other computers.
    The objective of the applet is to display 3 shapes on the screen once. On the university computer it works, however at home and work the 3 shapes are continuously displayed on the screen ( like they are in some infinite loop). I have been struggling with this for days any help would be greatly appreciated.
    It would help me if some of you could run this applet and let me know if the shapes are displayed once or if the shapes are continuously updated on the screen ( assuming that the applet window is not resized covered over etc. )
    =========================================
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    /*<html><applet code = "stage1.class" height = "600" width="810"></applet></html>*/
    public class stage1 extends JApplet{
    JPanel extraPanel = new JPanel();
    public void init()
    Container c = getContentPane();
    extraPanel.setBackground (Color.white);
    extraPanel.setLayout (new FlowLayout());
    c.add(extraPanel);
    public void paint (Graphics g)
    //super.paint( g ); // call superclass's paint method
    // populate the two dimensional array - store the coordinates for the circle and square shapes
    int circle[][] = { {100,100,200,200}, // display circle in the left hand side of the screen
    {350,100,200,200}, // display circle in the middle of the screen
    {600,100,200,200} }; // display circle in the right hand side of the screen
    int rect[][] = { {100,100,200,200}, // display square in the left hand side of the screen
    {350,100,200,200}, // display square in the middle of the screen
    {600,100,200,200} }; // display square in the right hand side of the screen
    // populate the two dimensional array - store the coordinates for the polygon shapes
    int polyX[][] = { {150,250,300,250,150,100 }, // display polygon in the left hand side of the screen
    {400,500,550,500,400,350 }, // display polygon in the middle of the screen
    {650,750,800,750,650,600} }; // display polygon in the right hand side of the screen
    int polyY[] = { 100,100,200,300,300,200    }; // the "Y" co-ordinates wont change for all three polygons
    int xCoordinates[] = new int[ 6 ];
    int pickAShape
    , pickAColour
    , polygonCount = 0
    , circleCount = 0
    , squareCount = 0
    , redCount = 0
    , greenCount = 0
    , blueCount = 0
    , yellowCount = 0 ;
    for ( int position = 0;position < 3;position++ )
    pickAShape = 1 + ( int )( Math.random() * 3 );
    pickAColour = 10 + ( int )( Math.random() * 4 );
    switch ( pickAShape )
    case 1: // draw a circle
    switch ( pickAColour )
    case 10:
    g.setColor( Color.red );
    redCount++;
    break;
    case 11:
    g.setColor( Color.green );
    greenCount++;
    break;
    case 12:
    g.setColor( Color.blue );
    blueCount++;
    break;
    case 13:
    g.setColor( Color.yellow );
    yellowCount++;
    break;
    g.fillOval( circle[position][0],circle[position][1],circle[position][2],circle[position][3] );
    circleCount++;
    break;
    case 2: // draw a rectangle
    switch ( pickAColour )
    case 10:
    g.setColor( Color.red );
    redCount++;
    break;
    case 11:
    g.setColor( Color.green );
    greenCount++;
    break;
    case 12:
    g.setColor( Color.blue );
    blueCount++;
    break;
    case 13:
    g.setColor( Color.yellow );
    yellowCount++;
    break;
    g.fillRect(rect[position][0],rect[position][1],rect[position][2],rect[position][3] );
    squareCount++;
    break;
    case 3: // draw a polygon
    switch ( pickAColour )
    case 10:
    g.setColor( Color.red );
    redCount++;
    break;
    case 11:
    g.setColor( Color.green );
    greenCount++;
    break;
    case 12:
    g.setColor( Color.blue );
    blueCount++;
    break;
    case 13:
    g.setColor( Color.yellow );
    yellowCount++;
    break;
    xCoordinates[0]=polyX[position][0];
    xCoordinates[1]=polyX[position][1];
    xCoordinates[2]=polyX[position][2];
    xCoordinates[3]=polyX[position][3];
    xCoordinates[4]=polyX[position][4];
    xCoordinates[5]=polyX[position][5];
    Polygon polygonInstance = new Polygon ( xCoordinates, polyY, 6 );
    g.fillPolygon( polygonInstance );
    polygonCount++;
    break;
    // display the results
    setFont(new Font("Serif",Font.BOLD,24));
    g.setColor(Color.black);
    if ((circleCount ==3 || squareCount ==3 || polygonCount==3) && (redCount ==3 || greenCount ==3 || blueCount==3 || yellowCount ==3))
    g.drawString( "YOU WIN !!!!" ,380,400 );
    else
    g.drawString( "YOU LOSE !!!!",380,400 );
    } // end method paint
    } // end class stage4
    =========================================
    Regards and thanks

    O.K. You will not believe this, but the problem will be solved if you change the following line from:
        setFont(new Font("Serif",Font.BOLD,24));to:
        g.setFont(new Font("Serif",Font.BOLD,24));Now, since I am also learning JAVA, the way I went about solving was to create your applet from scratch, using cut and paste, and running it piece by piece till I ran into the flashing display. Took me a while. I am enclosing my version of the program for your comments.
    import java.awt.*;
    import java.applet.*;
    public class Slotto extends Applet {
        int circle[][] = { {100,100,200,200}, // circle in the left hand side of the screen
                           {350,100,200,200}, // circle in the middle of the screen
                           {600,100,200,200} }; // circle in the right hand side of the screen
        int rect[][] = { {100,100,200,200}, // square in the left hand side of the screen
                         {350,100,200,200}, // square in the middle of the screen
                         {600,100,200,200} }; // square in the right hand side of the screen
        int polyX[][] = { {150,250,300,250,150,100 }, // polygon in the left hand side of the screen
                          {400,500,550,500,400,350 }, // polygon in the middle of the screen
                          {650,750,800,750,650,600} }; // polygon in the right hand side of the screen
        int polyY[] = { 100,100,200,300,300,200 }; // the "Y" co-ordinates wont change for all three polygons
        int xCoordinates[] = new int[ 6 ];
        int pickAShape
        , pickAColour
        , polygonCount = 0
        , circleCount = 0
        , squareCount = 0
        , redCount = 0
        , greenCount = 0
        , blueCount = 0
        , yellowCount = 0
        , position ;
        public void paint(Graphics g) {
            for (position = 0; position < 3; position++) {
                chooseColor(g);
                drawTheShape(g);
            declareResults(g);
        public void chooseColor(Graphics g) {
            pickAColour = 10 + ( int )( Math.random() * 4 );
            switch ( pickAColour )
                case 10:
                    g.setColor( Color.red );
                    redCount++;
                    break;
                case 11:
                    g.setColor( Color.green );
                    greenCount++;
                    break;
                case 12:
                    g.setColor( Color.blue );
                    blueCount++;
                    break;
                case 13:
                    g.setColor( Color.yellow );
                    yellowCount++;
                    break;
        public void drawTheShape(Graphics g) {
            pickAShape = 1 + ( int )( Math.random() * 3 );
            switch ( pickAShape )
                case 1: // draw a Circle
                    g.fillOval( circle[position][0],
                                circle[position][1],
                                circle[position][2],
                                circle[position][3] );
                    circleCount++;
                    break;
                case 2: // draw a Square
                    g.fillRect(rect[position][0],
                               rect[position][1],
                               rect[position][2],
                               rect[position][3] );
                    squareCount++;
                    break;
                case 3: // draw a Polygon
                    xCoordinates[0]=polyX[position][0];
                    xCoordinates[1]=polyX[position][1];
                    xCoordinates[2]=polyX[position][2];
                    xCoordinates[3]=polyX[position][3];
                    xCoordinates[4]=polyX[position][4];
                    xCoordinates[5]=polyX[position][5];
                    Polygon polygonInstance = new Polygon ( xCoordinates,
                                                            polyY, 6 );
                    g.fillPolygon( polygonInstance );
                    polygonCount++;
                    break;
        public void declareResults(Graphics g) {
            g.setFont(new Font("Serif",Font.BOLD,24));
            g.setColor(Color.black);
            if ((circleCount ==3 || squareCount ==3 || polygonCount==3)
             && (redCount ==3 || greenCount ==3 || blueCount==3 || yellowCount ==3))
                g.drawString( "YOU WIN !!!!" ,380,400 );
            else
                g.drawString( "YOU LOSE !!!!",380,400 );
    }Regards.

  • Big problems with my K7N420 Pro

    I've been having what is apparantly a hardware problem with my computer. Randomly the thing just resets. About once a day. Sometimes more, sometimes it goes for several days without resetting. I check the temperature in BIOS setup whenever I catch it resetting, and the CPU temp (CPU is 1700+ XP) is always between 140 and 150, not an unusual temperature (is it?)
    I got to thinking that maybe the temperature does have something to do with it, so I set to blowing out the dust, thinking that should help. So I blow all around with some canned air, I close it back up, and turn it on - but something else happens. During POST the computer freezes, right at the line where it tells you how much memory you have. I reboot. It works. I run the system restore from the XP installation CD from boot, thinking "just in case it was Windows crashing all along". It freezes in mid-operation. I also start to smell something burning, you know that horrible smell of plastic burning, I'm sure. Now I panic and shut it down. I crack it open trying to determine where the smell is coming from, but can't figure out where. I boot again, with the case open, hoping to catch a stronger smell (suspecting the PSU.) Instead of booting it beeps in my ear, several very long beeps. I can't tell if they are supposed to be one continuous beep, so I can't tell what they are supposed to mean. The manual doesn't have an entry for that code. The lights in back showed one green light in the upper left, all others red. The manual says that means "Early Chipset Initialization". What the hell does that mean?
    Can anyone here put these symptoms together for me and tell me what is wrong with my computer? Did I just cause another problem when I used the canned air, or was this likely a new symptom of whatever problem was causing the random reboots? Is the problem likely the PSU? Thanks.

    Okay so I think I jumped to conclusions with my last message. I was tired, it was a long day, I wanted to make some quick progress in little time before I crashed (no pun intended.)
    Since the configuration Slot 1: Crucial stick, Slot 2: Kingston stick, Slot 3: empty caused big problems, and Slot 1: Crucial stick, Slots 2 and 3: empty, did not, I started to wonder if I could be jumping to another conclusion, and if the problem could be on the motherboard somehow. So I tried the configuration Slot 1: Kingston stick, Slots 2 and 3: empty, and it POSTS fine! And just to confirm, I stick the Crucial stick into Slot 2, and the thing won't POST properly. First three attempts, the computer won't even activate the monitor, the fourth and fifth, it does activate the monitor, but the initial BIOS screen (the one where the memory is checked in the POST when you disable quick boot) looks all corrupted-like, with strange characters littered across the screen. I stuck the Crucial in Slot 3 to see what that would do, and the first time it freezes around 88MB during the RAM check (I left quick boot disabled), the second time it POSTS successfully.
    So maybe something on the motherboard went bad such that using Slots 2 and 3 causes these problems. This model is pretty old, so does this problem sound familiar? Is it possible? I don't know the hardware architecture well enough to guess whether it's likely.
    (I have BIOS revision 2.7)
    EDIT: And after trying all those configurations, going back to the original configuration, (Slot 1: Crucial, Slot 2: Kingston), it STILL beeps at me like before.
    EDIT EDIT: *sigh* and now, trying the second configuration again (Slot 1: Crucial, Slots 2 and 3 empty) just so I can use the computer again, I get errors when I try to boot. Booting to the OS I already had installed, I get the Windows screen with the moving blue boxes, and then after that nothing, and whenever I try to install a new copy of the OS from disc or repair I get a BSOD. It says IRQL_NOT_LESS_OR_EQUAL. I've no idea what that means.

  • Itunes wont sync my music on 5S Apple YOU HAVE A BIG PROBLEM

    Hi,
    Apple YOU HAVE A BIG PROBLEM !!!!
    Having tried all proposed solutions found in the communities, but none of all didn't work !
    I had no problem at all on my previous 4S with IO 7.0.2 , but since last week I get my brand new 5S with IO 7.0.4 & its only a mess to sync all my music on this phone . Latest Itunes is installed on my computer.....
    All music albums are on my 5S, but marked with this red circle with a red dot in the middle ...
    It's a shame that no solutions works & that Apple didn't react to help all the customers to fix this bug!
    I hope that someone @ Apple will read this ....

    This may sound like a terrible solution, but have you tried switching the file format to .m4a (itunes default format) on all of your music?
    If not, it just might work.

  • Big Problems with Vista and Audigy

    Hello.
    My name is Jana and I'm from Germany. This board is my last hope now.
    I have big problems to use my audigy 2zs in Vista Business (32 bit).
    I use the latest driver from 9.3.07.
    The installation process works fine and I get no errors. But I can't start the AudioConSole . I always get an error, that no audio device was found (error message is german)?!? The device manager shows no problems and the audigy 2zs is correctly listed.
    I need this AudioConSole to activate the 5. speaker settings. In the sound preferences in Vista is that not possible.
    My speakers also need the creative software from cd to activate the bass, but I when I install this software and then restart, only a few programs are installed (but they don't work). I need especially the speaker settings but there is unfortunately no way to install this software.
    I did this procedure at least 5, 6 or 7 times, but it always don't works.
    So please can you help me?
    Sry for my bad english.

    Hmm... Try to redownload the drivers from the website, because Creative has updated them to include a proper signature. It is possible that the drivers do not load if they are not signed, which would explain why the AudioConsole does not launch. Also, Windows Vista does the Bass redirection by itself:? If you select 5. speakers from the standard Control Panel, you will be asked whether you have satellites or full-range speakers. Selecting satellites means that the lower frequencies need to be played by the Subwoofer instead. If that still doesn't work, you can do the following:? Extract the downloaded drivers using WinRAR (or similar) (right-click and then extract). Then go to the Subfolder "Drivers\wdm\common\i386"? and run "CtPanel.exe". From there going to the speakers tab there is a "BASS-M" option...

  • Big problem with new WD Caviar Green HDD, please advise!

    I bought a new Western Digital Caviar Green HDD 1TB, ( WD10EADS ) it is a SATA 3Gb/s interface HDD, 3.5-inch form factor. the RPM = IntelliPower (NOT 7200 RPM or 5400 RPM which means Rotate automatically depends on the needs of fetching data I suppose?)
    I acknowledged that this series of HDD which three of 6 have the same Power Management which Read/Write = 4.9W / Idle = 2.8W / Standby = 0.4 W / Sleep = 0.4W
    They are differ from the other 3, which 500GB one is 4.1W / 2.2W / 0.8W / 0.8W and 1.5TB is 4.73W 2.75W / 0.72W / 0.72W; 2TB is 6W 3.7W 0.8W 0.8W
    Which mean the Standby and Sleep mode are the same state.
    Now my big problem is, I bought an external dock SI-7908UI for this WD Caviar Green HDD.
    ( http://www.ssi.com.tw/product_content.aspx?id=92 )
    So I first put the HDD into the SI-7908UI Dock ( USB 2.0 / eSATA / Firewire 400 /800 )
    I tried many way of sequence of who power on first? WD Caviar Power on first? or Mac mini Power on first? I found that the best way is Mac mini Power on first, then Power on the external HDD.
    OK, before I address my big problem, I should let you know, I found that there is NO S.M.A.R.T. working when you put a S.M.A.R.T. HDD outside the Mac or PC. In Dock, the S.M.A.R.T. won't work, That's how I saw in System Profiler, the FireWire tab says " S.M.A.R.T. status: Not Supported "
    and I did test a Non-Green Maxtor HDD, the S.M.A.R.T. doesn't show either. You'll need this info before the real problem I'm gonna say in the following.
    NOW, about 10~15 minutes after my Mac mini boot, if I didn't fetch anything from my external HDD, it would goes to sleep itself, that confirmed that the Specification Sheet was true, the Idle = 2.8W and I believe it goes to Idle, NOT Standby or Sleep, which I also believe the Standby or Sleep signal is supposed to be given by Mac OS, but it sounds like Standby or Sleep, BECAUSE the WD HDD suddenly not rotate and the sound it appears that it goes to SLEEP, am I right? I keep Mac awake by browsing the web so Mac mini won't go to sleep (I set 10 minutes in Energy Saver and I checked Put the HDD to sleep when possible)
    Well, That is my big problem when WD Green HDD goes to sleep, because I CAN'T wake it up, NOT eject or Shut down the Mac mini. (OK, I'm NOT sure if it goes to Sleep or Idle)
    First I thought it freezes the whole Mac OS, then I found I still can move many things, such as I am doing right now, post this big problem here. but I am sure the others are freeze! and no matter how many time I click Shut Down or Restart or Force Quit, the Mac mini didn't respond.
    I tried to figure it out because I don't want to Shut Down by force.(5 seconds Press the Power button)
    then I found that if I power down the external dock 7908-UI when Mac fail to shut down/restart/or eject the external HDD, It worked.
    And the Mac OS will appear a window says that "I shouldn't unplug an external device without Ejecting it first" something like that. and suddenly it shuts down very quickly, everything back to normal, it shut down successfully.
    What am I gonna do with this? Am I going to power down my external HDD first every time I want to shut down/eject/restart? Because the Eject the external HDD will cause freeze too! Freeze Finder I suppose.
    Is it caused by 7908-UI ? or Caused by WD Caviar's Green Power management?
    Because I don't trust 7908-UI, it doesn't look like a trusted brand, I've never heard of this SSI company anyway.
    What am I gonna do? Please advise.
    Thanks in advance.

    Please realise that I am not the right person to be asking. I pointed you to a thread where, as a Moderator at the Bombich forums, I felt the need to warn users of CCC that a WD drive might cause problems. The thread mainly just copies what WD have said.
    Obviously your drive will respond/awake/spin up when you access it manually. Some of the problems are...
    •  Most users want to be in control of whether and/or when a drive sleeps -- WD's auto-sleep cannot be disabled and so precludes that.
    •  Most users want their drive to obey settings in Energy Saver -- the WD auto-sleep mechanism doesn't allow that.
    •  Most users want a scheduled cloning/backup to take place during the night. The cloning app starting the backup process should cause the target drive, if sleeping, to wake/spin up so that the process can take place -- it does for all drives except WD drives where the auto-sleep mechanism used doesn't allow it. LaCie drives, for instance, have auto-sleep +as an option+, during which the drive will respond to Energy Saver settings and to software such as a cloning app.
    Please, Mauricette, put you questions/concerns/problems to the reseller or to WD, both of whom took your money without warning you. I am NOT a WD expert! ...or lover! ( )   I became more than disenchanted when I saw that a) WD do not point out the limitations of their external drives at point of sale, and b) WD put the blame for these inadequacies/problems/limitations onto Apple, ignoring the fact that no drives other than WD drives have them. 
    Andreas

  • Big Problem with Mighty Mouse

    I'm having a rather big problem with my wired Mighty Mouse. Basically, the middle button is the only top button that works, and clicking with the left or right side does nothing but activate the middle button instead.
    Here's the nitty gritty...
    The reason I can assume this happening is because I cleaned the scroll wheel to un-stick it. I did this by getting a sheet of white paper, turning the mouse upside down, and rubbing the wheel all over the paper, which left paths of dirt and fluff everywhere. Worked great, and the scroll wheel now works perfectly again.
    The mouse worked fine after that which is what makes this problem odd, but later that night, all the top buttons just started acting as one middle button... So, (using my tablet) I changed the setting for the middle mouse button in the preferences to 'Primary Button'.
    Now basically what I have is a one button mouse (with side squeezy things).
    How do I make the left and right buttons work again? The preferences are set up fine... as in the right side is assigned to 'Secondary Button', etc, but it still only works as middle mouse.
    Any ideas or help would be really appreciated!
    Cheers
    Cuby

    If you are going to replace it, consider getting a plain old optical mouse that uses Apple's built-in generic USB mouse driver. I like the ones from Microsoft that have two buttons, a clickable scroll wheels, and that's it. This is the one that I use now.
    [Microsoft Optical Mouse (Blue)|http://www.amazon.com/Microsoft-K81-00004-Optical-Mouse-Blue/dp/B000068M P2/ref=sr11?ie=UTF8&s=electronics&qid=1244701238&sr=8-1]
    It is reliable, comfortable, and sturdy. I've never cleaned it. And it's so cheap. I had a different basic Microsoft mouse before, and the only reason I got a new one was because I wore out the pads on the bottom that let it slide around.
    Tip: Apple's generic USB mouse driver does not seem to have way to set the center button click. But if you set it to something when the Mighty Mouse is connected, that setting seems to continue to work with the generic mouse. Mine is set to do Exposé.
    Not sure why you cannot do +reset PRAM+. If your internal speaker volume setting is muted so that you do not hear the startup sound, you need to turn up the volume a bit. The startup sound is your indicator (when you hear it for the second time) that you can let go of then four keys.

  • How do I resolve Playback Error Message: "Problem syncing MIDI with audio."

    I recently bought the Nexus2 instrument. After backing up all my files last week, the Nexus content wasn't being read (it aparently got moved somehow), and I had to contact their support to resolve the problem. As soon as that problem got fixed, Logic quit playback altogether. Everytime I hit Play, I just get an error message that says "problem syncing MIDI and audio," and the the only sound coming out of the speakers is a high-pitched humming. How do I go about fixing this?
    thanks,
    Shane

    Check your Internet connection.

  • Big Problem with KT4V. PLEASE HELP!!!!!!

    Hello ewerybody.
    At first I describe you my confiugaration.
    KT4V Mainbord
    AthlonXP 1700+
    256MB DDR 333
    Segate Barracuda 20GB
    CD-ROM LG 52X
    Power Supply 230V
    WIN 98SE
    And now the problem.
    It appears when the procesor is set to XP 1700+. After the temerature of processor rise obove 55 C my computer is shutdown automaticly even if the bios option "critical CPU themerature" is disabled. When it happens something like alarm siren goes off. It is one high and one low sound.
    Another big problem is dramaticaly low ( even 20% - after one hour work ) "system resources". I dont know if it is call like that in english so it is START->Settings->Control Panel->System->"performance".
    Please help!!!!!!!!!!!!

    First thing you might want to do is get a new PSU. Anything under 300W is pretty much going to make for an unstable system for any processor like yours. AMD recommends(if I remember correctly) 300W or better and also read up on this sticky, I think it will help you out.
    http://www.msi.com.tw/program/service/forum/index.php?threadid=1131&boardid=13&styleid=1
    Especially the Power Supply paragraph  8)

  • There appear to be big problems with Mavericks Mail, particularly if it's used for Gmail. Have other users noticed that it slows to a crawl and can't reload the contents of a folder instantly....Is there a fix coming?

    There appear to be big problems with Mavericks Mail, particularly if it's used for Gmail. Have other users noticed that it slows to a crawl and can't reload the contents of a folder instantly....Is there a fix coming?

    There is a large thread relating to Gmail, but nothing that sounds like that.
    Nobody here knows what Apple is going to do.
    You might try removing the Gmail account and then add it back in.

  • 6533- 2 Big Problems :(

    Hey all.
    My first big problem, is that when i put in 2 items into the 2 available PCI slots in my motherboard, the PC wont start.. the lights will come on, and it will sound like its working, but nothing will show up on the screen. If i take one item out, so theres only 1 PCI being used, then the computer will start up fine..it doesnt matter which PCI slot the item is in either.
    Anyone able to help?
    My other problem is..
    due to not being able to use 2 PCI slots, i had to take my Creative soundcard out, so that i could use my wireless network card. I had had the sound card in for a while, but it didnt come with the PC.
    After taking the sound card out (i uninstalled all the drivers aswell) i restarted the computer, expecting the computer to find the onboard soundcard, but it didnt. Theres no yellow ! in device manager, and the oboard sound function is enabled in bios. Ive also tried installing the right drivers (i think theyre the right drivers anyway) but nothing changes... even if i press the "scan for hardware changes" button, and it finds nothing!
    Anyone have any solutions for either of these problems? either problem solved will be gr8, i just want my sound back!

    oooh how life hates me!
    right, i took the soundcard out of the other computer, took put the modem in this computer, and put in the soundcard, and for some reason, this time it worked, so i went downstairs, plugged that computer back in, and....guess what...its dead...it wont start up...i think the power supply is dead..when is witch it on at the back, the power supply makes a sad little noise, and the computer wont start up..at that point, im very pissed off, so i come upstairs, restart the computer with the soundcard now working, because id just installed the drivers and it needed a restart, and what do you know, the computer wont start up again! so i had to take the soundcard out, put the modem in, and its now working again.
    so now, im left with one dead computer, and one computer with no sound, instead of before, one fully working computer, with sound, and one fully working computer without sound...man i hate computers!

  • 8900 curve CALENDAR BIG PROBLEM

    Hello. Scuze me if my english isn`t so good. I have a big problem with my agenda(calendar). If for example i have an alarm set to 12:00 it`s possible (not always but in most of the cases) that the phone  give me  another alarm for another hour or even another day. This alarm it`s written first and whne i push the o.k. button the phone give me the original alarm. The problem is very annoying because after that  the false alarm doesn`t ring at her time. I couldn`t get a pattern  and i don`t know what causes this. It`s important for me because I use this phone as a bussiness phone and agenda(calendar) was always very important for me and i choose my phones because of their agenda. I must tell you that i think that this problem is not so rare because i had another 8900 curve with the same problem. I was with it with one problem of  sound quality and this problem at an authorized service and i told to the man at the service about this problem and he said that it is a software problem. In 4 days I receive the phone back with the same problems. I came back at the service and i give it back. In 4 days I get a new phone but SURPRIZE with the same problem. Please verify your phones. Put many alarms and see if they are the same or if you know the solution please help me to solve this problem or simply tell me where should I ask for help.
    I must tell that the problem are with alarms and not with apointment. I use alarm because i have more than 20 of a day at work.
    Thank you very much.
    Claudiu

    It`s diificult for me to answer because i don`t have my phone right now. It is in service again. The same problem with the sound and I told them again about the `alarm` problem.Maybe i will receive again a new phone.
    Answer for the first question: I use several alarms every day and for most alarms - not all - that are configured to ring i receive first the text for another alarm, alarm which is configured to ring later at another hour or day and hour, alarm which will not ring anymore at her time to ring  this is very annoying because i lose the alarm and my meeting program is tuined. What happens next, second event is the fact that  If I push the o.k buton i receive the original text for the right alarm.   
    Answer for the second question: I bought my bberry device an year ago, before that I use another tipe of phone ten years. I hope that i answer exactly because i told you before that i don`t have my phone rigth now. I cannot use the hour schedule (meeting) because i have many tasks to do and this require events of 5 minutes or less that1s why i use alarms. It`s not the clock alarm. In my organizer menu i have the comand new alarm..i can tipe the name of the alarm and the hour. With this kind of alarms i had the problem. Yes are the same type as the clock alarm but the organizer permit many alarms of that type. It`s easyer to organize the shedule with alarms of that type.
    I hope that you understand what I write.
    Thank you very much
    Claudiu

  • SB Live! Value, big problem

    Hi all,I've got a very big problem with sound. I have no sound on my computer, not at all. I have been reinstalling the drivers about 20 times, but it doesn't help. The speakers are plugged in, everything seems to be right, but I have no sound. It worked all perfectly till 2 days ago. I haven't installed SP2 or anything,?it was already here when it worked. But?at once there came an error and there was no sound anymore. I had no sound, so I deleted the drivers and installed them again. Since then, nothing works anymore. Reinstalls, repairs, nothing works. Also when I start the mixer, there is a ctdevcon.dll error. When I start the audioHQ : ''cannot initialise audio driver, please reinstall''. Diagnostics results : everything passes, except Mixer Driver, Soundfont Setting, and Mixer Settings Check. Please, I'm really frustrated, help me!?Sorry for my bad English,,,?
    ps.
    when I click on ''Begin Fix'' at Diagnostics?it says that some files are missing or having problems, please reainstall. But when I reinstall, it happens again.Message Edited by element93 on 05-7-200702:55 AM

    Try these uninstall/reinstall steps from this Knowledgebase article SID72. Hope it helps you.
    Jason

  • Invite to Apple Developer Team (member role - big problem)

    We have finished and approved an app for a big client that have an Apple Developer Company account (yes, they have many app just published on Apple Store).
    Now i have to build the app but they only send me an invite to Developer Team with a member role (i can only download provisioning certificates no other).
    The big problem is: how to use their P12 certificate if i can not build from XCode?
    Please it's very urgent!
    Really thanks.

    It sounds like you need to talk to the person at your client's company who is responsible for creating iOS certificates. Ask them to create an App ID (if it doesn't already exist), provision files, and push certificates. You'll need to obtain the p12 certificates and passwords in order to build the app. I don't think you can do that with your member sub account.

Maybe you are looking for