Clicking on a flashing arrow
Clicking on a flashing arrow
Is there a way to click on a tab that's in a tease without having to use my mouse? Like when the tease commands you to do something and to let the program know that you've done it you must left-click on a box that says you did. Is there a way to just hit a key on your keyboard, rather than left clicking on it with your mouse?
-
Thamrill
- Explorer At Heart

- Posts: 301
- Joined: Thu Jan 03, 2013 4:55 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
Re: Clicking on a flashing arrow
If you mean advance text with the small circle and arrow, then pressing the spacebar should workDMgooner wrote: Fri Sep 20, 2024 5:08 am Is there a way to click on a tab that's in a tease without having to use my mouse? Like when the tease commands you to do something and to let the program know that you've done it you must left-click on a box that says you did. Is there a way to just hit a key on your keyboard, rather than left clicking on it with your mouse?
- Evals
- Explorer At Heart

- Posts: 431
- Joined: Mon May 07, 2007 2:42 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Dom/me(s): Owned
Re: Clicking on a flashing arrow
It's not possible to navigate to those buttons via keyboard controls and it's actually a major accessibility issue for anybody using an assistive device.
The problem is that the "button" is implemented as a <div> HTML element, and is not a native <input type="button"> or <button> element. It should be a very simple fix for Seraph0x to swap out the element with the click listener on it. He could either replace it with one of the two recommended elements, or decorate it with the appropriate attributes to make it behave more like a native button (i.e. <div tabindex="0" role="button">).
The problem is that the "button" is implemented as a <div> HTML element, and is not a native <input type="button"> or <button> element. It should be a very simple fix for Seraph0x to swap out the element with the click listener on it. He could either replace it with one of the two recommended elements, or decorate it with the appropriate attributes to make it behave more like a native button (i.e. <div tabindex="0" role="button">).
Evals


Re: Clicking on a flashing arrow
This would be HUGE for Keystroke if ever implemented. Here's hoping!Evals wrote: Fri Sep 20, 2024 11:40 pm It's not possible to navigate to those buttons via keyboard controls and it's actually a major accessibility issue for anybody using an assistive device.
The problem is that the "button" is implemented as a <div> HTML element, and is not a native <input type="button"> or <button> element. It should be a very simple fix for Seraph0x to swap out the element with the click listener on it. He could either replace it with one of the two recommended elements, or decorate it with the appropriate attributes to make it behave more like a native button (i.e. <div tabindex="0" role="button">).

