Rehber Multimedya Tuşları Olmayan Klavye İçin Ses Açma Kısayolu Ekleme

Kodlar bende gayet stabil çalışıyor fakat Shift tusu YouTube'da videoyu hızlandırma işlevine atanmış. Örneğin Shift tuşuna bastığımda hem sesi açıyor hem videoyu 2X hızlandırıyor. Shift tusu yerine başka bir tuş atamaya çalıştığımda ise kodları çalıştıramadım. Shift tuşu yerine CTRL+F12 şeklinde kullanmak için farklı bir tuş atamak istiyorum. Bu konuda yardımlarınızı bekliyorum.
Şu anda kullandığım kodlar bu şekilde;

Kod:
+$PrintScreen:: ;the + means shift
Send {Media_Prev}
return

+$Pause::
Send {Media_Next}
return

;play/pause.
+$sc046::
Send {Media_Play_Pause}
return

;play/pause.
+F12::
Send, {Volume_Down}
return

;play/pause.
+F11::
Send, {Volume_Up}
return

;play/pause.
+F10::
Send {Volume_Mute}
return
 
Kodlar bende gayet stabil çalışıyor fakat Shift tusu YouTube'da videoyu hızlandırma işlevine atanmış. Örneğin Shift tuşuna bastığımda hem sesi açıyor hem videoyu 2X hızlandırıyor. Shift tusu yerine başka bir tuş atamaya çalıştığımda ise kodları çalıştıramadım. Shift tuşu yerine CTRL+F12 şeklinde kullanmak için farklı bir tuş atamak istiyorum. Bu konuda yardımlarınızı bekliyorum.
Şu anda kullandığım kodlar bu şekilde;

Kod:
+$PrintScreen:: ;the + means shift
Send {Media_Prev}
return

+$Pause::
Send {Media_Next}
return

;play/pause.
+$sc046::
Send {Media_Play_Pause}
return

;play/pause.
+F12::
Send, {Volume_Down}
return

;play/pause.
+F11::
Send, {Volume_Up}
return

;play/pause.
+F10::
Send {Volume_Mute}
return
Ben de aradım başka tuşla yapılabiliyormuş sırf herkes bilsin diye kayıt oldum siteye kayıt olmak da ne zormuş onay bekleyip duruyon neyse orası ayrı
Şimdi senin kodlarında bu +f12 filan yazıor ya onun anlamı shift f12 demek yani + shifti temsil ediyor.Senin yapman gereken benim vereceğim siteden kendi istediklerini bulman.
List of Keys (Keyboard, Mouse and Joystick) | AutoHotkey

LWinLeft Win. Corresponds to the <# hotkey prefix.
RWinRight Win. Corresponds to the ># hotkey prefix.
Note: Unlike Control/Alt/Shift, there is no generic/neutral "Win" key because the OS does not support it. However, hotkeys with the # modifier can be triggered by either Win key.
Control (or Ctrl)Control. As a hotkey (Control::) it fires upon release unless it has the tilde prefix. Corresponds to the ^ hotkey prefix.
AltAlt. As a hotkey (Alt::) it fires upon release unless it has the tilde prefix. Corresponds to the ! hotkey prefix.
ShiftShift. As a hotkey (Shift::) it fires upon release unless it has the tilde prefix. Corresponds to the + hotkey prefix.
LControl (or LCtrl)Left Control. Corresponds to the <^ hotkey prefix.
RControl (or RCtrl)Right Control. Corresponds to the >^ hotkey prefix.
LShiftLeft Shift. Corresponds to the <+ hotkey prefix.
RShiftRight Shift. Corresponds to the >+ hotkey prefix.
LAltLeft Alt. Corresponds to the <! hotkey prefix.
RAltRight Alt. Corresponds to the >! hotkey prefix.
Note: If your keyboard layout has AltGr instead of RAlt, you can probably use it as a hotkey prefix via <^>! as described here. In addition, LControl & RAlt:: would make AltGr itself into a hotkey.

BU YEŞİLLE İŞARETLEDİĞİM YERLER SOLDA YAZAN TUŞLARIN İŞARETLERİ
ZATEN LİNKİ VERDİM ORADAN BAKARAK İSTEDİĞİNİZ TUŞA ATAMA YAPABİLİRSİNİZ.
HADİ KOLAY GELSİN.
<^F5::
Send {Media_Prev}
return

<^F6::
Send {Media_Next}
return

;play/pause
<^F4::
Send {Media_Play_Pause}
return

;play/pause
<^F2::
Send {Volume_Down}
return

;play/pause
<^F1::
Send {Volume_Up}
return

;play/pause
<^F3::
Send {Volume_Mute}
return

BENİM KODLARIM BU ŞEKİLDE.BEN SADECE MEDİAPLAYER İÇİN İNDİRMİŞTİM PROGRAMI
İŞİMİ DE GÖRÜYOR.
 
Benim klavyemde multimedya tuşları var(Home, mail, forward gibi ben bunları örneğin; forward tuşunu nasıl medyayı(şarkıyı) değiştirme tuşu olarak atayabilirim.
 
Browser_forward: Send {media_next}
Komutu ile yapabilirsiniz.

Farklı multimedya tuşları için;

Teşekkürler bilgisayarı yeniden başlatmam gerekiyormuş sanırsam.
Home tuşu ile (browser_home) bilgisayarı uyku moduna sokabilir miyiz benzer bir makro ile.
 
Son düzenleme:
Evet sokabilirsiniz. AutoHotkey'de istediğiniz tuşa istediğiniz komutu atayabiliyorsunuz.

;Browser_Home 🡲 Bilgisayarı uyku moduna geçir.
Browser_Home::DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0)
 
Sağ olun hocam zorlanıyordum biraz işimi kolaylaştırdı.
 
Key Tweak uygulaması bundan daha kolay.
 

Geri
Yukarı