Page 1 of 1

Delete key failing in html standalone?

Posted: Sat May 02, 2020 1:37 pm
by LeProfBard
Hi,
I have several text fields that capture user input, but when saved as a standalone, the delete/backspace key (Mac) is non-functional. I've tried this in Chrome and in Firefox and will be testing it on other OS and browsers, but I need to fix this. Any suggestions?

Re: Delete key failing in html standalone?

Posted: Mon May 04, 2020 6:58 pm
by LeProfBard
To provide some additional information, the Delete key works perfectly in Safari (Mac), but fails on every other browser.

Re: Delete key failing in html standalone?

Posted: Wed May 20, 2020 7:55 am
by sphere
Best is to create a bug report for this on quality.livecode.com/, as it seems you are very clear about it.

Re: Delete key failing in html standalone?

Posted: Wed May 20, 2020 10:38 am
by richmond62
Here's a thought . . . .

(Macintosh computer)

The rawKey code for backwards delete is 65288

the rawKey Code for forwards delete is 65535

Now, were I in this sort of position I might try a work-around a bit like this:

Code: Select all

on rawKeyUp RK
if RP = 65288 then
put codePointToChar(0x65288) after field "WhateverYouCallIt"
else
pass rawKeyUp
end if
end rawKeyUp