Re: Datagrid Refresh

2018-12-10 Thread Tom Glod via use-livecode
the best way to refresh your grid is to "set its dgdata" property to the array you want. i've used the grid extensively and over the years have gone through all sorts of anomalies. Hitting refresh on inspector seems like it should work. but with v9 and other possible issues...i wouldn't

Re: Seeking OSX Code signing consultant...

2018-12-10 Thread Brian Milby via use-livecode
Does the Xcode option for it to manage certificates help?  So far I just compile for iOS testing (don’t have a paid dev account yet), but it automatically updates the cert when needed. Thanks, Brian On Dec 10, 2018, 8:40 PM -0600, prothero--- via use-livecode , wrote: > Folks, > This is sooo

Re: Seeking OSX Code signing consultant...

2018-12-10 Thread prothero--- via use-livecode
Folks, This is sooo needed. I had to shake my head at the situation where so many certificates have been downloaded that you (me too) lose track of what’s what. My best strategy was to delete them all and start over. But, they seem to be stored in multiple locations, so it wasn’t easy to find

Re: Screen readers

2018-12-10 Thread Paul Dupuis via use-livecode
Both Windows and OSX include screen reader libraries: Microsoft Windows includes Microsoft Narrator. Mac OS X includes VoiceOver. However, most visually impaired Windows users who have contacted us, use JAWS from Freedom Scientific. I have also seen some evidence that NVDA, and open source

Re: Screen readers

2018-12-10 Thread Trevor DeVore via use-livecode
On Mon, Dec 10, 2018 at 4:46 PM Rick Harrison via use-livecode < use-livecode@lists.runrev.com> wrote: > This is something that should be handled at the operating system level > inside of macOS or Windows etc. A screen reader only works if the web page or application provides information to the

Re: Screen readers

2018-12-10 Thread Rick Harrison via use-livecode
This is something that should be handled at the operating system level inside of macOS or Windows etc. Just my 2 cents. Rick > On Dec 10, 2018, at 4:03 PM, J. Landman Gay via use-livecode > wrote: > > On 12/10/18 2:22 PM, Paul Dupuis via use-livecode wrote: >> On 12/10/2018 3:06 PM, J.

Re: remove empty lines in DG

2018-12-10 Thread Bob Sneidar via use-livecode
You would be better off gettign the data as a cursor then looping through the cursor data to produce a dg compatible array, then setting the dgData. dgText is ok if all you have to work with is delimited text data, but if you can get an array, then you should use dgData. Fortunately for you,

Re: Dynamically Set the height of DataGrid

2018-12-10 Thread Bob Sneidar via use-livecode
The trouble with modigying the datagrid behavior itself is that you have to do that everytime you install a new version! It used to be you could copy the code in the script of the behavior button, paste it into a new button in your app then set the dg behavior to the new button ID, but that

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread JJS via use-livecode
Thanks Jacque, well yes i think so. Totall would be under 200$ yearly together with the Community Plus else you can't put it on the app store. I also think the nr of iOs users would not match up to the Android users. Members (around 2100 and decreasing due to natural causes) donate

Re: Screen readers

2018-12-10 Thread J. Landman Gay via use-livecode
On 12/10/18 2:22 PM, Paul Dupuis via use-livecode wrote: On 12/10/2018 3:06 PM, J. Landman Gay via use-livecode wrote: Does screen reader software (for visually limited users) work with LC fields? Anyone know? Not in our experience. Have not checked LC9. We get requests periodically for

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread Terry Judd via use-livecode
Thanks for the confirmation Panos. Terry Sent from my iPad > On 11 Dec 2018, at 12:44 am, panagiotis merakos via use-livecode > wrote: > > Hello Terry, > > Yes you'll need Xcode 10.0 (NOT Xcode 10.1) with LC 9.0.2 on Mojave. > > Kind regards, > Panos > -- > > On Mon, Dec 10, 2018 at 3:17

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread Terry Judd via use-livecode
Thanks Randy - I’ll give that a whirl. Terry Sent from my iPad > On 10 Dec 2018, at 11:06 pm, Randy Hengst via use-livecode > wrote: > > Hi Terry, > > I’ve been using Sean Cole’s wonderful plugin: IPA_Builder… he announced it in > an email September 27… I’ve pasted it below in case you

Seeking OSX Code signing consultant...

2018-12-10 Thread Paul Dupuis via use-livecode
I have a Macbook Pro with El Capitn (10.11) and XCode 8.2.1. I also have AppWrapper 3 by Ohanaware. I need help setting up to be able to code sign OSX applications for distribution from our web site (NOT via the MacOS App Store). I am willing to pay some one who knows how to do this for their

Re: Screen readers

2018-12-10 Thread Paul Dupuis via use-livecode
On 12/10/2018 3:06 PM, J. Landman Gay via use-livecode wrote: Does screen reader software (for visually limited users) work with LC fields? Anyone know? Not in our experience. Have not checked LC9. We get requests periodically for versions of our products (both made using LiveCode) that

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread J. Landman Gay via use-livecode
On 12/10/18 1:05 PM, JJS via use-livecode wrote: I hoped the ipa builder would provide something to get it on their devices without the iOs store. Nothing can bypass the App Store. IOS devices will only install apps deleviered from the store, with the single exception being developer

Screen readers

2018-12-10 Thread J. Landman Gay via use-livecode
Does screen reader software (for visually limited users) work with LC fields? Anyone know? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com ___ use-livecode mailing

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread JJS via use-livecode
Hi Sannyasin, thanks for your well put explanation. I thought that it would be like this. We'll stick at Android for the Assocation then, a one time fee of 25$ is perfect for a free app. So to pay 100$ each year for a free app and also for the LC Community Plus edition is too much for the

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread Sannyasin Brahmanathaswami via use-livecode
Aloha Jerry, http://lessons.livecode.com/m/2571/l/23275-how-do-i-become-an-ios-developer unfortunately its too lean Get ready for the nightmare to come. You will need: 1) We assume that you have a developer license. $103.95 cents year. https://developer.apple.com/ # get an account

Re: remove empty lines in DG

2018-12-10 Thread JJS via use-livecode
I could delete the empty lines by dispatching delete to the DG. But this was not a solution to the cause. Now it seems it happens when fetching from the DB. Now as everything is encrypted, i can't see which line in the DB is empty. So have to check if i can find the exact lines causing it,

Re: Dynamically Set the height of DataGrid

2018-12-10 Thread Sannyasin Brahmanathaswami via use-livecode
Well I got as far as On mouseup # get data need for the datagrid then ... put sMap[portalData][tTarget][rowdata] into tRowdataA reSizeDataGrid (item 2 of extents(tRowdataA) ) set dgData of grp "navMap" to tRowdataA End mouseups command reSizeDataGrid pNumOfRows #dgText array is set the

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread JJS via use-livecode
Hi, can i put this ipa on any iOs mobile corresponding to the set iOs version? Or do i need to have some code from the phone and register it somewhere at apple? I know that via apple you can distribute up to 100 phones or something. But for an non-profit veterans association this is not

Re: Dynamically Set the height of DataGrid

2018-12-10 Thread Bob Sneidar via use-livecode
dgNumberOfRecords get the dgNumberOfRecords set the dgNumberOfRecords of group "DataGrid" to 20 Getting the dgNumberOfRecords is the same as getting the dgNumberOfLines. Setting the dgNumberOfRecords has a special significance however. If you set the dgNumberOfRecords then you are

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread panagiotis merakos via use-livecode
Hello Terry, Yes you'll need Xcode 10.0 (NOT Xcode 10.1) with LC 9.0.2 on Mojave. Kind regards, Panos -- On Mon, Dec 10, 2018 at 3:17 PM Sannyasin Brahmanathaswami via use-livecode wrote: > I use Jacque's "AirLaunch" > > So simple... create the HTML files necessary for others to download. > >

[ANN] This Week in LiveCode 158

2018-12-10 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #158 here: https://goo.gl/F3Kqr4 This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread Sannyasin Brahmanathaswami via use-livecode
I use Jacque's "AirLaunch" So simple... create the HTML files necessary for others to download. Works fine under Mojave. BR On 12/10/18, 12:19 AM, "use-livecode on behalf of Terry Judd via use-livecode" wrote: . I have other ways of installing apps onto devices and extracting files

Re: WordReport Registration

2018-12-10 Thread Curry Kenworthy via use-livecode
Bernard: > I'd contact the provider of the software but I've seen > numerous messages saying he doesn't respond to emails that > I thought I'd ask an existing user. Hi Bernard. Hmmm...it sounds like someone out there in message-land is suffering from a severe allergy to facts or insufficient

Re: .app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread Randy Hengst via use-livecode
Hi Terry, I’ve been using Sean Cole’s wonderful plugin: IPA_Builder… he announced it in an email September 27… I’ve pasted it below in case you don’t have access to emails from then… Hi LC Community, I needed to

Re: WordReport Registration

2018-12-10 Thread Matthias Rebbe via use-livecode
Bernard, i´ve just sent it to you by email. Regards, Matthias Matthias Rebbe free tools for Livecoders: https://instamaker.dermattes.de https://winsignhelper.dermattes.de > Am 10.12.2018 um 12:10 schrieb Bernard Devlin

Re: WordReport Registration

2018-12-10 Thread Bernard Devlin via use-livecode
Thanks Matthias. I did try variations of what I thought were a likely names for the registration handler (but that wasn't one of my guesses for the likely handler name). The file "WordReport Registered Uses.pdf" is not included in the zip file that is downloaded from within our user area on

.app to .ipa converter and Xcode version for Mojave?

2018-12-10 Thread Terry Judd via use-livecode
I’ve just (perhaps prematurely) upgraded a fairly new Macbook Pro to OS X Mojave and it seems that iTunes 12.6.3 (the last version that let you manage apps) is no longer supported. I have other ways of installing apps onto devices and extracting files from apps on devices but I still need a

Re: WordReport Registration

2018-12-10 Thread Matthias Rebbe via use-livecode
Bernard, this is done with registerWordReport. The following is an excerpt from the file "WordReport Registered Uses.pdf" which was included in the download file, at least when i downloaded it. Unlocking the library: To unlock WordReport (letting the library know you're a paying customer and