Push-Nachrichten von MacTechNews.de
Würden Sie gerne aktuelle Nachrichten aus der Apple-Welt direkt über Push-Nachrichten erhalten?
Forum>Software>Lautstärke feiner einstellen in Lion????

Lautstärke feiner einstellen in Lion????

Boxer31.12.1112:04
Bitte wie kann man die Lautstärke feiner dosieren in Lion(Tastenkombination).


Danke im voraus.
0

Kommentare

_mäuschen
_mäuschen31.12.1112:18
Hi Guys,
A temporary fix.

Download and install Spark (or any other keyboard shortcut app).

http://www.shadowlab.org/Software/spark.php


Then create a applescript shortcut mapped to something like Option, fn and Volume up key(F12) (or anything you like)

Now use the apple script for volume up of:

-- volume up
set current_volume to output volume of (get volume settings)

if current_volume is less than 100 then
set current_volume to current_volume + 2
end if

set volume output volume current_volume



This sets the volume to increase by a little each time you press the buttons.
This can be changed by making + 2 larger for larger steps and smaller for smaller steps.
Repeat for decrease volume using


-- volume down
set current_volume to output volume of (get volume settings)

if current_volume is less than 100 then
set current_volume to current_volume - 2
end if

set volume output volume current_volume



Hope this works for you too.
If it does not work, you may need to go to System preferences>Keyboard>Mission Control
and then untick Show Desktop (F11) and Show Dashboard (F12).

Regards

https://discussions.apple.com/thread/3191524?start=0&tstart=0

0
Boxer31.12.1112:24
Danke und einen guten Rutsch in das neue Jahr.
0
tzi31.12.1113:21
Unter Snow Leopard geht das mit shift+alt+leiser/lauter. Ob das allerdings auch unter Lion funktioniert weiss ich nicht.

edit: Ah, gemäss dem Link oben scheint genau dies eben nicht mehr zu funktionieren.
0
etrex
etrex31.12.1115:38
Nein, leider geht die Tastenkombi nicht mehr.
0

Kommentieren

Diese Diskussion ist bereits mehr als 3 Monate alt und kann daher nicht mehr kommentiert werden.