Controlling my sound clips

Basically i have 4 buittons within my movie. Each button goes
to a different frame within the timeline. What i want to happen is
when you go to one of the 4 points in the movie it plays a
different sound.
The problem i am having is that when u hit one of the buttons
the sound plays fine. But then when you hit another button the new
sound just plays over the top of the last sound. How can i stop the
previous sound clip playing when you hit a new button?
Thanks in advance

Not sure exactly how you built your movie, but I'm going to
assume that you have placed your sound clips on the timeline. If
so, then on the button code, add the following before the
gotoAndPlay() method:
stopAllSounds();
This will stop the current sound and then go to the frame
where the new sound is queued to play. There are other ways to
incorporate sound using the Sound class, but you need to know a bit
about ActionScript (even though it's not that difficult to learn).
The Sound class will give you a lot more control over your sounds,
so it's advantageous to learn about the Sound class if you are
going to do more than simple manipulation with your sound files...
Good luck,
Albee

Similar Messages

  • Can the Sound Object control two sounds at once?

    I have a sound object that I want to control two seperate
    sounds in different movie clips..one is intro music which lives on
    the main shell of the website along with the sound object. This
    fades out into a loop that lives on another movie clip that loads
    into the shell on a loadMovie action naturally.
    My goal:
    To control both sound clips with ONE sound object living in
    the main flash site's shell. Can this be done or would I have to
    have two seperate sound objects for each sound clip?
    Thank you,
    Dayton

    You could write a fairly simple class that would act as a
    wrapper for the sound class. In this class you would let it define
    the 2 sound objects but then you would only need to use call to the
    class object to control both. This could also be expanded to
    control more than 2 sounds. It is not exactly what you were hoping
    for but in the long term it would simplify sound control and be
    reusable in pretty much any setting that required sound.
    Tim

  • How do you move a sound clip in the timeline?

    I have not had this problem before. I have put many songs into the timeline, and repositioned them. Today I pulled up a project and attempted to reposition a song to fit in better with the clip, and I'm unable to do so. I can't select the song, or anything else. Obviously I have set or locked up this track, and I can't figure out how to unlock if that is what I have done. I have 6 songs on that track, Audio track 2, and I can't reposition any of them. I can't even remove them from that track. What am I doing wrong?

    Hunt, most of my music files, over 9000 songs, are mostly mp3 files and a few are wma, and because of copyright laws I wouldn't use them in a commercial project I'm working on anyway. When I am working on a project for a client I will generally use higher quality WAV files. This project was being done just to learn some new techniques, gain some more experience with PPCS4, and expand my knowledge with the program. I have this huge number of music files and styles to work with, so I can do a great deal of experimentation to see what different songs can do to the mood of the video.
    As a test, I did put the exact same songs into the timeline on a different audio track. The problem track is audio 2, and I duplicated those songs on audio 3. I did the exact same editing. I faded them in and out the same as before. Split one song into 3 sections had parts of it come in and out over a video section of 9 minutes duration. They are working perfectly. I was just working on one section of that project a half hour ago, and I was still able to select and move each of the four songs on that track any way that I wanted to. However, the track just above it in that same timeline, Track 2, is still frozen.
    Hunt, just a moment ago I solved my problem. Still not being that familiar with the program, two days ago I know that I was playing with all of the controls, and I obviously hit one of them without knowing one of its side effects. I hit the show "show track keyframes". I'm sure that you know it, but I didn't realize that when that function is selected, you can't do much else with the track but play with those keyframe. Even though I didn't have the track locked, in the traditional way, it was still, for all practicall reasons, locked. I unchecked that function and now everything is back to normal again on that track.
    Something very simple, as many things turn out to be when you understand it. However, maybe someone else will make the same mistake, and my posting here will help them.
    I will use your suggestions for using .WAV files. Thank you again. 
    Terry Lee Martin
    Date: Mon, 7 Sep 2009 14:29:37 -0600
    From: [email protected]
    To: [email protected]
    Subject: How do you move a sound clip in the timeline?
    Terry,
    What is the purpose of using the .WMA files? I'm sure that you have a good reason, but they can be problematic, at best. I only use them as a trasfer medium, when I need to get a DD 5.1 SS soundtrack into Audition for editing. There, I break them out into 6 discrete .WAV files, edit in Multi-track Mode and then usually Export as the 6 discrete WAV's to be encoded to DTS, or similar.
    If you do not have a compelling reason for using the .WMA, try PCM/WAV @ 48KHz 16-bit and see if the issues go away.
    Good luck, and let us know how it goes please,
    Hunt
    >

  • Making a sound clip sync with rest of movie.

    So I solved this problem and realized I posted it under AS3 and it should have been here.  So I figured it may help somone.  All I did was change the setting to "Stream" under the properties panel for each sound clip!
    Making sound sync with my controls
    Hello all,
    This is one of my first flash movies so bear with my inexperience!
    I've made a slide show with three pieces of audio that are set up to play with certain images.  So you can imagine when the video is paused but the sound continues playing everything gets a bit messed up.
    I have each audio on a different layer and none of them overlap, just fade in/out to one another.
    EDIT:  Almost forgot, so how can I get the audio to stop/play along with the rest of the flash file when play/pause is clicked on.  And can I skip forword/backward 15frames in the audio clip as I am doing with the images?
    Here is the AS3 for the back button (gtmf) and foreword button (gtpf)
    stop();
    mc_content.stop();
    gtmf.addEventListener(MouseEvent.CLICK, gtmfs);
    function gtmfs(event:MouseEvent) :void {
    gotoAndStop(this.currentFrame-15)
    mc_content.gotoAndStop(this.currentFrame-15)
    pp.gotoAndStop(1);
    gtpf.addEventListener(MouseEvent.CLICK, gtpfs);
    function gtpfs(event:MouseEvent) :void {
    gotoAndStop(this.currentFrame+15)
    mc_content.gotoAndStop(this.currentFrame+15)
    pp.gotoAndStop(1);
    The play/pause button is a movieclip symbol (pp) with two frames, each with their own AS3.
    Play button (gogo)
    stop();
    gogo.addEventListener(MouseEvent.CLICK, goplaying);
    function goplaying(event:MouseEvent) :void {
    MovieClip(root).play();
    MovieClip(root).mc_content.play();
    gotoAndStop(2);
    Pause button (halthalt)
    stop();
    halthalt.addEventListener(MouseEvent.CLICK, haltplaying);
    function haltplaying(event:MouseEvent) :void {
    MovieClip(root).stop();
    MovieClip(root).mc_content.stop();
    gotoAndStop(1);

    Yep, ain't that the truth....
    Along with the randomness of the HTML elements in general, the relationship between the Flash and HTML are similarly 'independent'.
    I was just wondering if there were some little tricks or methods used by web guys these days, as it seems like clever new techniques or new capabilities in CSS or Flash pop up from time to time.
    Very odd, though...  The interface graphics are very light, yet sometimes the page takes a few seconds to show, and the Flash appears right away (the opposite of what I'd normally expect, when things 'go wrong').
    I still don't get why the SWF shows up (when the rest of the table doesn't), if the rule is true that a table won't show up unless all the content is available.
    Is there some sort of weird exception if the content of a cell is Flash?

  • Sound clip under scrolling frame

    Trying to place a sound clip beneath a scrolling frame in article. Separately, the scrolling frame and image with sound control buttons work fine. Combining the two results in scrolling frame working but sound controls being inactive.
    I've tried layers and mso with a button stating to advance to next state on release of scrolling frame.
    Anyone have a solution for making this work? Thanks!

    Are you trying to put the sound controller behind (on the Z-axis) the scrolling frame, or are you trying to put it below (on the Y-axis) the scrolling frame? Just want to make sure you aren't blocking the controls.
    If you are putting the controller below the scrolling frame, are you sure it isn't being covered by any part of the frame, or some other overlay?
    Screenshots of this would be very helpful.

  • Controlling 2 Sounds independently?

    Hello -
    Does anyone know if it is possible to controll 2 independent
    sounds playing at the same time? I am working with a voice-over
    testimonial and background music. I am only able to control both
    sounds globally to adjust volume. I have tried every action script
    approach I can think of to do it. I would love to hear any
    suggestions, ideas, etc.
    Thanks in advance!!
    Nevin

    Nevin,
    > Thanks kglad - I did try the separate movie clips and
    yes
    > you can invoke sounds seprarately that way - I still am
    > unable to control the volume independently.
    kglad and I are giving you the same advice. As long as you
    use
    independent movie clips to associate with each Sound
    instance, you'll be
    able to adjust the volume of each Sound instance separately.
    > Here is the volume code I tried after setting the new
    sound
    > parameters in the first few frames:
    >
    > bgmusic.setVolume(25);
    > voicover.setVolume(75);
    Did you first instantiate these Sound object like this?
    var bgmusic:Sound = new Sound(someMovieClipInstanceA);
    var voiceover:Sound = new Sound(someMovieClipInstanceB);
    If so, adjusting the volume or pan of either one later would
    only affect
    the Sound instance referenced. ActionScript 3.0 handles this
    in a different
    way, using companion classes SoundChannel and SoundTransform.
    In AS2, the
    sound channel concept is still there, only it occurs by way
    of the
    non-obvious mechanism of movie clips acting as the sound
    channels.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Using iWeb- Do I need a .Mac acct & Does it Support Sound Clips?

    Hi Everyone,
    I am new to the Apple forums. I am returning back to the superior product of Apple after dealing with a very annoying HP for way too long! I was wondering if you can create a web page using iWeb without having a .Mac account? If you can, can anyone tell me if you can add sound clips to the web pages you create? I am a musician and I would like to put some of my music on the web page. Thanks in advance for any help anyone can give me!
    Terri
    PS My computer came with v 1.1.2 of iWeb. I do not have iLife added to my machine.

    ulualoha wrote:
    I was wondering if you can create a web page using iWeb without having a .Mac account?
    Yes, you would sign up with a hosting service such as GoDaddy. Then in iWeb you would do: File > Publish to a Folder...
    You would need an FTP (File Transfer Protocol) program to upload your folder of HTML to your hosting service. Here are just a couple from the many that are available:
    http://www.panic.com/transmit/
    http://www.fetchsoftworks.com/
    can anyone tell me if you can add sound clips to the web pages you create?
    Yes, you can. Here are the instructions from iWeb's Help viewer:
    Adding songs or other audio files...
    If you want to share your original compositions, you can add audio files to your website. Visitors can listen to the audio while they are visiting the page.
    To add audio:
    1. In the sidebar (on the left side of the iWeb window), select the page you want to add the audio to.
    2. Do one of the following:
    ◼ To add a single audio file, drag it to the page. If you drag the audio file to the image placeholder on a blog page (the Blog or Podcast template), iWeb creates a podcast.
    ◼ To add more than one audio file, press Command while you click songs, and then drag the files to the page (not to an image placeholder).
    ◼ To add links to the songs in the iTunes Store (not the audio files themselves), drag a playlist from the Media Browser or iTunes, or a song from the iTunes Store, to the page.
    3. If you added audio files (not links), you can add a graphic or a text box with a solid color fill to the placeholder above each song’s audio controls.
    When you select an audio file on a page, its name appears in the Metrics Inspector.
    To see a list of supported audio file types, visit the QuickTime website.

  • The sound of my iphone has dissapeared when I play games and when i listen to muisic but when I put the headphones the sound come back and I can control the sound,what should I do??

    I was on a boat ride when some water fell on it but it was just a little bit then when i tried to control the sound and volume while playing and listening to music it didn't showed anything and just with headphones it appeared again and i could listen and I could control it again but when i take the headphones out it goes back to the same thing.What should I do??

    try toggling the Ducking menuItem

  • DOWNLOADED SOUND CLIPS FROM MY LG PHONE, THEY WON'T PLAY

    I DOWNLOADED SOUND CLIPS FROM MY LG PHONE. THEY HAVE A .qcp AT THE END. WHAT APPLICATION DO I USE TO PLAY THEM ? DO THEY NEED TO BE CONVERTED TO SOMETHING ELSE?

    Try VLC Player...
    http://www.videolan.org/vlc/
    Also see...
    https://discussions.apple.com/thread/1573850?start=0&tstart=0

  • Damsel In Distress: Embedding Sound Clips in Fillable Forms

    I embedded sounds (WAV files) in my professional 7.0 pdf with both the sound tool and the button tool. I also customized these with my own icon (JPG and PNG images). PROBLEM: once I open my pdf as a fillable form to add comment boxes, all the sound clips disappear, both icons and sounds. QUESTION: how can I embed sounds in my fillable forms? Thank you!

    Thank you, but without LiveCycle Designer where does Acrobat allow me to create a fillable form that my user can submit data back to me via email. Again, I am embedding my sound files in Acrobat, but once I select the Advance Menu|Forms|Make Form Fillable in Adobe Designer, it automatically opens LiveCycle Designer and my embedded sound files disappear. Any other suggestions are welcomed!

  • Cant Play Sound Clips in MS Office 2004 Powerpoint

    As the topic states, sound clips were working fine in PowerPoint a few weeks ago. Now when I go to preview a clip or insert a clip, I get the following error message:
    Microsoft Error Reporting log version: 1.0
    Error Signature:
    Exception: EXCBADACCESS
    Date/Time: 2006-09-28 11:05:54 -0400
    Application Name: Microsoft Clip Gallery
    Application Version: 11.2.0.050718
    Module Name: Microsoft Clip Gallery
    Module Version: unknown
    Module Offset: 0x000cb490
    Extra app info: Reg=English Loc=0x0409
    Thread 0 crashed:
    # 1 0x004d5760 in (Microsoft Clip Gallery + 0x000cb490)
    # 2 0x004d5638 in (Microsoft Clip Gallery + 0x000cb368)
    # 3 0x0045691c in (Microsoft Clip Gallery + 0x0004c64c)
    # 4 0x00455e94 in (Microsoft Clip Gallery + 0x0004bbc4)
    # 5 0x0041dac4 in (Microsoft Clip Gallery + 0x000137f4)
    # 6 0x004208d0 in (Microsoft Clip Gallery + 0x00016600)
    # 7 0x0041f6e4 in (Microsoft Clip Gallery + 0x00015414)
    # 8 0x0041c6b8 in (Microsoft Clip Gallery + 0x000123e8)
    # 9 0x0042a5e8 in (Microsoft Clip Gallery + 0x00020318)
    # 10 0x004258b0 in (Microsoft Clip Gallery + 0x0001b5e0)
    # 11 0x004a133c in (Microsoft Clip Gallery + 0x0009706c)
    # 12 0x0042fbb8 in (Microsoft Clip Gallery + 0x000258e8)
    # 13 0x004cf93c in (Microsoft Clip Gallery + 0x000c566c)
    # 14 0x00431118 in (Microsoft Clip Gallery + 0x00026e48)
    # 15 0x004a9e94 in (Microsoft Clip Gallery + 0x0009fbc4)
    # 16 0x004ae6e8 in (Microsoft Clip Gallery + 0x000a4418)
    # 17 0x004ae6d4 in (Microsoft Clip Gallery + 0x000a4404)
    # 18 0x004ae6d4 in (Microsoft Clip Gallery + 0x000a4404)
    # 19 0x004af6c0 in (Microsoft Clip Gallery + 0x000a53f0)
    # 20 0x004af4f0 in (Microsoft Clip Gallery + 0x000a5220)
    # 21 0x004a2a74 in (Microsoft Clip Gallery + 0x000987a4)
    # 22 0x004a26f0 in (Microsoft Clip Gallery + 0x00098420)
    # 23 0x0049f2ac in (Microsoft Clip Gallery + 0x00094fdc)
    # 24 0x0049f068 in (Microsoft Clip Gallery + 0x00094d98)
    # 25 0x00421880 in (Microsoft Clip Gallery + 0x000175b0)
    # 26 0x004d25ec in (Microsoft Clip Gallery + 0x000c831c)
    PPC Thread State:
    srr0: 0x004d5760 srr1: 0x0200f030 vrsave: 0x00000000
    xer: 0x00000006 lr: 0x004d5638 ctr: 0x00000000 mq:0x00000000
    r0: 0x00000000 r1: 0xbfffe240 r2: 0x000be000 r3:0x00000001
    r4: 0xfffffffc r5: 0x00000028 r6: 0xffffffff r7:0x00000000
    r8: 0x00000000 r9: 0x00000090 r10: 0x00000000 r11:0x00000000
    r12: 0x000b8874 r13: 0x00000000 r14: 0x00000000 r15:0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19:0x000000cc
    r20: 0x00000000 r21: 0xffffffff r22: 0xbffffc20 r23:0x000d516d
    r24: 0x04c19b30 r25: 0xbfffe370 r26: 0x0000000c r27:0x04a410d0
    r28: 0x00000000 r29: 0x00000000 r30: 0x00000000 r31:0x00000000
    Thread 1:
    # 1 0x90012808 in clock_sleeptrap + 0x00000008 (libSystem.B.dylib + 0x00012808)
    # 2 0x9000d9f8 in _nanosleep + 0x00000078 (libSystem.B.dylib + 0x0000d9f8)
    # 3 0x9002da28 in _sleep + 0x00000048 (libSystem.B.dylib + 0x0002da28)
    # 4 0x0075615c in _MerpUnregisterCFMFragment + 0x00000BAC (ShMem + 0x0006715c)
    # 5 0x00755628 in _MerpUnregisterCFMFragment + 0x00000078 (ShMem + 0x00066628)
    # 6 0x00755754 in _MerpUnregisterCFMFragment + 0x000001A4 (ShMem + 0x00066754)
    # 7 0x00756234 in _MerpUnregisterCFMFragment + 0x00000C84 (ShMem + 0x00067234)
    # 8 0x9002498c in _pthreadbody + 0x00000024 (libSystem.B.dylib + 0x0002498c)
    PPC Thread State:
    srr0: 0x90012808 srr1: 0x0000d030 vrsave: 0x00000000
    xer: 0x00000004 lr: 0x9000d9f8 ctr: 0x90012800 mq:0x00000000
    r0: 0xffffffc2 r1: 0xf0080af0 r2: 0xf0080ac4 r3:0x00000507
    r4: 0x00000001 r5: 0x00000001 r6: 0x00000000 r7:0xf0080b30
    r8: 0x00000000 r9: 0x000000e1 r10: 0x1438db08 r11:0xa000470c
    r12: 0x90012800 r13: 0x00000000 r14: 0x00000000 r15:0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19:0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23:0x00000000
    r24: 0x00000000 r25: 0x0000001a r26: 0x00000068 r27:0x0076602c
    r28: 0xf0080bb0 r29: 0xa00016e8 r30: 0xf0080ba0 r31:0x9000d990
    Thread 2:
    # 1 0x8fe267e8 in mach_msgtrap + 0x00000008 (dyld + 0x000267e8)
    # 2 0x8fe31ff4 in machmsg + 0x00000038 (dyld + 0x00031ff4)
    # 3 0x8fe162c8 in serverloop + 0x00000088 (dyld + 0x000162c8)
    # 4 0x8fe160f8 in start_debugthread + 0x00000144 (dyld + 0x000160f8)
    PPC Thread State:
    srr0: 0x8fe267e8 srr1: 0x0000d030 vrsave: 0x00000000
    xer: 0x00000000 lr: 0x8fe31ff4 ctr: 0x8fe1a72c mq:0x00000000
    r0: 0xffffffe1 r1: 0x04c63cf0 r2: 0x00000000 r3:0x04c63d90
    r4: 0x00000002 r5: 0x00000000 r6: 0x00000040 r7:0x00004303
    r8: 0x00000000 r9: 0x00000000 r10: 0x00000000 r11:0x845c0334
    r12: 0x8fe1a72c r13: 0x00000000 r14: 0x8fe53254 r15:0x8fe507a0
    r16: 0x8fe507d0 r17: 0x8fe5079c r18: 0x8fe507a0 r19:0x04c63dd0
    r20: 0x8fe507cc r21: 0x8fe5079c r22: 0x8fe507cc r23:0x8fe53254
    r24: 0x04c63d90 r25: 0x00000040 r26: 0x00004303 r27:0x00000000
    r28: 0x00000000 r29: 0x00000000 r30: 0x00000002 r31:0x8fe16254
    Loaded modules:
    0: Microsoft Clip Gallery (11.2.0.050718 Reg=English Loc=0x0409): /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
    1: Microsoft Clip Gallery: /Applications/Microsoft Office 2004/Office
    2: Microsoft OLE X (11.2.4.060510 Reg=English Loc=0x0000): /Applications/Microsoft Office 2004/Office/Microsoft OLE
    3: ShMem (11.2.4.060425 Reg=English Loc=0x0000): /Applications/Microsoft Office 2004/Office/ShMem.bundle/Contents/MacOS/ShMem
    4: MicrosoftOffice2001Z (11.2.6.060718 Reg=English Loc=0x0409): /Applications/Microsoft Office 2004/Office/Microsoft Office
    5: MCPZ.stb (11.2.6.060717 Reg=English Loc=0x0000): /Applications/Microsoft Office 2004/Office/Microsoft Component Plugin
    6: MCPCoreZ (11.2.6.060717 Reg=English Loc=0x0000): /Applications/Microsoft Office 2004/Office/Microsoft Component Plugin
    7: libstdc++.6.dylib: /usr/lib/libstdc++.6.dylib
    8: libgcc_s.1.dylib: /usr/lib/libgcc_s.1.dylib
    9: libmx.A.dylib: /usr/lib/libmx.A.dylib
    10: libbsm.dylib: /usr/lib/libbsm.dylib
    11: DVComponentGlue: /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    12: libz.1.1.3.dylib: /usr/lib/libz.1.1.3.dylib
    13: vImage: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    14: vecLib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    15: Accelerate: /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    16: dyld: /usr/lib/dyld
    17: libSystem.B.dylib: /usr/lib/libSystem.B.dylib
    18: CoreFoundation: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    19: CarbonCore: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    20: IOKit: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    21: OSServices: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    22: CoreServices: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    23: NavigationServices: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    24: libPDFRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    25: DiskArbitration: /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    26: ApplicationServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    27: Print: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    28: DesktopServicesPriv: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    29: libCGATS.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    30: SpeechSynthesis: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    31: SystemConfiguration: /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    32: SpeechRecognition: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    33: AudioUnit: /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    34: Help: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    35: CommonPanels: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    36: ColorSync: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    37: PrintCore: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    38: ImageCapture: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    39: AudioToolbox: /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    40: libCSync.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    41: libPSRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    42: vecLib: /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    43: LangAnalysis: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    44: FindByContent: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    45: Security: /System/Library/Frameworks/Security.framework/Versions/A/Security
    46: QD: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    47: HIServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    48: libcups.2.dylib: /usr/lib/libcups.2.dylib
    49: libmathCommon.A.dylib: /usr/lib/system/libmathCommon.A.dylib
    50: AE: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    51: Bom: /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    52: CoreAudio: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    53: libRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    54: WebServicesCore: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    55: Carbon: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    56: CFNetwork: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    57: libresolv.9.dylib: /usr/lib/libresolv.9.dylib
    58: libz.1.dylib: /usr/lib/libz.1.dylib
    59: SearchKit: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    60: OpenScripting: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    61: Ink: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    62: SecurityHI: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    63: QuickTime: /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    64: libBLAS.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    65: libLAPACK.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    66: libvMisc.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    67: CarbonSound: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    68: libicucore.A.dylib: /usr/lib/libicucore.A.dylib
    69: libvDSP.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    70: LaunchServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    71: libcrypto.0.9.7.dylib: /usr/lib/libcrypto.0.9.7.dylib
    72: libssl.0.9.7.dylib: /usr/lib/libssl.0.9.7.dylib
    73: ATS: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    74: CoreGraphics: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    75: HTMLRendering: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    76: HIToolbox: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Operating System Information
    Operating System: Mac OS X 10.3.9 (Build 7W98)
    CPU: G4 (7450), Number: 1, Speed: 999 MHz
    gestaltPhysicalRAMSize err = 0, result = 256 MB
    gestaltSystemVersion err = 0, result = 0x1039
    Screen: 1024 x 768, depth = 32, ltbr = 0, 0, 768, 1024
    Microsoft Application Information:
    Error Reporting UUID: B7AE48D7-4F00-11DB-B2FE-000A95BF76D2
    Time from launch: 0 hours, 0 minutes, 48 seconds
    Total errors on this client: 8
    eMac's..iMac's..iBook's..MacBook's..   Mac OS X (10.3)  

    Hello hertzog 10.3.9
    First of all, welcome to the Apple discussions.
    Did you try the MS discussion forum?
    Do a google search, as I did for you> an type 'powerpoint discussion forum' there are a lot of forums to search.
    I use Powerpoint myself a lot, but had never any issues to deal with.
    Let me know if so ...
    Discussions is a ongoing process. Hope to see you around anytime you need us, or can offer help to others.
    Dimaxum <]:~))

  • Sending sound clips in a media message

    i have the NOKIA N70 and i need to know why i get the message unable to insert , object format not supported when i try to send a sound clip by a multimedia message?
    i have converted it to mp4 and acc and then i send them to my phone and that works fine but when i try to send them in a message it won't let me??

    I finally found that the Nokia Multimedia Player will convert various audio file formats (at least WAV and MP3) to AMR. The conversion will prompt you for the AMR size limit (MMS 95KB, unlimited, etc). Once converted, you can copy them to your phone and send as MMS.
    Don't bother with Music Manager for this - it does not seem to handle AMR files even though there is an option to support opening these files. It will not display them. Just drag and drop or use Nokia File Manager.
    The version of PC Suite I used for this was 6.83.14.1. i converted both an MP3 and WAV file to an AMR (MMS 95KB) and was able to send in an MMS.
    Why does it have to be this hard!
    6230, 1GB MMC

  • Sound Blaster Audigy 2 zs + Creative Alchemy + Halo: Combat Evolved= Sound Clipping

    Hi, I have just installed the Audigy 2 zs in my windows 7 32bit system which is an upgrade to my old Live! 5.1 digital. Before install of the new sound card I removed all previous drivers and software that pertained to the old card. Then installed the Audigy 2 card with latest official drivers and the latest version of Alchemy. Everything went well except when playing Halo: CE for PC, When playing in game with sound acceleration and EAX on I am getting what I can only call sound clipping when there is a lot of sounds being heard or I should say supposed to be heard, I am only hearing part of them with a clip and sometimes none of them. During the Start Menu the sounds come out fine, it only happens in game with a lot of stuff going on such as in the middle of a battle or just firing the assault rifle on full auto. I tried playing around with the settings in Alchemy but that did not work. I never had this problem with the Live! 5.1 card. Any and all help would be appreciated

    I found this:
    https://halo.bungie.net/Forums/posts...1-p=1#10350046
    Install aLchemy.
    Go to install location of aLchemy (default is C:\Program Files(x86)\aLchemy\) and add this into the "aLchemy.ini" file:
    [Halo]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Micr osoft Games\Halo\EXE Path
    Duration=5
    [Halo CE]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Micr osoft Games\Halo CE\EXE Path
    Duration=5
    Two sugestions:
    1. Experiment with the settings;
    2. Use old Alchemy (take a look PM...).

  • Inspiron 1525 not able to select internal mic for webcam, nor is it showing up on Control Panel, Sound, Audio Devices

    Initial problem was Dell Webcam video recording records no sound.
    In Control Panel, Device Manager, Sound Video and Game Controllers there are two High Definition Audio Devices listed: Location 1 (Internal High Definition Audio Bus) - I deduce this is the internal mic; and Location 2 (Internal High Definition Audio Bus) - I deduce this is external microphone jack. Both have the same driver version.
    The Control Panel, Sound, Recordings Tab showed 2 devices that looked identical except the bars that show green with volume were only on the first one, which is also the default one, and would detect sound if you got real close to the webcam mic when talking. Both devices displayed as 'working'.
    Accessories, Sound Recorder recordings are silent no matter how close you get to internal webcam mic.
    Dell WebCam Audio Source tab has two selections, both reading Microphone (3 - High Definition Audio Device). Both selections record sound with the EXTERNAL MIC jack. There is no way to select the internal webcam mic, it is not an option.
    Per instructions found on the web, I uninstalled the first device only in Device Manager and rebooted. The same driver version as before was installed. But now the settings have changed. Device Mgr still shows Loc 1 and Loc 2. However, under the Sound, Recordings tab there are still 2 devices, but the first one says 'currently unavailable' , is still the default, and the sound bars that go green for audio testing are on the SECOND device now instead of the first one. If you check the Properties for each device, they BOTH are showing the same location Location 2 (Internal High Definition Audio Bus), i.e., the external mic jack.  Loc 1 device (built in mic) is not showing up!!
    Accessories Sound Recorder works with the EXTERNAL mic. (How does it know which one to use, it's not giving me a choice?)
    So the Location 1 device (internal mic) is not showing up anywhere besides the device manager. I want to use the internal mic for skype and webcam. Somehow I need to get the Loc 1 device to show up on the Sound - Recording tab and in the Webcam Audio Source list? What do I do?
    Thank you in advance for your help.

    kestark
    This is Vista.
    Go to the Inspiron 1525 support page. Find the small blue "Change OS" and click on the arrow. Select Vista.Then download and install these 3 items with a restart between each one.
    1. Dell System Software in the System Utilities category.
    2. Intel Mobile Chipset in the Chipset category.
    3. Sigmatel audio driver in the Audio category.
    See if it works any better after you get the Sigmatel driver installed.

  • Loss of sound clip

    I have  a E63 and I have been using using the record function to record information for a project
     I am doing and untill now have had no problems,  after deleting one of the clips in the "Gallery/soundclips folder that was no longer needed , I now find that  I have no sound from the the sound clips that are still in the folder even though the indication that the clip is playing but if the clip is instantly replayed while still in the recording device, there is no problem and the sound clips can also to be heard if one uses them as a ring tones
       I have not found so far if I have some how muted the sound clips and if so how do I turn them on.
       There are no sound problems with any video clips that have be taken previously
       Anyone got any ideas on my problem and how to correct for it
      TIA mortda

    Managed to finally solve my problem,it was amater of using the function key and using the scroll button to increase the sound
         mortda

Maybe you are looking for