No sound - urgent!!!!!!

hi!
could someone help me? i have flash 8 for mac and i don't
have sound when i run my swf files. i don't know what's happened.
thanks!

OK, we're going to need a lot more information here. How are
you using sound in your movie? How are you playing the sound file?
What do you expect to happen in your movie?

Similar Messages

  • Need simple flash that plays a sound, urgent!

    Hey,
    I haven't worked with flash for a long time and don't have it installed on my computer... But I need a very simple flash to can play a sound once.
    All it should do it so recive an url to a wav file and play it without display anything, thats it. So if anyone here could make on it would help a lot as I won't de able to do it myself.
    It is very urgent and the background to this problem is that i have a website that should play a sound at a certain time but the technic I use now don't work on all computers/browsers/security setting (or what ever the problem is that I can't find). There was a complicated flash before that worked but it was  to hard to update with all logic so I had it replaced so that the logic is on the page and not in the flash.
    Hope you can help me.
    Filip

    var snd:Sound=new Sound  ;
    var channel:SoundChannel = new SoundChannel();
    var isplaying:Boolean=false;
    var req:URLRequest=new URLRequest(soundUrl.text);
    var pos:Number=0;
    loadSound.addEventListener(MouseEvent.CLICK,soundLoad);
    function soundLoad(event):void{
    snd.addEventListener(IOErrorEvent.IO_ERROR,ioerror);
    snd.addEventListener(Event.COMPLETE,oncom);
    snd.load(req);
    function ioerror(e):void {
    infoBox.text=e.text;
    function oncom(e):void {
    //infoBox.text="file is reday";
    play_mc.addEventListener(MouseEvent.CLICK,soundplay);
    pause_mc.addEventListener(MouseEvent.CLICK,soundpause);
    stop_mc.addEventListener(MouseEvent.CLICK,soundstop);
    function soundplay(e):void {
    if (! isplaying) {
    channel=snd.play(pos);
    isplaying=true;
    function soundpause(e):void {
    if (isplaying) {
    pos=channel.position;
    channel.stop();
    isplaying=false;
    function soundstop(e):void {
    if (isplaying) {
    channel.stop();
    isplaying=false;
    pos=0;
    Enter the file path  in the text field above
    U can find the fla here  http://www.4shared.com/file/T1HuYo5N/sound.html

  • Loss of sound - urgent help needed

    Suddenly sound has disappeared from track four (have tried other tracks to no avail). I have tried everything but have obviously missed something. Please see jpg of audiomixer http://tv-moen.dk/audiomixer.jpg and http://tv-moen.dk/timeline.jpg
    Sigurd

    Your quick response is appreciated. It now appears that my system soundsettings were at fault and there was nothing wrong with the exported material. I do apologize for making this topic but in my frustration I could not see the forest for trees. This topic is therefore best deleted.
    Sigurd
    PS your observation on 1:31:11 led me to investigate from scratch. Thank you.

  • Urgent Help no sound

    Urgent Help required
    G4 power book latest IMove 6 updated etc
    Started to edit an existing project to day, but cant here any of my imported audio, blue boxes ticked etc. Quit the project, ran disk utilities no problems restarted still no Audio. Opened 6 other projects no sound on them either
    Very puzzled, Have made 70 or more IMoves in the past so am not a beginner !
    Any suggestion as am due to start a new project tomorrow
    James

    I posted this same answer in iDVD for you...
    I am not sure it will fix all of your problems, but I would certainly try deleting the preference files for iDVD. (Don't worry-new ones will be made once you open the program again)
    Close all iLife Applications.
    Go to Users / Library / Preferences / com.apple.iDVD.plist
    Drag it to the trash, empty the trash, run disk utility to repair permissions, re-boot and it should work.
    Then do the same for the imovie prefences.
    Sue

  • URGENT!-sound only in iDVD

    this is only the second URGENT post i have ever made, so this i REALLY urgent,
    How can I have sound only in iDVD?
    can i move it to iTunes and burn a CD?
    I REALLY need an answer TODAY because this is project due tommorow
    thanks for any help

    Hi Apple - just a small addition to my instruction - in number 3, above, after selecting 'Sound to AIFF'. also in the 'use' box, choose '44.1 khz 16 bit stereo'.
    You can save that to the desktop, maybe, then in iTunes, Add to Library, then burn to CD, making sure that in iTunes Preferences, you have selected Advanced>Burning>Audio CD.
    Remember, to burn that 'song' (or whatever it is) you must place it in a Playlist.
    Let us know how you got on.

  • Please Urgent sound applet in jsp problem

    Hi please any body hekp me urgently.
    I have a problem while playing a sound applet in the jsp file the error is class not found.
    My applet class file is in the com.mypack.common
    its code is
    public class PlayErrorSoundApplet extends Applet
    public PlayErrorSoundApplet()
    public void init()
    public void playSound()
    String soundObj = getParameter("soundObj");
    AudioClip sound = getAudioClip(getDocumentBase(), "success.wav");
    sound.play();
    in the jsp i have written the code like this
    <applet codebase="com.mypack.common" code="PlayErrorSoundApplet.class" name="soundApplet" width="0" height="0">
    <param name="soundObj" value="error.wav">
    </applet>
    In the applet console i got class not found error.
    please help me .....advanced thanks......

    actually, codbase is a directory. so
    <applet codebase="com/mypack/common" code="PlayErrorSoundApplet.class" name="soundApplet" width="0" height="0">
    <param name="soundObj" value="error.wav">
    </applet>this means you have something like
    pacakge com.mypack.common
    public class PlayErrorSoundApplet {
    Make sure to put the html file in the root directory of the package structure
    /myhtmlfile.html
       /com
          /mypack
               /common
                    PlayErrorSoundApplet.class                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Urgent Help Regarding Using Sound Files

    Hello,
    Using Java is it possible to
    a) represent a .WAV file in WAVE FORM Format (Graph) output.i.e to represent a
    audio file pictorially.
    b) Spilit a .WAV file into n small pieces or portions.
    Please guide me in this regard.Its Urgent
    Thankz

    Hello,
    Using Java is it possible to
    a) represent a .WAV file in WAVE FORM Format (Graph)
    output.i.e to represent a
    audio file pictorially.Open the AudioInputStream, read the AudioFormat, then read the frames one at a time and plot the data.
    Here's some code that plays a wave file using the AudioInputStream. Java Sound, see reply 2. this shows how to open the file and get the format, it just plays it, but is able to plays it, but it does read frames. This should provide a start for you.
    b) Spilit a .WAV file into n small pieces or portions.Yes, see the classes in package javax.sound.sampled.
    >
    >
    Please guide me in this regard.Its UrgentDon't mark your posts as urgent, don't cross post.
    ThankzYou're welcome, hope this helps

  • TS1382 my ipod got wet and allow time to dry, I turn now the musics and sound and everything but the screen is blank and nothing is visible. a solution please urgent.

    my ipod got wet and allow time to dry, I turn now the musics and sound and everything but the screen is blank and nothing is visible. a solution please urgent.

    See my reply to your other post

  • MPEG2-DVD / Sound cut off *urgent*

    Hi everyone
    I have a very urgent problem which makes me lose my hair...
    We have 190 minutes of 1920x1080 25p footage which we edited in Premiere Pro.
    I then proceed to export the files into MPEG2-DVD using 2-pass VBR with 1,65/4,2/6.25 bitrate (according to an online bitrate calculator).
    I multiplex the sound into the MPEG-2 file.
    When I import the timeline into Encore, it correctly tells me "do not transcode".
    BUT the sound cuts off short of the video. It does it for every chapter. I cannot 'extend' or 'pull' the sound to the length of the video.
    First chapter is 24:19, sound cuts off at 23:15.
    Anyone got an ìdea what I am doing wrong?
    Any help is greatly appreciated!
    Michael

    I'm in complete agreement with Jeff here as well - selling PAL discs in the US will sooner or later cause problems.
    Priobably sooner.
    In the old days you would not get the player to even load them - it would throw a "no disc" or another error of some description - and even when you did find the odd rare one that would load them, the TV systems would make sure you got a garbled image, or a B&W one. These days a good Universal Player will usually load all types (although again a regular DVD player will most likey still not go for it) but you will still have TV system issues.
    The problem is the mains frequency - PAL (Europe) uses 625 lines and 50Hz whereas NTSC uses 525/60, which effectively means PAL runs at 25 frames/second & NTSC at 30 frames/second. The 2 are incompatible. Most PAL players can handle both formats either by outputting NTSC discs as PAL-60 or even genuine "on the fly" conversions to 525/60 NTSC.  The process is not straightforward either - the player is handling scaling, temporal conversion and object motion analysis all at once (Hence why most PAL setups output NTSC as PAL-60 instead of pure 525/60 NTSC) and additionally the audio speed must be adjusted (remember DVD is a multiplexed set of VOB files, not separate streams) to conform to the different display rate - which may also prevent the use of a digital connection!
    This type of conversion is much, much less compatible the other way around. Most NTSC players still cannot play PAL discs (although as I have said a Universal BluRay player may do this) and only a very small number can convert 625/50 PAL to 525/60 NTSC.
    Let us now talk about MPEG audio & why it is not recommended to use it. This gets complex.....
    MPEG audio is a multichannel format using perceptual encoding at 16-bit 48KHz. MPEG-1 Layer II and MPEG-2 BC (backwards compatible) are the only allowed forms and the MPEG-2 that is allowed - BC - is a matrixed format, not discrete, in surround use. Use of this type (MPEG audio) was only ever optional in NTSC, never mandatory (so that is one big problem) and the other big problem is that MPEG-2 audio is only allowed in BC mode. Why is this evil? Take a seat & let me try to go through it.
    Because MPEG-2 audio decoders were not available at the time of DVD introduction, MPEG-1 was the only decoder available so that was what got used. As a result, the only permissib;le type of MPEG-2 allowed is BC, which is a matrixed stream type (the 5 main channels are matrixed into Lt/Rt stereo streams) and then encoded in the normal MPEG-1 Layer II format for DVD. The advantage to this is that a multichannel stream can be phase matrix encoded so that it will also play on a stereo system. MPEG provides pre-determined matrixing formulas depending on the intended audience - one is a conventional stereo signal, another is designed to deliver a Dolby Surround compatible (*not* Dolby Digital - that is something very different) system that re-creates the centre channel fronm the left/right channels in addition to a single rear (or surround) channel (Nerdy Note - this is actually a development of the old SQ Quadraphonic matrixing system, set up for LCRS instead of L-R-Ls-Rs). Additional discrete channel information, plus the LFE channel, is encoded in an extension stream so that an MPEG-2 decoder (not MPEG-2 Audio) can recreate 6 separate signals. Because of the necessity to be backwards compatible with MPEG-1 decoders the centre & surround channels that are matrixed into the 2 MPEG-1 channels (left & right) are duplicated in the extension stream. This allows the MPEG-2 decoder to subtract those signals from the matrixed signals, leaving the original Left & Right channels. All this adds an overhead of approximately 32kbps, making it rather inefficient.. The original 2-channel MPEG-1 encoding process was not developed with matrixed audio in mind and therefore may actually remove surround detail. Also, the process tends to expose coding artefacts as well so coupled with the whole shebang only ever being optional in NTSC 525/60 systems means that to use this as your solitary stream type is actually out of spec for 525/60 regions & players may well take one look at the disc & output...................in short, just a picture. And if that picture is 625/50 PAL, quite possibly not that either.
    Audio support in DVD.
    MPEG-2 audio is basically not supported except in BC moide, which hands everything over to MPEG-1 decoders. This is not good. It is not efficient, it can be riddled with artefacts & it is not supported by fiat in NTSC regions, only optionally. If it is your sole stream you will run into trouble sooner or later.
    I hope this helps, and I think I will go away & write a little article about this as it keeps cropping up every so often..

  • Urgently needed sound engineer based in Paris

    Hi everyone,
    The Eau de Gammes Label is urgently seeking a sound engineer familiar with Audition for session based in Paris France
    Please contact us at
    [email protected] or [email protected]
    Bonjour,
    le label Eau de Gammes recherche urgemment un ingé maitrisant Audition pour des séances rémunérées sur Paris.
    contactez nous à
    [email protected] ou sur [email protected]
    merci d'avance

    Is degree manditory requirement, or will industrial experience compensate for the lack of?

  • One edge animate oam file with sound no work in muse, I need urgent help please

    (I speak spanish and I translate this with google translate, sorry.  Try to understand)(I can read english)
    A sound file oam place it in adobe muse does not work, how can I do. In works right edge Animate and when I preview in the browser looks perfect and 100% working well but when I step by Muse does not work. When I pass the file to Muse, you can see placed in the page design, but when I preview I do not see anything in the file that I placed. When I tried it without sound if it worked but after you add sound and replaced it with the new file (delete the old file and place the new) no lifts. I implementación.oam public with package, and then drag the file created page design muse.

    Try unplugging the AC adapter, removing the battery, then holding the power button down for a minimum of 30 seconds.  Then plug the AC back in and try to power it up.  If it does, good.  If not, repeat the proceedure only time only plug the battery back in.  If this still doesn't work you'll need to send it in to either Toshiba or to some repair shop that has an EProm burner such as http://www.aqstech.com/ as you won't be able to fix it at home.
    And next time DO NOT FLASH FROM WITHIN WINDOWS.  NEVER, EVER, EVER, UNDER ANY CIRCUMSTANCES FLASH A BIOS UNDER WINDOWS.  Always flash a bios from an actual Dos Prompt.  The BIos File from Toshiba provides instructions inside the Archive once you decompress it on creating a Bios Flash CD (and you can use a ReWritable CD-RW so you don't waste a disk) that should be used. 
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • How do you change a device's name in the sound setting? For example, Let's say I want to change " logo headset" to "log microphone." Please help it's urgent!

    How do you change a device's name in the sound setting? For example, Let's say I want to change " logo headset" to "log microphone." I need to do this in order for Rosetta Stone to recognize my USB Logitech headset. I'm extremely confused. Please, just help.

    It is very difficult to offer troubleshooting suggestions when the "os version" you are using is unknown as each os has their own troubleshooting solutions.
    You can also post in your installed os section of the message board.

  • URGENT - HANDLING SOUNDS IN JWS

    Hi
    I am done an application with runs fine in Java Web start. I have used some sound files in that which playing using JMF. I have jared all the sound files and which downloading properly in client machine.
    But i am getting the following Exception while reading the files :
    # JMF Version 2.1
    ## Platform: Windows 2000, x86, 5.1
    ## Java VM: Sun Microsystems Inc., 1.3.1_02
    XX Unable to create a playerjavax.media.NoPlayerException: Cannot find a Player for :jar:file:/d:/Program Files/Java Web Start/.javaws/cache/http/DEdward/P80/DMeconomy/DMsjar/RMsound.jar!/01C1a_01.wav
    XX Unable to create a playerjavax.media.NoPlayerException: Cannot find a Player for :jar:file:/d:/Program Files/Java Web Start/.javaws/cache/http/DEdward/P80/DMeconomy/DMsjar/RMsound.jar!/01C1a_01.wav
    Please, help us for furture proceedings.
    Thanks is advance
    Edward.I

    This may be caused by the bug:
    4778185: JNLPClassLoader can still return unencoded URL
    If you look jar url you got back, it's not a legal url,
    because it has unencoded spaces in it.
    To test this:
    use the preference panel in the Application Manager to move your javaws cache into a location without a space in the path name.
    If that fixes it, you can work the problem by reconstructing the URL replacing the spaces " " with "%20" after it comes back from findResource.

  • URGENT - HANDLING SOUNDS IN JWS -JMF

    Hi
    I am done an application with runs fine in Java Web start. I have used some sound files in that which playing using JMF. I have jared all the sound files and which downloading properly in client machine.
    But i am getting the following Exception while reading the files :
    # JMF Version 2.1
    ## Platform: Windows 2000, x86, 5.1
    ## Java VM: Sun Microsystems Inc., 1.3.1_02
    XX Unable to create a playerjavax.media.NoPlayerException: Cannot find a Player for :jar:file:/d:/Program Files/Java Web Start/.javaws/cache/http/DEdward/P80/DMeconomy/DMsjar/RMsound.jar!/01C1a_01.wav
    XX Unable to create a playerjavax.media.NoPlayerException: Cannot find a Player for :jar:file:/d:/Program Files/Java Web Start/.javaws/cache/http/DEdward/P80/DMeconomy/DMsjar/RMsound.jar!/01C1a_01.wav
    Please, help us for furture proceedings.
    Thanks is advance
    Edward.I

    In order to enable JMF to play media from inside of a .jar file, take a look at Chris Admason's article: "self-playing media with Java media framework" at www.Onjava.com (10/09/02).

  • Urgent Help! DVD distorted sound with Creative 5.1 External

    Hi there
    new to this board, i recently purchased the Creative Soundblaster Li've! 24bit 5. External Card and am having difficulties playing a DVD. Whatever program I use, i get some serious distorted 'hiss' sound throughout the movie. Any DVD does this. and its only DVDs, other movie and audio files are fine. If i disconnect the external card and just use my original on-bard card, it works fine too.
    Any idea how to fix this?
    Thanks

    ishiiyuto,
    As I understand it, the USB port doesn't have enough badwidth to handle DVDs with AC3 sound. See the post by Jeremy-CL here.

Maybe you are looking for