Page 1 of 1

nuBindCtrlEvents() - missing handlers

Posted: Mon Aug 20, 2018 4:49 pm
by toms
Hi,

There is no handler for CTRL + SHIFT + L in nuBindCtrlEvents(), which is probably the least important shortcut ;)
change_login.PNG
This should do it:

Code: Select all

				} else if(e.keyCode == 76) {										//-- l		Delete
					nuPopup("nupassword", nuFORM.getProperty('user_id'), "")
				}
and no handler for CTRL + SHIFT + ? (Help)

Code: Select all

				} else if(e.keyCode == 191) {										//-- ?		Help
					// some code here ...
				}

Re: nuBindCtrlEvents() - missing handlers

Posted: Tue Sep 04, 2018 3:50 pm
by toms
The correct key code for ctrl + shift + y (Delete Action) is 89
( http://keycode.info/ )
2018-09-04_154552.png

Re: nuBindCtrlEvents() - missing handlers

Posted: Sat Dec 08, 2018 9:12 am
by Martin
Hello, this software is also used by blind people. I would be more than happy if these shortcuts from the option menu would work as intended.

Thanks for the great software and I am otherwise very happy with it.

Re: nuBindCtrlEvents() - missing handlers

Posted: Tue Dec 11, 2018 1:32 am
by admin
Martin,

The shortcut key for Change Login should work now.

Please test it for me.


Steven