Home Computer Audio Asylum

Music servers and other computer based digital audio technologies.

Revised AHK script for use in CMP Mode allowing for Display Off when pressing mouse button 2

This works with cMP allowing for display to be turned off by pressing mouse button 2. I prefer using a mouse button as this allows for no keyboard. Display turns On by moving mouse or pressing keyboard.

Interesting approach to removing display overhead during playback - any sound improvements?


; cMP version 1.2
; cicsRemote.ahk 1.0b2

#NoTrayIcon
#SingleInstance Force
#HotkeyInterval 2000
#MaxHotkeysPerInterval 200

;Phase 0/180
XButton1::
send `;
return

;Display Off
XButton2::
KeyWait, XButton2
SendMessage, 0x112, 0xF170, 2,, A
return

;Stop&Exit OR Default View
MButton & LButton::
send !{f4}
return

;Next
RButton::
send ]
return

;Previous OR Navigation Back
MButton & RButton::
send [
return

;Volume up
MButton & WheelUp::
send +{Home}
return

;Volume down
MButton & WheelDown::
send +{End}
return

;Navigation Up
WheelUp::
send {Up}
return

;Navigation Down
WheelDown::
send {Down}
return

;Navigation Forward OR Select Item (OK)
MButton::
KeyWait, MButton
send {enter}
return

; compile and run script.


Save as cicsRemote.ahk and compile. Then copy new cicsRemote.exe to c:\program files\cics Memory Player. When using cMP, "Program Manager" doesn't exist (explorer), instead use "A" (i.e. send to active window).


This post is made possible by the generous support of people like you and our sponsors:
  Atma-Sphere Music Systems, Inc.  


Follow Ups Full Thread
Follow Ups

FAQ

Post a Message!

Forgot Password?
Moniker (Username):
Password (Optional):
  Remember my Moniker & Password  (What's this?)    Eat Me
E-Mail (Optional):
Subject:
Message:   (Posts are subject to Content Rules)
Optional Link URL:
Optional Link Title:
Optional Image URL:
Upload Image:
E-mail Replies:  Automagically notify you when someone responds.