Questions tagged [access-keys]

120 questions
1
vote
1 answer

How to determine when an accesskey is pressed

How to determine when an accesskey is pressed - with javascript(IE, Chrome, Opera, Safari). In FF I used document.onkeypress event, but in Chrome this event doesn't fire when ALT key is pressed. Thanks in advance :).
PeterF
  • 61
  • 1
  • 8
1
vote
0 answers

docker-machine not using aws credentials file available

On my Ubuntu 18.04.02 LTS I have docker, docker-machine and docker-compose: Docker version 18.06.1-ce, build e68fc7a docker-machine version 0.15.0, build b48dc28 docker-compose version 1.22.0, build unknown I am following the testdriven.io…
1
vote
1 answer

Secret Key / Access Key with Azure Active Directory, enterprise application, app roles?

We are working on WEB APIs and want to integrate Azure AD for AuthN and AuthZ. We have successfully integrated the same. We have created enterprise applications, custom roles, assigned users for the same. Now we need to allow access to APIs with AWS…
GMCS
  • 21
  • 3
1
vote
0 answers

How to use a combination of alphabets as access-key?

I want to use a combination of alphabets as access key but how to use i could not make out please help this regard? also i want to know the shortcut key for auto-hide symbol for any window(Properties, SolutionExplorer etc)
Learner
  • 1,544
  • 8
  • 29
  • 55
1
vote
1 answer

Using Google Drive access token from multiple devices

Today - Users' Google Drive access tokens - which are obtained when a user authenticates the app - are kept in my backend, linked to the authenticated user. So when a user authenticates once from any platform - he will have the same Google Drive…
Dror Fichman
  • 1,559
  • 1
  • 14
  • 16
1
vote
1 answer

How to override / disable firefox menu shortkeys using Javascript for accesskey

I have a web-application in which I use accesskey attribute to certain buttons. However I can't set alt + F accesskey since it opens the File menu of the firefox. I have tried the following code onkeydown = function(e){ if(e.altKey &&…
Sabin Chacko
  • 713
  • 6
  • 17
1
vote
2 answers

C#.NET : How to set arabic or other languages' characters as access keys for a textbox control?

Till now, I was using my software in English language only, now it is being converted to multi-languages, so all the access keys are being dead while computer language is set to other than English, I want to use my shortcut access key ALT + F in…
1
vote
1 answer

WPF Issue with same ALT hotkey

I have a window with 3 textboxes and labels with following properties:
1
vote
1 answer

JavaScript simulate Accesskey-Press

I was wondering if there is a way to simulate pressing an accesskey with JavaScript. It should work with the following html: Here is my approach with jQuery (pressing ALT+Z in Chrome): var e =…
user2043423
  • 171
  • 1
  • 10
1
vote
2 answers

understanding accesskeys for accessibility

I'm trying to make my navigation as accessible as it gets and I'm considering to add some accesskey-shortcuts for it, but have some doubts. 1) There's possibility the accesskeys may come into conflict with some of the key-binds on the user-area…
jiostoph
  • 35
  • 4
1
vote
0 answers

button onclick="" vs $(document).on("click",...)

I have quite a curious case, regarding jquery and html. The HTML code for page is, as follows and whenever i click accesskey - everything works just fine. But…
Tom
  • 95
  • 2
  • 9
1
vote
1 answer

Changing key in Mifare 4K Card

Can anyone please tell me how to change a key in a Mifare 4K classic card. What I tried was + access bits + 0xAA 0xAA 0xAA 0xAA 0xAA 0xAA 0X78 0x77 0x88 0x69 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF But the key refuses to change. The default…
vikky
  • 11
  • 2
1
vote
3 answers

Showing html site Access Keys

I am trying to come up with a good way of displaying Access Key shortcuts on my html5 page. Some places recommend using the first letter of a link/tab/heading/whatever as the access key, so as to be intuitive. Those places generally recommend that…
Linden
  • 34
  • 5
1
vote
5 answers

& sign in LinkLabel Text

I want to display the text a&b in my LinkLabel.Text. linkLabel1.Text = "a&b"; This displays: ab If I change the code to: linkLabel1.Text = "a&&b"; one & sign will show. a&b Is this the correct way to print one ampersand?
1
vote
3 answers

HTML element keyboard shortcut without alt key

I have a button that is accessed by a keyboard shortcut but the users have to press ALT+Z. Is there anyway to let the users access the button by simply pressing Z (or some other key) without having to press ALT? Many thanks,
Fred
  • 461
  • 3
  • 9
  • 21