I've been looking for a program that would enable me to control Centrafuse with an old mouse I have. The problem with CF is that the hot keys cannot accept mouse strokes. I searched for a program that would let me do this and I found something that is far better than anything I expected.
It is called AutoHotkey and it is a free program, and extremely customizable. If you look at the code that I have for my mouse you can see how well it works for me.
Code:
WheelUp:: SoundSet +10, WAVE ;this moves my Wave volume up 10%
WheelDown:: SoundSet -10, WAVE ;this moves my Wave volume down 10%
MButton:: SoundSet +1,,mute ;this toggles mute on/off
RButton & WheelUp:: Send {F6} ;this will go to the previous song
RButton & WheelDown:: Send {F7} ;likewise this goes to the next song
RButton & LButton:: Send {F5} ;this will toggle play/pause
The solution to my CF problem not accepting mouse buttons for hot keys lies in the "Send {F5}" code. This pretty much makes the computer think the F5 key was pushed and then in CF I have F5 set as the play hot key.
If you are interested in this program you can download it from the link below. I hope to have my mouse and external dvd installed below the monitor in 3 weeks so I will have pictures up of my setup.
http://www.freedownloadscenter.com/U...utoHotkey.html