Clicking on a flashing arrow

Post all technical issues and questions here. We'll gladly help you wherever we can.
Post Reply
DMgooner
Curious Newbie
Curious Newbie
Posts: 2
Joined: Fri Jul 12, 2024 3:01 am

Clicking on a flashing arrow

Post by DMgooner »

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
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

Post by Thamrill »

DMgooner 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?
If you mean advance text with the small circle and arrow, then pressing the spacebar should work
Image

Image

Image
User avatar
Evals
Explorer At Heart
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

Post by Evals »

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">).
Evals
Image
User avatar
indyc
Explorer At Heart
Explorer At Heart
Posts: 530
Joined: Sun Mar 28, 2021 10:03 pm
Contact:

Re: Clicking on a flashing arrow

Post by indyc »

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">).
This would be HUGE for Keystroke if ever implemented. Here's hoping!
Post Reply