Hi, over in this thread (
http://www.autoitscript.com/forum/index.php?showtopic=50672&st=0&gopid=409512&#entry409512) I asked re volume. Nothing is easy to change in AI except WAV. AutoHotKey was recommended to me elsewhere to try and I actually found an extremely easy solution in their help file (that's rare for me to figure out something in a help file when it involves any sort of scripting syntax, let me tell you!! <lol>). Here are two examples of what can be achieved in AHK, both cases where we either need to get a set level of sound to a predetermined percentage and the other case where we need to modify existing sound from a certain percentage, increasing or decreasing so in other words, both positive and negative.
; AHK script - VOLUME TO A SET PERCENTAGE
; the number after the soundset is the percentage of volume to change to (the first without description is master volume, the default when nothing designated)
SoundSet, 25
SoundSet, 25, WAVE
SoundSet, 25, SYNTH
SoundSet, 25, CD
SoundSet, 25, MICROPHONE
SoundSet, 25, LINE
where we can put +25 or -25, or +35 or -35, etc., etc., to whatever percentage we want.
Pls, hopefully something this easy can be added to AI in a future build! This level of ease is missing in AI currently.
Thanks much for considering this.