Reduce Volume of Mouse Click Sound

Any way to easliy reduce the volumne of the clickk sound from the mouse without recording a new mouse sound?

Easy way...no.  What I had to do was edit the actual sound files for the single and double clicks.  The files are mp3's and are located in:
Adobe Captivate 5 --> Gallery --> Mouse --> Click Sounds
You can open the mp3's in any simple wave/audio editor, select the waveform, and decrease the volume.  I brought mine down about 3 decibels.
However, keep in mind this will decrease the volume for every project you do, not just the one you are working on.
Hope this Helps.
Mike D.

Similar Messages

  • Modifying default Project Properties? (Mouse click sound, etc.)

    Am I able to configure default properties?
    E.g. On every slide of every software demo I create, I have to change the following:
    - Slide quality - High
    - Highlight Box timing - Rest of slide.
    - Mouse click sound - Custom
    - Show mouse click - Custom
    - etc.
    Obviously, this is the most time consuming process and it increases my time investment 20-fold.
    Have I overlooked something? Google & searching has been no help...which makes me feel like I'm the only one with the problem...which leads me to believe I'm doing something wrong!

    If you open the Edit >  Preferences dialog without having any project open, then go to Defaults > Object Defaults, you can set up some of the things you want.  For example, you can change the default duration of highlight boxes.  But this doesn't allow you to configure the mouse or slide settings the way you want for all projects.
    I think your best option is just to set up a Captivate template with all the slides done the way you want and use that to initiate each project.

  • No more mouse click sounds for buttons on Captivate 5

    I have been working on a project that uses buttons and click boxes.  Previously the mouse click played when the button was selected, but now there is no mouse click sound when selecting the button.  When closing the application I see a message that pops up saying "Discovering Unreachable Audio".
    I also tried to create a new project with buttons and the mouse click still does not play.
    I double checked in the properties for the button and the box for "Disable Click Sound" is NOT checked, so I know that this is not the problem.
    I am using Windows XP SP3.
    Any advice on how to correct this is greatly appreciated!
    Thanks

    Did you ever find a solution to this?  I am having the same trouble.  The mouse click will not play despite the fact it is selected.  Some mouse clicks will play so I don't know what the issue is.  Also if I change it to a custom mouse click it the sound will play.

  • CP - Mouse click sound

    Hi All,
    I am learning how to use captivate and have created a video, I want the mouse click sound, but I can't get it to work.
    Can you give me any pointers please?
    Thanks

    Hi KeithJohnson
    Sure, just double-click the mouse object in either the
    Timeline or on your slide. There on the Options tab is an option to
    assign the click sound.
    Cheers... Rick

  • How do I globally uncheck the property "mouse click sounds" under the captions section

    I am doing software simulation and it produces a large number of slides. I want to remove the mouse click sounds. Is there another way to do that other than
    select each and every slide and uncheck the "Mouse Click Sound" checkbox?
    Adobe you need to provide that option in preferences!

    So I tried it...here are the screen shot. I do have the updated Captivate 7....So you can see they are selected and I used the timeline to bring up the mouse clicks box.
    I then unchecked the the 'Mouse Click Box'
    I clicked on the slide...and this may be where it goes wrong. I did try to exit by hitting Enter, but that didn't work. I had to click somewhere on the project.
    Here you can see that slide 2 has the "Mouse Click Sound" box still checked.
    Sweet dreams to all ....it can wait until Monday, unless anyone else who is not sleeping wants to chime in

  • Mouse click sounds

    I searched the topics and was unable to locate the answer.
    WHat I am looking for is this:
    Is there a way to switch the sound of a NEXT and/or BACK (or
    whatever button) from the click to a custom sound?
    I know I can go into the GALLERY / MOUSE / CLICKSOUNDS and
    copy the sound file I want and then rename it.
    That would work, but I would really like to change it on ever
    3rd or 4th slide's next or Back buttons.
    I have tried changing the audio properties on the button but
    double click the button and then picking the AUDIO tab and
    assigning a sound....but, what that does is when it gets to the
    slide, it plays the sound without picking the button.
    Thanks in advanced!
    dog!

    Hi defcon789
    Most of the time a button or click box is programmed to jump
    to a specific slide as opposed to continuing. Assuming that
    continuing is okay, you could insert an invisible object with the
    desired click sound attached. Then clicking the button would result
    in the desired click sound. I suppose even if you are jumping to a
    different slide this would be possible by inserting a blank slide
    preceding the slide where you want to link. Then link to that slide
    instead. Then assign the sound to that slide so it plays just
    before the desired slide appears.
    Cheers... Rick

  • Magic mouse clicking sound

    I just purchased a new iMac 5K with the Magic Mouse. Every time I click on the mouse I hear a clicking noise. How do  eliminate this? I have an older Magic Mouse and it does not make any sound when I click on it.

    It certainly is.. I notice that when clicking the left side, it has one distinct "tick" sound but the left has 2 crunchy/clucking sounds. Hard to explain but it doesn't sound right.. I just want to know from anyone else if this is the norm..
    Thx..

  • Mouse Click Sound

    Hello, I am trying to create a simple flash game which
    involves shooting. I have scoured the internet for a couple of days
    to try to find a way to make a gun sound when the mouse button is
    clicked, but to no avail. Could someone please point me in the
    right direction. I am using Flash CS3. Thanks for your time,
    Dave.

    dindelus,
    > I have very little 2.0 knowledge and even less 3.0, so I
    > am using Action Script 2.0 for this.
    What you'll need, in any case, is an instance of the Sound
    class -- and
    I'll show you the AS2 syntax. Presumably, you already have an
    instance of
    your button symbol (i.e., and instance of the Button class)
    on your Stage.
    That button will need an instance name so that ActionScript
    can pick it out
    of the crowd. We're going to assign a function to the
    Button.onPress event
    of that instance, and that function is going to invoke
    Sound.start() on your
    sound instance.
    As an aside, the following realization may actually help you
    in terms of
    reading through the ActionScript 2.0 (and 3.0) Language
    Reference. Just
    about everything in ActionScript may be described as an
    object, and objects
    are defined by (usually) namesake classes. Classes are
    effectively blue
    prints for the objects they define, and you'll tend to find
    one or more of
    the following three categories when you look up a class:
    properties
    (characteristics of the object), methods (things the object
    can do), and
    events (things the object can react to).
    So to start, here's an instance of the Sound class.
    var s:Sound = new Sound();
    At this point, that arbitrarily named variable, s, is an
    access point
    for all the functionality described by the Sound class, which
    among other
    things, contains an attachSound() method. This allows you to
    pull sound
    assets from the Library at runtime, so first,
    right-click/Command-click on
    your asset in the Library, choose Linkage from the context
    menu, and give
    the asset a unique Linkage identifier. Think of this as a
    kind of nickname
    ActionScript uses to pull the asset to the Stage. Then use
    that Linkage id
    as the parameter of your method:
    s.attachSound("gunshot");
    In two lines, then, we've created an instance of the Sound
    class and
    associated it with a sound clip. Now for the button event:
    myButton.onPress = function():Void {
    s.start();
    Badda bing, that's it.
    Now, you might want to have the sound appear without the
    necessity of a
    button beneath it -- though you could, certainly, put a large
    button over a
    large portion of the Stage. If you just want a free-for-all
    sense of
    make-the-sound-no-matter-where-the-mouse-is-clicked ... that
    might go like
    this:
    var s:Sound = new Sound();
    s.attachSound("gunshot");
    var listener:Object = new Object();
    listener.onMouseDown = function():Void {
    s.start();
    Mouse.addListener(listener);
    Much of that is the same, as you can see. This time, a
    generic Object
    instance acts as liaison for the Mouse.onMouseDown event --
    which kind of
    makes sense, as you can't really have an instance of the
    Mouse class (the
    Mouse class represents interactions with the mouse). Again, a
    function is
    assigned to a relevant event -- you'll see this event if you
    look up the
    Mouse class entry of the ActionScript 2.0 Language Reference
    -- and the
    Mouse class itself is subscribed to this Object (named
    listener, by chance)
    thanks to its addListener() method.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Mouse clicks and keystrokes

    When I edit mouse click in mouse properties, it
    doesn't always make the sound when it's checked (ticked), and
    sometimes makes a mouse click sound when it's not ticked. If you
    run it through again, it often responds differently. The same thing
    happens with keystroke sounds, though less frequently. Is this a
    common problem, is it my computer, or is there some way of fixing
    this problem?

    Keyboard shortcuts were often missed.  For example, I tried this sequence many times. 
    0: (setup:  text editor is scrolled to first line and cursor is at the beginning of the first line)
    1: Click on text editor window to focus it.
    2: press SHIFT-DownArrow to move cursor down one line and select the first line
    3: press CMD-X to cut the line.
    Automator never would capture those key strokes. 
    But today I has a break through.  This sequence does work:
    0: (setup:  text editor is scrolled to bottom of the file and the cursor is placed below the last line.)
    1: Click on text editor window to focus it.
    2: press SHIFT-UpArror to move cursor up one line and select the last line.
    3: press CMD-X to cut the line.
    about 70% of the time this did get recorded correctly (I did maybe 3 recordings and one failed to select).  Once it got recorded correctly it worked reliably. 
    So it seems to be able to capture some sequences but not others.  Both sequences work very reliably when I type them but automator can only capture the last sequence. 
    Thanks for the suggestions.  This tool is better than nothing but not anything I would recommend.

  • I can't hear a mouse click

    Hey,
    On a slide, after you insert the mouse, isn't there something I should do to hear the mouse click.  I've already got all of the buttons checked under the mouse properties(show mouse click and mouse click sound).  Now, shouldn't I simply hear a click at the end of the mouse object? Is there some kind of global setting I am missing?
    What gives?
    Thanks.
    Jeff

    Hi there
    Mouse click sounds exist as an audio file and are not recorded. While I'm not one of the Captivate Development team, it is my understanding that all that is recorded are the starting and ending points as well as the pointer in use.
    Of course Mouse object provides click sounds. The evidence is in the dialog.
    A bit of a mystery as to why you may not be hearing them. Any chance of sharing your project so one of us may see first hand?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Can't turn off Mouse Click

    I am trying to turn off the mouse click sound. I am following
    the manual which says to remove the checkmark from the box next to
    the Mouse click sound. After I do that, I then save the project
    (which is still unpublished). I then preview that slide, and I
    still hear the mouse click sound. I did this to several slides, all
    had the same results. I am a new user of Captivate 3, am I doing
    something wrong?

    Welcome to our community, Linda
    Hop over to fellow Adobe Community Expert Paul Dewhurst's
    site at the link below. You need to download a silent mouse click
    sound file and replace yours with Paul's. Then you will be free of
    mouse clicks!
    Click
    here to visit Paul's site
    While you are there, please consider tossing some change into
    his tip jar for his efforts!
    Oh, and one other thing. Don't let the fact he's organized
    this widget into the Captivate 1 category fool you. It should work
    with all Captivate versions.
    Cheers... Rick

  • Why the click sound is not working after publishing?

    Hello all.
    I have around 190-200 slides in my project. I want my mouse object to have the click sound in some slides and without click sound in rest of the slides.
    Using its properties panel I have added click sound for the required slides. But after  publishing the project I am unable to hear the click sound. When I refresh the page I could hear the sound. Why does this happen?
    Regards,
    Kartik.P

    Hi,
    Do you face this problem even with a single slide project? Because this seems to be working fine at our end.
    Also, is it an upgraded project, single click or double click?? Does it happen only on few slides or all slides with mouse click sound.
    Thanks,
    Sikandar

  • IMac won't turn on. Only a clicking sound and a grey folder with flashing question mark.

    iMac won't turn on. Only a clicking sound and a grey folder with flashing question mark.
    Help.

    Your iMac is actually turning ON as proven by the grey folder with the flashing question mark.
    The flashing question mark indicates that your system is unable to find a bootable volume. The clicking sound that you hear is probably coming from your hard drive while it tries to recalibrate. I suspect your hard drive has failed.
    What model imac do you have? If it's under warranty I suggest taking it in for service. Hopefully you've been maintaining a regular backup of your data as all users should. I lost my data once and it was a valuable lesson. I back up regularily now.
    If your iMac came with install disks then you can boot from them, choose your language when asked, then pull down the Utilities menu to launch the Disk Utility application. The Disk Utility application will allow you to verify whether your hard drive has an issue. Usually a clicking sound, assuming it's coming from the hard drive, is a sign of a bad hard drive.
    If your system has Lion installed then you can hold down the Command and R keys when you restart the system, then launch the Disk Utility application from the menu that appears.

  • How Do I find the "Disable Click Sound" property in Captivate 7?

    My software simulation has very annoying click sounds from the mouse. I have seached the web and found a screenshot of an 'Options' section on the properties tab with a 'Disable Click Sound' checkbox, but my copy of Captivate 7 doesn't have that. What's up? There has to be a place to turn it off! Otherwise it's useless....the clicking drives everyone crazy.

    Select the mouse on the slide (or timeline) and deselect the Mouse Click Sound check box from the properties.
    Sreekanth

  • How to turn off mouse click noise

    I am listening to my Itunes on my computer and doing work at the same time. Each time I do my work and click my mouse I hear the click sound at the same time as my song. Is they any way to turn off mouse click sound so it does not disturb my music?

    1. Go to control panel
    2. Click mouse
    Now that being said, I don't have the kind that makes a noise, so I don't have an option, but if you're able to turn the sound off, it should be there.
    If it's not there, check Sounds and Audio Device properties to see if there's an option there. If there's not, you may need to contact your computer manufacturer.
    Good luck!

Maybe you are looking for

  • What is the best and reasonably priced external cd/dvd optical drive for an Imac 21.5 inches from late 2009?

    What is the best and reasonably priced external cd/dvd optical drive for an Imac 21.5 inches from late 2009?

  • Unable to insert row into table.

    hi all, here i am using oracle apex 3.2.0.0.0.27 version. i am unable to insert a row in the database table.when i press a save button i get an error is 0.07: 0.08: S H O W: application="132" page="4" workspace="" request="" session="3286250612369434

  • ---= Photo Booth/BlueTooth NOT stopping whine =---

    I tried running PhotoBooth and my Bluetooth mouse and the "whine" has NOT stopped. The only way I can get rid of the "whine" is if I sqeeze the bottom right corner of the screen or if I just turn the screen off. Does anyone else have this problem? Ha

  • Case Structure Based on Changing Input Controls

    Hello. I am trying to create a control VI for a quad-copter. Right now I've managed to build a basic program that gets input from some sliders and transforms and sends it to the quad-copter motors through I2C and virtual serial port. The problem that

  • Sharing changed after update

    I just updated to Yosemite and now, when I am at my PC and attempt to access files from my mac, it is prompting for a username and password. I put in the only ones  I use. The computer name and my password. It didn't do this prior to the update. What