Re: Has anyone created a specialised mobile keyboard?

2020-08-05 Thread scott--- via use-livecode
; Graham >>> >>> Sent from my iPhone >>> >>>> On 4 Aug 2020, at 14:41, JeeJeeStudio via use-livecode >>> lists.runrev.com> wrote: >>>> >>>> You can set which keyboard you want, like email, numeric >>>> >&g

Re: Has anyone created a specialised mobile keyboard?

2020-08-05 Thread Graham Samuel via use-livecode
few additional special symbols, but I don’t know if it’s possible > > to do in native mode, as it were. > > > > Graham > > > > Sent from my iPhone > > > >> On 4 Aug 2020, at 14:41, JeeJeeStudio via use-livecode >> lists.runrev.com> wrote

Re: Has anyone created a specialised mobile keyboard?

2020-08-04 Thread Richard Gaskin via use-livecode
s it were. > > Graham > > Sent from my iPhone > >> On 4 Aug 2020, at 14:41, JeeJeeStudio via use-livecode at lists.runrev.com> wrote: >> >> You can set which keyboard you want, like email, numeric >> >> it's in the dictionary, search on mobile keyboard

Re: Has anyone created a specialised mobile keyboard?

2020-08-04 Thread Rick Harrison via use-livecode
Hi Graham, I suspect that you will have to roll your own keyboard. You could take little screenshots of the native keys that you want, and then move them to where you want them to appear in your keyboard. Then just detect when someone has hit each of the keys and record the order. Easy? Good

Re: Has anyone created a specialised mobile keyboard?

2020-08-04 Thread J. Landman Gay via use-livecode
On 8/4/20 3:57 PM, Graham Samuel via use-livecode wrote: What I want to do is to design my own keyboard with numerals and a few additional special symbols, but I don’t know if it’s possible to do in native mode, as it were. You have to write keyboards in Swift or Kotlin or whatever language

Re: Has anyone created a specialised mobile keyboard?

2020-08-04 Thread Graham Samuel via use-livecode
an set which keyboard you want, like email, numeric > > it's in the dictionary, search on mobile keyboard > > > Op 4-8-2020 om 13:22 schreef Graham Samuel via use-livecode: >> In the iOS app I’m developing, it would be nice (I mean less confusing for >> the user) to di

Re: Has anyone created a specialised mobile keyboard?

2020-08-04 Thread JeeJeeStudio via use-livecode
You can set which keyboard you want, like email, numeric it's in the dictionary, search on mobile keyboard Op 4-8-2020 om 13:22 schreef Graham Samuel via use-livecode: In the iOS app I’m developing, it would be nice (I mean less confusing for the user) to display a keyboard with only certain

Has anyone created a specialised mobile keyboard?

2020-08-04 Thread Graham Samuel via use-livecode
In the iOS app I’m developing, it would be nice (I mean less confusing for the user) to display a keyboard with only certain keys - numerals and certain other letters and symbols, on the lines of the various native keyboards available (numeric, email etc). I see that I can create one from

Re: Mobile Keyboard

2020-07-06 Thread J. Landman Gay via use-livecode
I got busy and couldn't get back to this for a while. But the proposed fix isn't really any different from the one I've used and others have suggested. You still have to send a message on preOpen-anything and then do something that deselects the field, whether it's unsetting/setting

Re: Mobile Keyboard

2020-06-24 Thread J. Landman Gay via use-livecode
I'll have to try that. The last time I looked, the keyboard popped up briefly after openCard finished, and then went back down. On 6/24/20 1:46 PM, panagiotis merakos via use-livecode wrote: By the way, this has worked for me, tested on iOS: on preopenstack do_stuff send

Re: Mobile Keyboard

2020-06-24 Thread panagiotis merakos via use-livecode
By the way, this has worked for me, tested on iOS: on preopenstack do_stuff send "hideMobileKeyword" to me in 100 millisec end preopenstack on hideMobileKeyword focus on nothing end hideMobileKeyword Kind regards, Panos -- On Wed, 24 Jun 2020 at 21:40, J. Landman Gay via use-livecode

Re: Mobile Keyboard

2020-06-24 Thread J. Landman Gay via use-livecode
We've all had that problem: On 6/23/20 6:53 PM, Dan Friedman via use-livecode wrote: Ralph, I had this same issue on a project. The problem is when the card/stack opens, LiveCode want to activate the first typable field it finds. If my

Re: Mobile Keyboard

2020-06-24 Thread Paul Hibbert via use-livecode
; From: Dan Friedman [mailto:d...@clearvisiontech.com] > Sent: Tuesday, June 23, 2020 7:54 PM > To: How to use LiveCode > Cc: Ralph DiMola > Subject: Re: Mobile Keyboard > > Ralph, > > I had this same issue on a project. The problem is when the card/stack > ope

RE: Mobile Keyboard

2020-06-24 Thread Ralph DiMola via use-livecode
age in 100 ticks. Works great now. Thanks! Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: Dan Friedman [mailto:d...@clearvisiontech.com] Sent: Tuesday, June 23, 2020 7:54 PM To: How to use LiveCode Cc: Ralph DiMola Subject:

RE: Mobile Keyboard

2020-06-24 Thread Ralph DiMola via use-livecode
, June 23, 2020 7:54 PM To: How to use LiveCode Cc: Ralph DiMola Subject: Re: Mobile Keyboard Ralph, I had this same issue on a project. The problem is when the card/stack opens, LiveCode want to activate the first typable field it finds. If my old memory is correct, what I did

Re: Mobile Keyboard

2020-06-23 Thread Dan Friedman via use-livecode
Ralph, I had this same issue on a project. The problem is when the card/stack opens, LiveCode want to activate the first typable field it finds. If my old memory is correct, what I did was this: on preOpenCard set the lockText of fld "thisDarnField" to true end preOpenCard on

Mobile Keyboard

2020-06-23 Thread Ralph DiMola via use-livecode
I have a card with one focusable input field. How can I keep the keyboard from opening until the user taps into the field? I tried putting "focus on nothing"s in various places such as preopencard and opencard with no success? I think this has been discussed before. Was there ever a solution for

Re: Detect Return From Mobile Keyboard Without Native Field?

2016-07-14 Thread Richard Gaskin
Scott Rossi wrote: > Well, native fields have been finicky for me on Android (and still > are). > Apparently unless native fields exceed a certain height dimension, > they briefly show scrollbars when focused, even single line fields. > Focus (perhaps only in my case) has been unreliable, and

Re: Detect Return From Mobile Keyboard Without Native Field?

2016-07-14 Thread Scott Rossi
nField > >answer millisecs() > > end returnInField > > > > When I press characters on the mobile keyboard, they appear in the > > field, but when I press return, the cursor moves in the field but > > nothing else happens. > >Did you include the

Re: Detect Return From Mobile Keyboard Without Native Field?

2016-07-14 Thread Richard Gaskin
rd script: > > on returnInField >answer millisecs() > end returnInField > > When I press characters on the mobile keyboard, they appear in the > field, but when I press return, the cursor moves in the field but > nothing else happens. Did you include the Answer Dialog

Re: Detect Return From Mobile Keyboard Without Native Field?

2016-07-14 Thread Scott Rossi
Thanks for checking Richard. How did you do your test? Using a Nexus 5X here, so recent hardware. I place a standard LiveCode field a card (nothing native), and in the card script: on returnInField answer millisecs() end returnInField When I press characters on the mobile keyboard

Re: Detect Return From Mobile Keyboard Without Native Field?

2016-07-14 Thread Richard Gaskin
Scott Rossi wrote: > On Android... I have values in some standard fields (not native) > that I need to send to a handler. How can I trap the return key > event on the mobile keyboard without having focus on a native field? > Neither inputReturnKey or returnInField appears to g

Detect Return From Mobile Keyboard Without Native Field?

2016-07-14 Thread Scott Rossi
On Android... I have values in some standard fields (not native) that I need to send to a handler. How can I trap the return key event on the mobile keyboard without having focus on a native field? Neither inputReturnKey or returnInField appears to get triggered. Thanks for any suggestions