Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread J. Landman Gay via use-livecode
On 9/21/17 12:57 PM, Sannyasin Brahmanathaswami via use-livecode wrote: Would be super if we could build this into the widget.. so you could, e.g set the width to 100 pixels height to 20 align the SVG to the left, center or right but the whole 100X20 region would be reactive, even if the SVG

Re: Best way to copy from one stack to another

2017-09-21 Thread Brian Milby via use-livecode
Just thought I'd try this out and see if there is another option. If you right click on a card and dismiss the pop-up menu, then the edit menu changes to "Cut Card", "Copy Card", "Clear Card", and "Duplicate Card" although Clear and Duplicate don't seem to do anything. Probably not much more

Re: Moving on from 8.* to 9.*

2017-09-21 Thread Brian Milby via use-livecode
DP9 should have the fixes from the 8 branch. Essentially any bug fix on the 8.1 branch will get merged into the 8.2 branch. Any bug fixes from 8.1 or 8.2 will get merged into the 9.0 branch. In GitHub, there have been a bunch of these type of merges recently. If you are up to compiling the

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Alex Tweedly via use-livecode
On 21/09/2017 16:14, Richard Gaskin via use-livecode wrote: Alex Tweedly wrote: > I do not currently have "mobile text field objects" - all I have > are just standard LC fields, so returninfield is all I need for > the 'return' part of the problem - no need for 'inputReturnKey'. If this is

Re: Best way to copy from one stack to another

2017-09-21 Thread Bob Sneidar via use-livecode
The other way to force the card to be selected is to double click somewhere where there are no visible objects. This will open the Card Inspector at which point the menus will work accordingly. Bob S > On Sep 21, 2017, at 16:12 , Bob Sneidar via use-livecode >

Re: Best way to copy from one stack to another

2017-09-21 Thread Bob Sneidar via use-livecode
Ill be dammed. Gobsmacked. It appears that the menu *ought* to change contextually when you click on a card, but doesn't. Right clicking on the card seems to force the IDE to focus on the card itself. Neat trick. It also reveals that the IDE was written and intended to allow

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Jim Lambert via use-livecode
Some mobile UI’s, when first showing a scrolling list that extends below the visible area, will slightly “bounce” the list contents up then back down. This does double duty. It briefly reveals the hidden content and indicates that the list is scrollable. And it works regardless of screen

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Roger Eller via use-livecode
Have you tried...? *on* rawKeyDown *if* pKeyPressed is 65293 *then* replace cr with empty in me select after me *end if* pass rawKeyDown *end* rawKeyDown On Wed, Sep 20, 2017 at 5:40 PM, Alex Tweedly via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks for the

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Roger Eller via use-livecode
The text WAS formatted and colorized. Apparently the listserv modified it. The words enclosed in asterisks WERE in bold. ~Roger On Thu, Sep 21, 2017 at 8:59 AM, Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > what do the asterisks do? > > On Thu, Sep 21, 2017 at 6:58

Re: Best way to copy from one stack to another

2017-09-21 Thread Randy Hengst via use-livecode
Take a look at “copy” in the dictionary… I’ve used this script in a button on a card I wanted to move: on mouseUp copy this card to stack “targetStack" end mouseUp > On Sep 21, 2017, at 12:19 AM, ELS prothero via use-livecode > wrote: > > Folks: > With all

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Mike Kerner via use-livecode
what do the asterisks do? On Thu, Sep 21, 2017 at 6:58 AM, Roger Eller via use-livecode < use-livecode@lists.runrev.com> wrote: > Have you tried...? > > *on* rawKeyDown >*if* pKeyPressed is 65293 *then* > replace cr with empty in me > select after me >*end if* >pass

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread Bob Sneidar via use-livecode
Whut? All that will do is replace spaces with spaces. That will not reverse the order of the typed text. Bob S > On Sep 21, 2017, at 03:00 , hh via use-livecode > wrote: > > on textChanged > replace space with space in me -- or whatever > end textChanged

Re: Best way to copy from one stack to another

2017-09-21 Thread Dr. Hawkins via use-livecode
On Thu, Sep 21, 2017 at 4:05 AM, Randy Hengst via use-livecode < use-livecode@lists.runrev.com> wrote: > > > copy this card to stack “targetStack" Or even make the old stack (or a copy of oil) a sub stack of the new stack. -- Dr. Richard E. Hawkins, Esq. (702) 508-8462

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Bob Sneidar via use-livecode
That used to be a scroll bar. Of course mobile devices do not have those, they have wheels. Perhaps using a scrolling wheel is a better choice for lists. Bob S > On Sep 21, 2017, at 08:14 , Mike Kerner via use-livecode > wrote: > > I agree with J. The

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Richard Gaskin via use-livecode
Alex Tweedly wrote: > I do not currently have "mobile text field objects" - all I have > are just standard LC fields, so returninfield is all I need for > the 'return' part of the problem - no need for 'inputReturnKey'. If this is just for yourself then the following may not matter much, since

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Mike Kerner via use-livecode
It has to be visible, which is a problem on ios, at least. On Thu, Sep 21, 2017 at 11:20 AM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > That used to be a scroll bar. Of course mobile devices do not have those, > they have wheels. Perhaps using a scrolling wheel is a

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Mike Kerner via use-livecode
and even the presence of a scrollbar on a desktop interface doesn't really jump up and say "THERE'S MORE!" because it can be disabled due to there not being anything more. The difference can be subtle. On Thu, Sep 21, 2017 at 11:26 AM, Mike Kerner wrote: > It has to

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread hh via use-livecode
> > hh wrote: > > on textChanged > > replace space with space in me -- or whatever > > end textChanged > Bob S. wrote: > Whut? All that will do is replace spaces with spaces. That will not reverse > the order of the typed text. (Instead of "space" use also any other char, for example "cr") It

Re: Moving on from 8.* to 9.*

2017-09-21 Thread Richard Gaskin via use-livecode
Sannyasin Brahmanathaswami wrote: > 1) using 9. that old doesn’t' work for us.. We have got too much > vested in 8.* that works well, can't risk it. When v9 goes final v8 will no longer be maintained. Given the changes we can expect in OSes, esp. mobile, not keeping current will eventually

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Mike Kerner via use-livecode
I agree with J. The simplest visual cue that there is something in the box is for the lid to be ajar. Cabinets with the door ajar begged to be open. Doors that are mostly but not completely closed are the same way. Lists should carry the same cue. On Thu, Sep 21, 2017 at 1:45 AM, Alan via

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Bob Sneidar via use-livecode
Me too. :-) Bob S > On Sep 21, 2017, at 08:11 , Mike Kerner via use-livecode > wrote: > > Yes, I was trying to be funny, but it didn't work like I was hoping... ___ use-livecode mailing list

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Bob Sneidar via use-livecode
confuse people. It's a function of copying from his email app. Bob S > On Sep 21, 2017, at 05:59 , Mike Kerner via use-livecode > wrote: > > what do the asterisks do? ___ use-livecode mailing list

Re: Best way to copy from one stack to another

2017-09-21 Thread William Prothero via use-livecode
Thanks, Richard. I guess I could do that for specific elements on a card too. Pretty simple. I had expected I could just cut and paste from the project browser. Just coding it is easy too. Bill P William A. Prothero http://earthlearningsolution.org/ > On Sep 21, 2017, at 7:57 AM, Dr. Hawkins

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Mike Kerner via use-livecode
Yes, I was trying to be funny, but it didn't work like I was hoping... On Thu, Sep 21, 2017 at 10:43 AM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > confuse people. It's a function of copying from his email app. > > Bob S > > > > On Sep 21, 2017, at 05:59 , Mike Kerner

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread dunbarx via use-livecode
Hi. Not sure at all what that handler does. But something like this, off the top of my head: on keyDown, tKey if the optionKey is down then put return & tKey before me else put tKey before me end keyDown Craig Newman -- Sent from:

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread AndyP via use-livecode
Easiest way... add this to the field on returninField exit returninField end returninField - Andy Piddock My software never has bugs. It just develops random features. TinyIDE a Free alternative minimalist IDE Plugin for LiveCode TinyIDE Script editor Themer for LC

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread AndyP via use-livecode
Add this to the field script on returninField exit returninField end returninField - Andy Piddock My software never has bugs. It just develops random features. TinyIDE a Free alternative minimalist IDE Plugin for LiveCode TinyIDE Script editor Themer for LC http://2108.co.uk

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread Richard Gaskin via use-livecode
hh wrote: > hh wrote: > on textChanged > replace space with space in me -- or whatever > end textChanged Bob S. wrote: Whut? All that will do is replace spaces with spaces. That will not reverse the order of the typed text. (Instead of "space" use also any other char, for example "cr") It

Re: Moving on from 8.* to 9.*

2017-09-21 Thread Sannyasin Brahmanathaswami via use-livecode
I'm naïve about how these branches work. Probably need a firmware update in my brain on this whole "future" versions thing. I had to "regress' to 8.1.7 RC1 because 8.2 DP 1 because the IDE melted down pretty rapidly. You wrote: " When v9 goes final v8 will no longer be maintained" Yes, of

Re: SivaSiva iOS App Approved - Android Issues/AcceleratedRendering issues

2017-09-21 Thread Sannyasin Brahmanathaswami via use-livecode
Jonathan Right -- Excellent. Thanks. I missed that before.. and yes I had this same experience and asked myself "What happened?" OK I'll have to go back and look that up, well work doing. Agreed. I guess was testing so much in Android, I forgot that apple actually closes. Would be nice to

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread Mike Kerner via use-livecode
well, if you have tmc2, then native mobile fields are a breeze. If you don't, then they're still pretty easy once you make your first one. On Thu, Sep 21, 2017 at 7:32 PM, Alex Tweedly via use-livecode < use-livecode@lists.runrev.com> wrote: > On 21/09/2017 16:14, Richard Gaskin via

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Sannyasin Brahmanathaswami via use-livecode
done http://quality.livecode.com/show_bug.cgi?id=20445 please add as you think useful. On 9/21/17, 11:51 AM, "use-livecode on behalf of J. Landman Gay via use-livecode" wrote: >Would be super if we could

Re: Best way to copy from one stack to another

2017-09-21 Thread J. Landman Gay via use-livecode
I'm astounded too. I wonder how long that's been there. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 21, 2017 6:14:49 PM Bob Sneidar via use-livecode wrote:

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Sannyasin Brahmanathaswami via use-livecode
I've seen that also, though it looks cool initially, I'm not sure a regular user of the app would want to have that "noise" every time they go to that screen it it were a "home" screen. But it's a good option for some use cases, for sure. But following on Jacque's essay on user testing and

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread Richard Gaskin via use-livecode
Mark Waddingham wrote: > Whenever a range of text is set in a field, the selection is set to > the beginning of the chunk that was set - so in the case of 'replace' > acting on the whole field, that would be the beginning. > > Using the '(replacing | preserving) styles' form works slightly >

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread Sannyasin Brahmanathaswami via use-livecode
Yes… that's my plan… all I have to do is shrink the rows by 15 pixels vertically and the 4th one will pull up at the bottom of the screen. A bit tedious, but can do this with some toolbox scripts… so , not too hard. Actually now that I have 24 objects = 3 each for 8 rows (each one has a bkgrnd

Re: Best way to copy from one stack to another

2017-09-21 Thread J. Landman Gay via use-livecode
For some reason I've never understood, there is no menu item to copy a card, but it is easy to do in script or the message box: copy this card Once that's done you can use Cmd-V to paste the card into the target stack. Alternately you can do: copy card x of stack y to stack z For only

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread Mark Waddingham via use-livecode
On 2017-09-21 19:48, Mark Waddingham via use-livecode wrote: For example, let's say you have a right to left language FOO which has letters A, B, C; compared to a left to right language BAR which has letters X, Y and Z. Hello in FOO is spoken A-B-C; Hello in BAR is spoken X-Y-Z. However, as

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread Jonathan Lynch via use-livecode
Maybe share a sample stack when you get it worked out? This could be useful for users in places that use right-to-left text. We could with sticking points that way. Sent from my iPhone > On Sep 21, 2017, at 2:03 PM, Mark Waddingham via use-livecode > wrote: >

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread hh via use-livecode
> Craig wrote: > The textChanged handler sort of works. If you leave the field and replace the > cursor, the next char goes after the currently selected line. From then on it > goes before the current text.The backspace key does not really work. Hey, of course it works. When editing it deletes

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread hh via use-livecode
> R.G. wrote > Indeed it does. At first glance the behavior seems at least > unintuitive. It also appears to prevent the Backspace key from having > any effect. Is it a bug? A feature? You can also edit one char at a time. Isn't that a feature for right to left languages? One has simply to

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread hh via use-livecode
Of course it is essentially: on textchanged select before me end textchanged ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Setting the acceleratedRendering to true on startup on Android 7 and Android 8

2017-09-21 Thread J. Landman Gay via use-livecode
I have a Pixel that was just updated to Oreo (Android 8) and running Swami's app works okay. That's the one app I happen to have installed that uses acceleratedRendering quite a bit. He's made some changes recently that turns it on and off after the card has already loaded, but on some cards

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread Mark Waddingham via use-livecode
On 2017-09-21 18:48, Richard Gaskin via use-livecode wrote: Indeed it does. At first glance the behavior seems at least unintuitive. It also appears to prevent the Backspace key from having any effect. Is it a bug? A feature? Hmmm... On further consideration it may make sense, since the

Re: Scrolling Groups on Mobile - Show a little of what is below

2017-09-21 Thread J. Landman Gay via use-livecode
On 9/20/17 11:36 PM, Sannyasin Brahmanathaswami via use-livecode wrote: the proper way to do it is, says Jacque: create the rows so the bottom one is a bit cut off, otherwise a subset of users never try to scroll up! I'm not sure how proper it is, but it's what I do and it seems to work. I

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread dunbarx via use-livecode
Well it just goes to show that I do need a computer. Mental scripting only sounds, er, sound. This works: on keyDown, tKey    if the shiftkey is down and the capsLockKey is down then put tKey & return before me    else put tKey before me select before me end keyDown All the other "control"

Re: How to to type bottom to up and right to left in a field

2017-09-21 Thread dunbarx via use-livecode
Well, at least this explains it:\ "...essentially" on textchanged select before me end textchanged -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list

How to to type bottom to up and right to left in a field

2017-09-21 Thread hh via use-livecode
Because "textChanged" was also mentioned in a recent thread. This is a handler full of features: *** How to to type bottom to up and right to left in a field *** Simply script the field as follows and start typing. on textChanged replace space with space in me -- or whatever end textChanged

Re: Constraining an input field's contents to be a single line.

2017-09-21 Thread hh via use-livecode
Did you already try the following? This works here, also with pasted text. on textchanged lock screen; lock messages put the selectedChunk into sc replace cr with space in me -- or with empty select sc unlock screen; unlock messages end textchanged > > Mike B. wrote: > > If