Re: JSON library

2015-11-18 Thread Peter Haworth
Thanks Ali, that fixed it. I'ma little surprised I didn't get a runtime error in the standalone though - shouldn't it have choked on the jsonImport command? Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin

LC8 Standalone field sizes.

2015-11-18 Thread Peter Haworth
I'm seeing a slight difference in the width of fields required to hold a given amount of text in the LC8 IDE and LC8 standalone. Using one field as an example, I displayed the effective font, size, and formatted width in the IDE and in the standalone. The font/size were Helvetica Neue/14 in both

Re: diesel again

2015-11-18 Thread Mark Wieder
On 11/18/2015 11:31 AM, Ralph DiMola wrote: Server load is high and emails are getting delayed. I reported it to David. Apparently Volkswagen isn't the only one with diesel problems. -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing

RE: diesel again

2015-11-18 Thread Ralph DiMola
Very Funny!! But if it followed VW's lead there should be better performance with less power use but more heat output. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com]

diesel again

2015-11-18 Thread Ralph DiMola
Server load is high and emails are getting delayed. I reported it to David. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: diesel again

2015-11-18 Thread Mark Wieder
On 11/18/2015 11:48 AM, Ralph DiMola wrote: Very Funny!! But if it followed VW's lead there should be better performance with less power use but more heat output. ...and it would be emitting more emails than it let on about and lying about its status... -- Mark Wieder

Re: LC8 Standalone field sizes.

2015-11-18 Thread Peter Bogdanoff
I saw that when moving my application from LC 6 to LC 7, Helvetica was displaying wider. My bug report on the issue had this reply: "Unfortunately when we moved to Cocoa we were forced to move to use CoreText rather than the (now ancient) QuickDraw APIs for drawing text. The metrics of

Re: LC8 Standalone field sizes.

2015-11-18 Thread Peter Haworth
Thanks Peter, I remember that happening too. This is a little different since it involves different formattedwidth in the same version of LC depending on whether the stack is run in the IDE or in a standalone. I guess I should file a bug report. Pete lcSQL Software Home

Re: JSON library

2015-11-18 Thread Peter TB Brett
On 18/11/2015 11:02, Lyn Teyla wrote: Ali Lloyd wrote: The JSON library is an extension and so you need to include it manually (at least at the moment) - you'll need to select com.livecode.library.json in the Copy Files pane of the standalone settings. On a somewhat related note, how does

Re: JSON library

2015-11-18 Thread Lyn Teyla
Ali Lloyd wrote: > The JSON library is an extension and so you need to include it manually (at > least at the moment) - you'll need to select com.livecode.library.json in > the Copy Files pane of the standalone settings. On a somewhat related note, how does one utilize this JSON library (and

Re: Special Paste

2015-11-18 Thread Peter M. Brigham
I don't know, does it? I'm a relative troglodyte, as I work in 5.5 mostly, but I don't see why it wouldn't work in later versions. With the newer additions to the language there are probably other ways to accomplish the task. -- Peter Peter M. Brigham pmb...@gmail.com

Re: JSON library

2015-11-18 Thread Ali Lloyd
Hi Peter, The JSON library is an extension and so you need to include it manually (at least at the moment) - you'll need to select com.livecode.library.json in the Copy Files pane of the standalone settings. On Tue, Nov 17, 2015 at 10:55 PM Peter Haworth wrote: > A stack that

Re: [ANN] DropboxAPI_2.livecode

2015-11-18 Thread gmcrev
I have uploaded version 1.1 to http://livecodeshare.runrev.com/. This update has 2 cards that can be used to upload files to dropbox and download files from dropbox. - Gerard -- View this message in context:

RE: ios custom URL scheme

2015-11-18 Thread John Dixon
Hi Terry... Thank you for your reply... The custom URL scheme works fine... though getting it to work was a little confusing as I started of using something like myscheme://, when the text message arrived on the phone the 'double slashes' were not part of the clickable link... After reading

Re: Special Paste

2015-11-18 Thread Geoff Canyon
I'm using 6.7.3, so the fundamental component works: put clipboardData["text"] into the selectedchunk On Wed, Nov 18, 2015 at 7:43 AM, Peter M. Brigham wrote: > I don't know, does it? I'm a relative troglodyte, as I work in 5.5 mostly, > but I don't see why it wouldn't work

Mobile Orientation

2015-11-18 Thread Ralph DiMola
If a mobile device is in portrait the do mobileSetAllowedOrientations "landscape left,landscape right" then iOS phone will force screen rotation to landscape. iOS iPad and Android do not. Does any know if this is a bug or a limitation on iPads and Androids? FYI: Even if the user has his iPhone

Mobile Resizestack handler possible bug

2015-11-18 Thread Ralph DiMola
ONLY on iOS if you do a: put URL ("https://xx.on-rev.com/service/SomeScript.lc?function=) into Str2 while in a resize stack handler the app locks up. I think this is a bug and will put together a QCC report unless anyone knows if this is a limitation of iOS. Ralph DiMola IT Director

Re: Mobile Resizestack handler possible bug

2015-11-18 Thread David Bovill
Resize handlers are called repeatedly with every fraction of a move - if you out slow code inside them (like fetching a blocking url) then it jams up. On Thursday, 19 November 2015, Ralph DiMola wrote: > ONLY on iOS if you do a: > > put URL