Extras to make LC10 more usable for deploy to Web.

2025-03-03 Thread Alex Tweedly via use-livecode
Hi, I know someone (Matthias?, Andreas? ??) posted some really useful info / stacks to fill in the missing gaps to make deploy-to-web more usable. At the time, I was focussed on other things, and now I can't find them. I tried to look through the list archives, but no luck. Can someone pleas

Re: Datagrid question

2025-03-03 Thread Craig Newman via use-livecode
Hi. It is likely that the dgColumnWidth has to act on each column individually, and is accessed in array notation, as in, for example: set the dgColumnWidth[“col1”] to yourWidthHere You can loop through all the columns that way, I suppose. Craig > On Mar 3, 2025, at 2:41 PM, jbv via use-live

Re: Extras to make LC10 more usable for deploy to Web.

2025-03-03 Thread Andreas Bergendal via use-livecode
Hi Alex, That would be the WebDeployHelper tool, and you can read about it here: https://github.com/wheninspace/WIS_WebDeployHelper And easiest download the stack here: https://github.com/wheninspace/WIS_WebDeployHelper/releases/latest Let me know if you run into any issues when using it. Best,

Re: Do AppleScript incomplete typing

2025-03-03 Thread Niggemann, Bernd via use-livecode
Hi Bill, have you tried to add a delay to the AppleScript? delay 1 Kind regards Bernd ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.r

Datagrid question

2025-03-03 Thread jbv via use-livecode
Hi list, I have a datagrid with dgStyle as "table". I have populated the columns and the dgText. Now I need to adjust the width of each column by script : put "100,120,150" into Lw set the dgColumnWidths of group "DataGrid 1" to Lw But nothing changes when running the above commands. What am I

Thanks all

2025-03-03 Thread Bob Sneidar via use-livecode
Hi all. Thanks for the help with the socket based file transfer system I am developing. Using Mark’s technique of prepending the data length of the payload as an 8 byte value before sending, and then reading the first 8 bytes of the payload to determine the length and then reading for that man

Re: Datagrid question

2025-03-03 Thread Bob Sneidar via use-livecode
What you are looking for is dgProp [“column widths”] which takes a comma delimited list. The API for datagrid properties is here: https://lessons.livecode.com/m/datagrid/l/7343-data-grid-properties Bob S > On Mar 3, 2025, at 12:47 PM, Craig Newman via use-livecode > wrote: > > Hi. > >