Polygrid questions

2023-08-22 Thread Paul Dupuis via use-livecode
I see I have the properties of a polygrid for: pgColumns -- an array of all column properties and pgColumnWidths -- a comma delimited list of widths There does not seem to be a distinct property just for alignments, such as pgColumnAlignments What I need to do is change the width and/or ali

Re: [[ ANN ]] Release 9.6.10 RC-1

2023-08-22 Thread Tom Glod via use-livecode
Interesting, when I tried to use them recently they didn't work. Will test again, maybe it was my bad, thanks Mark. On Sun, Aug 20, 2023 at 3:09 AM Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2023-08-19 21:57, Tom Glod via use-livecode wrote: > > Hello, > > > > D

Re: Group corners

2023-08-22 Thread J. Landman Gay via use-livecode
It's probably about time to submit a bug report. The behavior we see isn't expected. On 8/22/23 12:12 PM, Dar Scott via use-livecode wrote: Arg. There is a pixel missing in the upper left corner even when the border width is 1. — Dar On Aug 22, 2023, at 7:05 A

Re: Behaviors

2023-08-22 Thread Mike Kerner via use-livecode
you probably know this: in the property inspector, there's a panel for behavior, so you can just select the behavior from a menu button, without having to type it On Tue, Aug 22, 2023 at 1:37 PM Dar Scott via use-livecode wrote: > > I figured out how to do it in the IDE. I needed to include “of s

Re: Behaviors

2023-08-22 Thread Dar Scott via use-livecode
I figured out how to do it in the IDE. I needed to include “of stack” in the reference. — Dar > On Aug 22, 2023, at 11:09 AM, Alex Tweedly via use-livecode > wrote: > > Not sure how it works in the IDE - seems a problem because it only presents > button in the current stack. > > So I do it a

Re: Group corners

2023-08-22 Thread Dar Scott via use-livecode
Arg. There is a pixel missing in the upper left corner even when the border width is 1. — Dar > On Aug 22, 2023, at 7:05 AM, Dar Scott via use-livecode > wrote: > > Yeah, the order of things seem to make a difference. It is sometimes hard to > do deltas. My lazy programming style is to rebuil

Re: Behaviors

2023-08-22 Thread Alex Tweedly via use-livecode
Not sure how it works in the IDE - seems a problem because it only presents button in the current stack. So I do it all in preOpen... scripts, doing something like set the behavior of fld "F" of grp tmpName to the long id of button "RichTextFieldBehaviour" of \ card "Behaviours" of st

Behaviors

2023-08-22 Thread Dar Scott via use-livecode
I am misremembering things about Behaviors. I have a card with my behavior buttons, but I can’t seem to point to buttons on that card. Maybe, I’m remembering what I did long ago with front scripts. I suppose I can use substacks, but I’m worried that the stacks would be in the message path. Is

Re: Group corners

2023-08-22 Thread Dar Scott via use-livecode
Yeah, the order of things seem to make a difference. It is sometimes hard to do deltas. My lazy programming style is to rebuild GUI features based on the current state whenever there is a change, and then look closer if that gets slow. > On Aug 21, 2023, at 7:44 PM, J. Landman Gay via use-live