This is natively supported to customize your shortcut keys in Zekr using shortcut.xml file in workspace <http://zekr.org/wiki/Workspace>/config (see this thread<http://groups.google.com/group/zekr/browse_thread/thread/2d1576d770e2520b>), but it only supports keyboard not mouse. The tool Ibraheem introduced seems to do a mapping, from an input device to keyboard. For example while Ctrl+P is used to play/pause audio player, the following script: space::^p
tells AutoHotkey to interpret Space as Ctrl+P. While you are only using keyboard mappings, it's completely possible to customize it via shortcut.xml file I mentioned. Anyways, thanks Ibraheem for introducing us this tool. Regards, Mohsen On Sun, Oct 10, 2010 at 3:31 PM, Zainul Aabdin <[email protected]>wrote: > I am using Portable version of Zekr, please can you explain a litle > bit more how to implement the hot keys....Thanks > > On Oct 10, 4:05 am, injq <[email protected]> wrote: > > Salam, > > > > I have written a hotkey script which can be used with this program: > http://www.autohotkey.com/ > > > > Basically i have made use of the up down left and right arrow keys, > > the mouse scroll wheel to go to next and previous ayah. > > > > Now its much easier to navigate using this script! > > Copy everything in between "#IfWinActive" below after installing the > > program above, it should work. > > > > #IfWinActive ahk_class SWT_Window0 > > > > ; Up key for previous ayah > > up::^!- > > > > ; Down key for next ayah > > down::^!= > > > > ; Space key for Play and Pause > > space::^p > > > > ; NumpadEnter key for Stop > > NumpadEnter::^s > > > > ; Right key for next Surah > > right::^!down > > > > ; Left key for previous Surah > > left::^!up > > > > ; Wheel up and down for previous and next Ayah > > WheelUp::!left > > WheelDown::!right > > > > ; Button 1 and 2 for play and stop (Logitech G500) > > ; Disable the following two lines > > ; if your mouse does not have extra buttons > > XButton2::^p > > XButton1::^s > > > > ; Scroll left and right for previous and next surah (Logitech G500) > > ; Disable the following two lines > > ; if your mouse does not have left and right scroll > > WheelLeft::^!up > > WheelRight::^!down > > > > #IfWinActive > > -- > You received this message because you are subscribed to the Google Groups > "zekr" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected] <zekr%[email protected]>. > For more options, visit this group at > http://groups.google.com/group/zekr?hl=en. > > -- You received this message because you are subscribed to the Google Groups "zekr" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/zekr?hl=en.
