Re: Help Adding Cookie support to libURL

2016-09-28 Thread Peter TB Brett
On 29/09/2016 02:30, Trevor DeVore wrote: Hey gang, I've been going through a customized version of libURL that I've distributed with the GLX App Framework for years and incorporating the changes into libURL. Some additions are new features while others are bug fixes. Some changes have been merg

Re: Close vs Delete on Mobile

2016-09-28 Thread J. Landman Gay
The stack uses memory until it's deleted. If the destroystack property is true, it is automatically deleted whenever the stack is closed. I believe this is true on mobile as well as desktop. Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http:

Help Adding Cookie support to libURL

2016-09-28 Thread Trevor DeVore
Hey gang, I've been going through a customized version of libURL that I've distributed with the GLX App Framework for years and incorporating the changes into libURL. Some additions are new features while others are bug fixes. Some changes have been merged in already and others I'm finishing up.

Re: How to extract specific columns/line items from a CSV file?

2016-09-28 Thread Mike Doub
There is a function in the masterlibrary that extracts columns. https://www.dropbox.com/s/3wpwn3hfbmpl7sk/MasterLibrary.livecode?dl=0 -= Mike   Original Message   From: doch...@gmail.com Sent: September 28, 2016 8:14 PM To: use-livecode@lists.runrev.com Reply-to: use-livecode@lists.runrev.com S

Re: How to extract specific columns/line items from a CSV file?

2016-09-28 Thread Dr. Hawkins
On Tue, Sep 20, 2016 at 1:16 PM, Keith Clarke wrote: > I’ve a large number of sizeable CSV files from each of which I need to > extract just 2 or 3 specific columns. Creating nested iterations through > every item in every line seems somewhat inefficient - as does loading each > full file into me

Re: Setting text in the prop inspector - bug

2016-09-28 Thread Devin Asay
> On Sep 28, 2016, at 1:18 PM, Peter TB Brett wrote: > > On 28/09/2016 19:23, hh wrote: >> Devin A. wrote: >>> It’s been there a few days but is still unconfirmed. >> AFAIK Panos has a holiday break. > > Yes -- so far this week the rest of the language team have mostly been > concentrating on

Re: [OT] Looking for a statistic

2016-09-28 Thread Terry Judd
Hi Richard - I think you may struggle to find that number, and even if you do I’d question how useful it is, particularly if it is based on self-reports. You really need to use ‘spyware’ to capture this sort of data accurately and there are probably only a small number of people doing this legit

Close vs Delete on Mobile

2016-09-28 Thread Sannyasin Brahmanathaswami
When we close a stack, on mobile, do we pick up memory? or do we need to use "delete stack" to recover all resources? the current "close and remove from memory" that we have on desktop would imply that we really should delete stacks as we navigate from one to another in an app that uses many s

OT: Clickteam Fusion 2.5 Bundle at HumbleBundle

2016-09-28 Thread Matthias Rebbe
Hi, maybe this is of interest for the one or other. At HumbleBundle https://www.humblebundle.com/clickteam-fusion-bundle you can get for the next days the following programs - Clickteam Fusion 2.5 Developer Windows (retail price 399.99$) - iOS Exporter (retail price 149,99$) - HTML5 Exporter (

Re: tsNetSmtpSync -Multiple "to" addresses

2016-09-28 Thread Matthias Rebbe
Hi again, i just noticed that in your script you are adding the bcc recipients also to the smtp header. That is not correct. BCC receivers do not belong in the smtp header! Otherwise they are not “Blind carbon copies” anymore. ;) See line 86 to 96 of your script. What i forgot in my previou

Re: Multiple Browser Widgets

2016-09-28 Thread Sannyasin Brahmanathaswami
Peter TB Brett wrote: Yes, you only "pay" for the browser widget once, no matter how many of them you use. Of course, using lots of browser widgets might require a lot of CPU time and lots of RAM, but it won't make your app into a huge download." -- Peter --- BR: OK thanks, that is cl

Re: Options for protecting script-only stacks

2016-09-28 Thread Mark Talluto
> On Sep 28, 2016, at 9:01 AM, Richard Gaskin > wrote: > > This forum post from Bob Hall got me wondering: > http://forums.livecode.com/viewtopic.php?f=9&t=28016 > > What is the simplest way to password-protect script-only stacks when used > with a proprietary standalone? I posted some code

Re: [OT] Looking for a statistic

2016-09-28 Thread Richard Gaskin
Miker Kerner wrote: > Richard Gaskin wrote: >> What percentage of desktop users' time is spent in a browser? > > Among my employees, it is definitely primarily browser action. Even > the folks who are running some desktop app or another, including > terminal emulators to get into the ERP softwar

Re: Setting text in the prop inspector - bug

2016-09-28 Thread Devin Asay
> On Sep 28, 2016, at 12:23 PM, hh wrote: > > Devin A. wrote: >> It’s been there a few days but is still unconfirmed. > AFAIK Panos has a holiday break. > >> I have seen this in LC 8 and above. > > I can confirm it for LC 8 but I couldn't find LC 9 for download on any page > ;-) Well, isn’t

Re: [OT] Looking for a statistic

2016-09-28 Thread Mike Kerner
Among my employees, it is definitely primarily browser action. Even the folks who are running some desktop app or another, including terminal emulators to get into the ERP software, do most of their work in a browser. We installed Google Docs wy back when it was in beta, so there is no office

Re: Setting text in the prop inspector - bug

2016-09-28 Thread Peter TB Brett
On 28/09/2016 19:23, hh wrote: Devin A. wrote: It’s been there a few days but is still unconfirmed. AFAIK Panos has a holiday break. Yes -- so far this week the rest of the language team have mostly been concentrating on Infinite LiveCode (exciting!) and fixing confirmed bugs.

Re: Setting text in the prop inspector - bug

2016-09-28 Thread hh
Devin A. wrote: > It’s been there a few days but is still unconfirmed. AFAIK Panos has a holiday break. > I have seen this in LC 8 and above. I can confirm it for LC 8 but I couldn't find LC 9 for download on any page ;-) ___ use-livecode mailing list u

[OT] Looking for a statistic

2016-09-28 Thread Richard Gaskin
Recent metrics suggest that on mobile devices users spend about 80% of their time in apps, with only 20% in their phone's browser: I've been trying to turn up that percentage for desktop users

Re: tsNetSmtpSync -Multiple "to" addresses

2016-09-28 Thread Matthias Rebbe
Hi, the reason for this is that you are using tHeaderData["to"][1] for the receiver in the tsNetSmtpSync function call. So although your smtp header contains all receivers, you are just sending it to tHeaderData["to"][1]. I don´t know if the function can also handle an array for the receivers.

tsNetSmtpSync -Multiple "to" addresses

2016-09-28 Thread pink
I am trying to put in multiple recipients into the "TO" line of the email header. So far in all my testing, only the first recipient receives the message, was wondering if anyone else has tried doing this yet. My script was rather long, so I put it on github instead of pasting it here: https://gis

Options for protecting script-only stacks

2016-09-28 Thread Richard Gaskin
This forum post from Bob Hall got me wondering: http://forums.livecode.com/viewtopic.php?f=9&t=28016 What is the simplest way to password-protect script-only stacks when used with a proprietary standalone? -- Richard Gaskin Fourth World Systems Software Design and Development for the Deskto

right-hand buttons on player (LiveCode 8.1, Windows 10) showing inconsistent behavior

2016-09-28 Thread Curtis Ford
A while back I made a series of modules for a client in LiveCode 6 using players with Quicktime for sound files. In those projects, clicking the two right-hand buttons in the player 'nudged' the sound forward or backward. Holding the buttons down worked for fast-forwarding & rewinding. Now I'm

Setting text in the prop inspector - bug

2016-09-28 Thread Devin Asay
Can anyone confirm? I have seen this in LC 8 and above. When you choose a textFont in the property inspector for an object, then TAB out of the combo box, the textFont does not get updated. On the other hand, if you hit RETURN to close the combo box the textFont gets updated as expected. I thi

How to create an application that opens when you drag a folder onto it?

2016-09-28 Thread Peter Reid
I can make an app for the Mac that opens when the user drags & drops a file onto its icon using the following Apple Event handler: on appleEvent pClass, pEventID, pSender if pClass is "aevt" then request appleEvent data put it into tFileName if pEventID is "odoc" then

resources-rules: Using older versions of LiveCode to build iOS with older versions of Xcode

2016-09-28 Thread Ben Rubinstein
To try to get round a problem that's preventing me from working in LC 8.1, I thought I'd go back to LC 7.1.2. That requires Xcode 7.2, but fortunately I now keep multiple copies of Xcode zipped up against this eventuality. However, when I try to build the iOS standalone with it, I get a new er

Re: Problem (or something I'm doing odd) with $_POST and LC Server

2016-09-28 Thread Matt Maier
Maybe a configuration file is conflicting. Since you moved the script to a different site there might be some .htaccess (or whatever) that's got a piece of URL (or whatever) out of place. On Wed, Sep 28, 2016 at 3:29 AM, Alex Tweedly wrote: > OK - I have half an answer to my own question >

Re: Yikes - locked out of mergAccessory

2016-09-28 Thread Ben Rubinstein
On 28/09/2016 11:11, Monte Goulding wrote: please open a bug report and I’ll look into it ASAP. Thanks Monte: http://quality.livecode.com/show_bug.cgi?id=18509 Ben ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: iOS 10 and native scroller

2016-09-28 Thread John Dixon
This bug has been around now for a long time... It really is a 'showstopper' for apps... it will be welcomed when it is fixed From: use-livecode on behalf of Peter TB Brett Sent: 28 September 2016 11:08 To: How to use LiveCode Subject: Re: iOS 10 and native sc

Re: Yikes - locked out of mergAccessory

2016-09-28 Thread Monte Goulding
Hmm… I presume you are using Business to build the standalone? If so then please open a bug report and I’ll look into it ASAP. > On 28 Sep 2016, at 8:05 PM, Ben Rubinstein wrote: > > I've got a subscription to mergExt - hurrah. > > I've got a Business license - hurrah. > > I've been hoping to

Re: iOS 10 and native scroller

2016-09-28 Thread Peter TB Brett
On 28/09/2016 06:59, Ludovic THEBAULT wrote: to have a native scroller on field list i’ve made this : put my long field in a group set the size of the group and lock it it worked perfectly until iOS 10. Now I see my text beyond group boundaries. I believe you are describing bug 17779 [1], whi

Yikes - locked out of mergAccessory

2016-09-28 Thread Ben Rubinstein
I've got a subscription to mergExt - hurrah. I've got a Business license - hurrah. I've been hoping to use mergAccessory for something (redpark serial cables). I did a test a couple of weeks ago, got the stack installed on a phone, mergAccessoryNames and mergAccessoryProtocols worked (on an ol

Re: iOS font issue - iPhone 6 + 6S not using custom font

2016-09-28 Thread Alan
Thanks Scott, thought I'd seen something about it before! cheers Alan On 27 Sep 2016, at 7:30 pm, Scott Rossi wrote: > > Not sure if anyone has responded to this, but yes it has been a problem > for some time. > > http://quality.livecode.com/show_bug.cgi?id=16733 > > > Custom fonts display