Package java.applet

Examples of java.applet.AudioClip.loop()


                    }
                    switch (d) {
                    case SLOW1:
                    case SLOW2:
                    case SLOW3:
                        slowRumble.loop();
                        break;
                    default:
                        slowRumble.stop();
                    }
                }));
View Full Code Here


            //you need an au file format to use this method
            URL url = new URL(
                strFileName);
           // "file://" +   System.getProperty("user.dir") +   "/src/edu/uchicago/cs/java/lec10/playsounds/snds/samisen.au");
            AudioClip clip = Applet.newAudioClip(url);
            clip.loop();
    
            //clip.play();

          
            //Thread.sleep(Long.MAX_VALUE);  //this is ugly, but it works without throwing an exception
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.