Re: Reorder fields

2023-07-28 Thread J. Landman Gay via use-livecode
You can toggle what gets selected with the "Select Grouped" icon in the top toolbar. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On July 28, 2023 10:53:08 AM Mark Smith via use-livecode wrote: Well, this might explain it. The

Re: Reorder fields

2023-07-28 Thread Mark Smith via use-livecode
You hit the nail on the head. Select grouped was not selected so each field / label looked independent (and could be independently selected). But in fact they were grouped. With select grouped off the fields could not be rearranged. Turning it on enabled layering the groups (containing the

ICYMI: 2024 app store API tightening

2023-07-28 Thread Mike Kerner via use-livecode
Saw this in ZDNet: Certain iOS (and presumably macos) apis will require specific justification to be used, starting 2024: https://www.zdnet.com/article/developers-have-new-apple-app-store-rules-to-follow ___ use-livecode mailing list

Re: Reorder fields

2023-07-28 Thread Geoff Canyon via use-livecode
Also check out the relayerGroupedControls property. It probably would have led to even greater confusion in this instance, but it's good to know about it and what it does. From the dictionary: "Specifies whether you can change the layer of controls in a group even if not in group-editing mode." I

Re: Reorder fields

2023-07-28 Thread J. Landman Gay via use-livecode
Layering works in the property inspector for me. The clue is that any layer you set moves everything above that layer one position higher. So if I want field b to layer lower than field c, I would set b's layer to what is currently c's layer. That would push c to one layer higher than b. --

Re: charIndex property

2023-07-28 Thread Bob Sneidar via use-livecode
This is the essence on Livecode! This is why we love it! Shouldn’t we rebrand it? How about Lovecode?? ….. Never mind.  Sent from my iPhone > On Jul 28, 2023, at 04:55, Paul Dupuis via use-livecode > wrote: > > On 7/27/2023 5:06 PM, Mark Waddingham via use-livecode wrote: >> Oh those

Re: Reorder fields

2023-07-28 Thread Craig Newman via use-livecode
Why does, as Paul suggests, changing the layer order in the Project Browser work, whereas changing the layer order explicitly does not? We know that layers cannot be assigned to a particular object class (like fields) but include all controls at once. Is it possible that the layer order of the

Re: Reorder fields

2023-07-28 Thread Mark Smith via use-livecode
Well, this might explain it. The original designer had grouped the labels and the fields into groups (so label A and field A into grp A, etc). I was trying to change the order of the fields, (oddly, when you select the label or the field on the form it does not select a group, so I never

Re: charIndex property

2023-07-28 Thread Paul Dupuis via use-livecode
On 7/27/2023 5:06 PM, Mark Waddingham via use-livecode wrote: Oh those pesky chunks which don’t ‘cover’ the target string (which is actually all of them except codeunit/point/char come to think of it). I should have run through a few more examples in my head before posting…. Alternative

Reorder fields

2023-07-28 Thread Mark Smith via use-livecode
How do you reorder fields? I have a form (prebuilt) with 3 fields (a,b,c) in positions 9, 15, 12 (as indicated by the Layer field in the Position tab). Tabbing cause these fields to be visited in the order a, c, b whereas I would prefer a, b, c. I have tried all manner of editing the Layer

Re: Reorder fields

2023-07-28 Thread Craig Newman via use-livecode
Hi. Not sure why the tabbing order seems to be out of whack, but you can always force the issue by trapping the tabKey message in each field, and directing it to the next one of you own choice. Craig > On Jul 28, 2023, at 6:19 AM, Mark Smith via use-livecode > wrote: > > How do you reorder

Re: Reorder fields

2023-07-28 Thread Craig Newman via use-livecode
I was sloppy, as usual. Trap the message in the card, and use the target to know where you are and where to go next. Craig > On Jul 28, 2023, at 9:36 AM, Craig Newman via use-livecode > wrote: > > Hi. > > Not sure why the tabbing order seems to be out of whack, but you can always > force

Re: Reorder fields

2023-07-28 Thread Paul Dupuis via use-livecode
You can change the layer (order) in the Project Browser in the IDE by just dragging the objects up or down the list of objects on the card. On 7/28/2023 6:19 AM, Mark Smith via use-livecode wrote: How do you reorder fields? I have a form (prebuilt) with 3 fields (a,b,c) in positions 9, 15,

Re: Reorder fields

2023-07-28 Thread Mark Smith via use-livecode
Thanks Paul. That is one of those super helpful tips that is hard to discover on your own. 1 day we need an easily searchable wiki for all this acquired wisdom (but for now I have tucked it away for future reference). Thanks for replying. Mark > On 28 Jul 2023, at 3:00 pm, Paul Dupuis via