Re: Behaviors

2023-08-24 Thread Geoff Canyon via use-livecode
I'll admit it's not very intuitive, but: In Navigator, right-click any button. On the context menu, select Copy > Objects. Navigate to any control or card, stack, etc. Bookmarks are fine for this as well. Right-click any other control. On the context menu, select Set Copied Btn as Behavior. On

Polygrid sorting

2023-08-24 Thread Paul Dupuis via use-livecode
The Polygrid, unlike the Datagrid, has no built in column sorting. You have to roll your own. Before I write my own, has anyone written a column sort (i.e click on a column header to sort by it) for a Poly grid they'd care to share? ___

Re: Behaviors

2023-08-24 Thread Mike Kerner via use-livecode
polygrid the api is similar, but they also have some nice additional features. i have ripped all my dg's and replaced them with pg's. now, if you're using custom templates, have a look at the pl - polyList. On Thu, Aug 24, 2023 at 2:12 PM Bob Sneidar via use-livecode wrote: > > Ah thanks for

Re: Polygrid columns not fully clearing when pgColumns is set

2023-08-24 Thread Paul Dupuis via use-livecode
In this particular case, the table being displayed in the polygrid is based on datasets that researcher loads into our application and the number of rows and columns can vary widely as well as the column names/labels and type of data. Rather than conduct a large analysis to determine which of

Re: Polygrid columns not fully clearing when pgColumns is set

2023-08-24 Thread Bob Sneidar via use-livecode
Why not get the pgColumns first, alter only the array element needed for the specific column(s), then set the pgColumns of the PolyGrid? Bob S > On Aug 24, 2023, at 1:26 PM, Paul Dupuis via use-livecode > wrote: > > Thanks Klaus. > > I may use this method rather than the overhead of

Re: OT - Mac Notarization Problem - Desperation setting in

2023-08-24 Thread matthias rebbe via use-livecode
Timothy, so running the following command from step 7.1.2 of that lesson xcrun notarytool submit --apple-id "" --password "" --team-id --wait "" gives you the 401 error or are you using the parameter --keychain-profile instead of the three parameters --password,--team-id and --apple-id? If

Re: Polygrid columns not fully clearing when pgColumns is set

2023-08-24 Thread Paul Dupuis via use-livecode
Thanks Klaus. I may use this method rather than the overhead of clearing and setting the whole pgData property. Actually, the more I think about it, neither "method" should be needed. This is a polygrid bug. If you set the pgColumsn to fewer column, regardless of whether there is left over

Re: Polygrid columns not fully clearing when pgColumns is set

2023-08-24 Thread Klaus major-k via use-livecode
Hi Paul, > Am 24.08.2023 um 20:30 schrieb Paul Dupuis via use-livecode > : > > Aha, I was setting pgColumns to the fewer columns and THEN pgData to the > smaller data set to match the columns > You need to clear the pgData (set to empty) first, then set the columns, then > set the new pgData.

Re: Polygrid columns not fully clearing when pgColumns is set

2023-08-24 Thread Paul Dupuis via use-livecode
Aha, I was setting pgColumns to the fewer columns and THEN pgData to the smaller data set to match the columns You need to clear the pgData (set to empty) first, then set the columns, then set the new pgData. Perhaps this is a documentation bug? On 8/24/2023 2:26 PM, Paul Dupuis via

Polygrid columns not fully clearing when pgColumns is set

2023-08-24 Thread Paul Dupuis via use-livecode
Hi to any polygrid developers out there, Please see bug https://quality.livecode.com/show_bug.cgi?id=24315 I have run into an issue with the latest polygrid (as of this post) where if you set pgColumns to a new array that reduces the number of columns in the grid, some old columns are not

Re: Behaviors

2023-08-24 Thread Bob Sneidar via use-livecode
Ah thanks for that. Yes, I knew how to nest behaviors for datagrids, but I never use the Project Browser because of issues I had many years ago. I may have another look. What is a “pg”? I make extensive use of Datagrid properties, and whatever I might replace them with needs to provide ALL

Re: Behaviors

2023-08-24 Thread Mike Kerner via use-livecode
i'm pretty sure you can set a dg's behavior. then you would set the behavior of that behavior to the button behavior (button id 1005 of stack "revDataGridLibrary"), OR you can include THAT script, separately, set that as the behavior, and modify it (but, what you should really do is remove your

OT - Mac Notarization Problem - Desperation setting in

2023-08-24 Thread Timothy Bleiler via use-livecode
Hi all, I believe the problem I’m having is either on Apple’s end or something with my local configuration but Apple has not been very helpful and I’m running out of ideas, so I’m turning to the wealth of experience on this list in desperation. I’ve been using the lessons from Matthias Rebbe

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Randy Hengst via use-livecode
I built for windows using 9.6.9… just heard from my friend that he could open the app. Thanks all for the ideas and information. take care, randy Randy Hengst classroomfocusedsoftware.com > On Aug 24, 2023, at 10:41 AM, William Prothero via use-livecode > wrote: > > I have an ios app

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread William Prothero via use-livecode
I have an ios app that I built for myself only. I was able to load the app on my iphone for debugging. It works fine, for me, in normal use. You may be able to do the same with your friend's device. It saves a lot of the trouble with certificates, etc. you might search the forum on

Re: Behaviors

2023-08-24 Thread Bob Sneidar via use-livecode
There is also the Advanced button in the property inspector (looks like one large gear with two smaller ones) where you can type the behavior, and also has the target icon. Also, you shouldn’t have to do that every time. Once should be enough if you save the stack afterwards. I note that

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Bob Sneidar via use-livecode
Oh right, I think I DID have to confirm that I want to run the app on both Windows and Mac. I suppose that would be an issue if I was distributing commercially. Bob S On Aug 24, 2023, at 8:20 AM, Bob Sneidar wrote: I build for Windows and do not need a certificate. I’ve run my app on

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Bob Sneidar via use-livecode
I build for Windows and do not need a certificate. I’ve run my app on Windows 10 and server 2019 without an issue. Bob S On Aug 24, 2023, at 6:28 AM, Randy Hengst via use-livecode wrote: Hi All, This all very interesting. I haven’t built for windows in about 10 years. So, I’ve never

Linux and the search for a controllable Web Browser

2023-08-24 Thread Derek Bump via use-livecode
Good Day, I've been wrestling with the Browser widget on Linux long enough now that I've largely given up on using it for anything destined for a production environment. However, that has not reduced my need for a browser which I can control in my specific use-case: open a streaming video url,

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Klaus major-k via use-livecode
Hi Randy, > Am 24.08.2023 um 15:49 schrieb Randy Hengst via use-livecode > : > > Excellent! Thank you, Klaus. my pleasure! > Does the current version of windows look the same as your screen shots? Sorry, no idea, my last Win version is 10, as shown in the pics. > take care, > randy > >

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Randy Hengst via use-livecode
Excellent! Thank you, Klaus. Does the current version of windows look the same as your screen shots? take care, randy Randy Hengst classroomFocusedSoftware.com > On Aug 24, 2023, at 8:42 AM, Klaus major-k via use-livecode > wrote: > > Hi Randy, > >> Am 24.08.2023 um 15:28 schrieb Randy

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Klaus major-k via use-livecode
Hi Randy, > Am 24.08.2023 um 15:28 schrieb Randy Hengst via use-livecode > : > > Hi All, > > This all very interesting. I haven’t built for windows in about 10 years. So, > I’ve never messed with signing certificates. > I’ve downloaded and played with Matthias’ CodeSigning Tool… seems very >

Re: OT - a new release of WinSignHelper for macOS

2023-08-24 Thread Randy Hengst via use-livecode
Hi All, This all very interesting. I haven’t built for windows in about 10 years. So, I’ve never messed with signing certificates. I’ve downloaded and played with Matthias’ CodeSigning Tool… seems very straight forward. But, I’m trying to build an app only for a friend to use for free and,