Notarization

2020-04-01 Thread Andre Garzia via use-livecode
Hi Folks, This just appeared on my feed and I thought that some people here who are trying to ship macOS software might benefit from it. https://github.com/akeru-inc/xcnotary/blob/master/README.md This is an ease to use command-line tool for notarizing your app. The linked readme explains more

Possible new dev hardware?

2020-04-01 Thread Quentin Long via use-livecode
Atari is apparently producing a gizmo they call the "Atari VCS", which they're positioning primarily as a video game console. However! According to an email I just got from them, this beast has what they're calling "Atari sandbox mode (install any OS)", and they claim "If you want to develop

Re: DataGrid question...

2020-04-01 Thread Niggemann, Bernd via use-livecode
This is a modification of Jaque's script to get the row and column of a locked tableField when the user clicks in a cell. Use tableField whose lockText is true. Set its script to on mouseUp put "Row:" &&

Re: DataGrid question...

2020-04-01 Thread Niggemann, Bernd via use-livecode
via use-livecode<https://www.mail-archive.com/search?l=use-livecode@lists.runrev.com=from:%22Mike+Doub+via+use%5C-livecode%22> Wed, 01 Apr 2020 08:07:17 -0700<https://www.mail-archive.com/search?l=use-livecode@lists.runrev.com=date:20200401> There is an interesting interac

Re: DataGrid question...

2020-04-01 Thread Mike Doub via use-livecode
There is an interesting interaction between the scrolling function, the size of the field, mouseUp or Down.  For my test, when I click the 6th column, scrolling occurs and the function returns nothing.  If I size the field such that no scrolling occurs, all works as expected.   If I change the

dgIndexOfLine not returning index

2020-04-01 Thread Bob Sneidar via use-livecode
Hi all. Not sure if this is a bug or expected behavior. In a vertically scrolled data grid I have a mouseUp handler. Ignore the fiddly bits that are irrelevant. The last two lines are the important ones: on mouseUp put the mouseControl into tControl put word 1 of the name of tControl into

Re: Possible new dev hardware?

2020-04-01 Thread Andre Garzia via use-livecode
It looks like just a PC from the listed hardware specs. Probably running some specialized Linux (my guess). On Wed, 1 Apr 2020 at 11:36, Quentin Long via use-livecode < use-livecode@lists.runrev.com> wrote: > Atari is apparently producing a gizmo they call the "Atari VCS", > which they're

Re: Ordering text

2020-04-01 Thread Terence Heaford via use-livecode
This actually works but is very slow (> 800ms) put merge("SELECT *,SUM (amount) OVER (ORDER BY recID) AS balance FROM myAccountName") into tSQL I have settled on my earlier suggestion Earlier suggestion results in 20ms performance. - I believe it’s sorted

AW: Answer dialog enhancement...

2020-04-01 Thread Paul Dupuis via use-livecode
So I have a working mechanism to add a "Don't Ask Again" check box to the existing standard Answer Dialog on the fly. I offer it up to the community for anyone who needs it and for anyone who may want to improve the code. The scripts are below. There is a sample usage you can place in a

How to find the column and row of a basic tableField

2020-04-01 Thread Niggemann, Bernd via use-livecode
There was a long thread regarding the dataGrid which somehow touched getting the row and column of a basic tableField. I posted this solution also there. Mike Doub found some problems that turned out to be due to the fact that "cellEdit" was set to true for the table object. If "cellEdit" is

Re: DataGrid question...

2020-04-01 Thread Bob Sneidar via use-livecode
Hi all. I’m not sure I understand the nature of the problem anymore as the thread is so long, but if you are using the data grid, it is very easy to get the actual index and column number of a cell that has been clicked on. If you put this into your data grid script, you can see it at work.

OT: where did this come from?

2020-04-01 Thread Mark Wieder via use-livecode
https://cs.stackexchange.com/questions/121528/what-is-the-earliest-use-of-the-this-keyword-in-any-programming-language -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Ordering text

2020-04-01 Thread Bob Sneidar via use-livecode
So this is a database schema issue. Typically what you will want to do with things like balances is to store the balance in a column as each value in the equation changes. You are asking your SQL server to do all the calculations for all your records all at once. If SLQ only has to calculate

Re: Tar and a gz Archive [OT]

2020-04-01 Thread Mark Wieder via use-livecode
On 4/1/20 5:13 PM, Ralph DiMola via use-livecode wrote: I need to extract from a .tar.gz archive at the command line using "tar" as follows: 1) Extract the files from a specific folder in the archive into another folder with no recursion keeping the security levels and have the files owned by

RE: Tar and a gz Archive [OT]

2020-04-01 Thread Ralph DiMola via use-livecode
I'm sorry... I forgot to mention it's Linux command line via ssh shell. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Bob Sneidar via use-livecode Sent:

Tar and a gz Archive [OT]

2020-04-01 Thread Ralph DiMola via use-livecode
I'm under the gun and as with any new program the number of options and their interactions are difficult to comprehend. I've tried a few combinations with limited success. Any help would be appreciated. I need to extract from a .tar.gz archive at the command line using "tar" as follows: 1)

Re: Tar and a gz Archive [OT]

2020-04-01 Thread Bob Sneidar via use-livecode
Looks like Tar is a Windows 10 only command line utility. I’m sure you know but tar /? should get you the options available. Whether or not you can grok what they actually mean is another thing. There are some powershelgl scripts out there but not with the specificity you need. Bob S On

Re: How to find the column and row of a basic tableField

2020-04-01 Thread Pi Digital via use-livecode
I made two mistakes there. First: Put cRevTable[“currentxcell”],cRevTable[“currentycell”] into tCellIndex Should be: Put the cRevTable[“currentxcell”] of me , the cRevTable[“currentycell”] of me into tCellIndex And: select nothing Should be: select empty Oops Sean Cole Pi Digital

Re: How to find the column and row of a basic tableField

2020-04-01 Thread Pi Digital via use-livecode
Thanks Bernd. This only works if there is already data in the field. If you put empty into the field it produces no results. In those instances you are forced to get an x,y clickLoc and use the tabstops and textHeight to hard code the result. The revTableLibrary was last modified in 2015

Re: Tar and a gz Archive [OT]

2020-04-01 Thread Sean Cole (Pi) via use-livecode
I'm using *put* shell("unzip -p '" & tZipPath & "'") into tTDProductList -p is because it's password protected. It'll extract all contents recursively. If you don't want it recursive you need to specify either what you do want or don't want extracted. To specify just one file you want to extract