Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Questions related to using nuBuilder Forte.
-
toms
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Unread post
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 ...
}
You do not have the required permissions to view the files attached to this post.
Last edited by Anonymous on Wed Aug 22, 2018 8:30 am, edited 1 time in total.
-
toms
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Unread post
by toms »
The correct key code for ctrl + shift + y (Delete Action) is
89
(
http://keycode.info/ )
2018-09-04_154552.png
You do not have the required permissions to view the files attached to this post.
-
Martin
- Posts: 30
- Joined: Fri Nov 09, 2018 5:42 pm
Unread post
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.
-
admin
- Site Admin
- Posts: 2815
- Joined: Mon Jun 15, 2009 2:23 am
- Been thanked: 25 times
Unread post
by admin »
Martin,
The shortcut key for Change Login should work now.
Please test it for me.
Steven