Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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 » Mon Aug 20, 2018 4:49 pm
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 » Tue Sep 04, 2018 3:50 pm
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 » Sat Dec 08, 2018 9:12 am
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: 2829 Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times
Unread post
by admin » Tue Dec 11, 2018 1:32 am
Martin,
The shortcut key for Change Login should work now.
Please test it for me.
Steven