View Post [edit]
Poster: | TechLord | Date: | Jan 21, 2024 12:41pm |
Forum: | general | Subject: | Uploader suggestion: go to next field using tabulator button. |
Please make it so that the tabulator can go to the next field too, and shift+tabulator should go to the previous field.
Some pseudocode to show how it could work:
file_info.addEventListener("keydown", function(key) ) {
if (! key.shiftKey && key.keyCode == 9) { // 9 means tabulator.
// code for going to next field, "! key.shiftKey" ignores the shift key.
return false; // prevents jumping to the next hyperlink
}
if (key.shiftKey && key.keyCode == 9) {
// code for going to previous field, "key.shiftKey" listens to the shift key.
return false; // prevents jumping to the previous hyperlink
}
}
Thank you very much.
This post was modified by TechLord on 2024-01-21 20:41:04
Attachment: Screenshot_2024-01-21_at_21-34-36_Upload_to_Internet_Archive.png
Reply [edit]
Poster: | sydneydux | Date: | Jan 21, 2024 5:51pm |
Forum: | general | Subject: | Please post multiple files in your uploads |
That is, it's better to post multiple files in one upload, rather than creating multiple pages with only one file each. Multi-file uploads are so much more considerate to users, especially those who scroll through searches looking for new uploads. Plus, putting multiple files on one page makes it easier for users to download multiples.
Thanks in advance for considering users, and plus also thanks for sharing as well, too.
Reply [edit]
Poster: | TechLord | Date: | Jan 24, 2024 1:10pm |
Forum: | general | Subject: | multi-file items |
No, I don't. I already put multiple files in one item where applicable. For example, it makes sense for many Instagram stories by the same user.
Still, hitting tabulator is far more convenient than moving the cursor to the right location and clicking. I am used to hitting the tabulator to navigate to the next element. Clicking is tedious.