Re: [ANN] Table Lab Stack

2015-08-06 Thread J. Landman Gay
On 8/6/2015 8:53 PM, Scott Rossi wrote: I recently posted a little demo of a technique to customize a field with alternating colored lines, making a row-based table with no additional objects. You can download the stack from the forums: http://forums.livecode.com/viewtopic.php?f=7&t=25002 Very

Re: [ANN] Table Lab Stack

2015-08-06 Thread Roger Guay
That is very cool! Thank you, Scott. Cheers, Roger > On Aug 6, 2015, at 6:53 PM, Scott Rossi wrote: > > I recently posted a little demo of a technique to customize a field with > alternating colored lines, making a row-based table with no additional > objects. You can download the stack from

Re: [ANN] Table Lab Stack

2015-08-06 Thread Mike Kerner
Ooh, more fun toys for Mikey... I used to love this about HC, too, there is just so much that creative people can do to tweak the tool to make nifty widgets that make your projects better... On Thu, Aug 6, 2015 at 9:53 PM, Scott Rossi wrote: > I recently posted a little demo of a technique t

[ANN] Table Lab Stack

2015-08-06 Thread Scott Rossi
I recently posted a little demo of a technique to customize a field with alternating colored lines, making a row-based table with no additional objects. You can download the stack from the forums: http://forums.livecode.com/viewtopic.php?f=7&t=25002 Should work in LC5.5 and later. Regards, Sco

Re: LiveCode Server latency causing empty results

2015-08-06 Thread David Bovill
I've had the same issue. This is how I see the problem. UCL encoding. Long auto generated url's can have this that break the rules rule coding wise. The browser and many libraries seem tolerant of this automatically urlencoding stuff internally. Live code fails because it's not doing that? On Thu

RE: LiveCode Server latency causing empty results

2015-08-06 Thread Ralph DiMola
I have always used the form==> put url ("https://blah.com?test=fdsfs&day=Tue";) into MyVar. Some of my request have very long urls and I have had no problems as of yet. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecod

Re: developing iOS apps without a developer subscription

2015-08-06 Thread Mike Bonner
If anyone works out the steps to do this in LC, I'd love to give it a try! On Thu, Aug 6, 2015 at 11:46 AM, Roger Eller wrote: > Do it! > > On Thu, Aug 6, 2015 at 10:58 AM, Colin Holgate > wrote: > > > To submit an app to the App Store you would have to have a developer > > account, but recentl

Re: LiveCode Server latency causing empty results

2015-08-06 Thread Mike Bonner
Not sure it'll make a difference, but have you considered using POST rather than get? On Thu, Aug 6, 2015 at 12:23 PM, Richard Gaskin wrote: > I don't think it's the URL length. URL length may sometimes be an issue, > but most often only for the server; since this works in a browser I think > i

Re: LiveCode Server latency causing empty results

2015-08-06 Thread Richard Gaskin
I don't think it's the URL length. URL length may sometimes be an issue, but most often only for the server; since this works in a browser I think it may be reasonably safe to rule that out. Cookies won't appear in the data, but they can be seen with whatever tools your browser provides for e

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-06 Thread William Prothero
Paul: One more thing. My test uses a variable “theMetadataArray”, which is not set, so is blank. The manual states: metadata - The metadata is an array of metadata. Currently the only key supported is "density" with a value in pixels per inch (ppi). So, I wonder if, to get the benefit, I have

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-06 Thread William Prothero
Paul: FYI, I set up a test stack to figure out how to use the “from object” method of getting a snapshot image. Here’s the steps I followed: 1. put all images that are to be captured in a group. 2. set the group rect to the desired snapshot rect 3. Lock the group rect 4. Set the group to "scaling

Re: developing iOS apps without a developer subscription

2015-08-06 Thread Roger Eller
Do it! On Thu, Aug 6, 2015 at 10:58 AM, Colin Holgate wrote: > To submit an app to the App Store you would have to have a developer > account, but recently Apple made it possible to develop personal use apps > using a free provisioning profile. Someone using Adobe AIR worked out the > steps to d

Re: LiveCode Server latency causing empty results

2015-08-06 Thread Roger Eller
Richard, if I view source of the result in a browser, it is just text, exactly as the database spits it out, no formatting as it is not meant for browser/human consumption. I haven't used or needed to use cookies before. This application works for 99% of the requests. Based on the size of the wo

Re: LiveCode Server latency causing empty results

2015-08-06 Thread Richard Gaskin
Roger Eller wrote: > The URL is really long, so maybe I am hitting some upper limit within > LiveCode. The same URL pasted into a browser (chrome) receives a > result, but get URL within LiveCode does not. The parameter is just a > long list my server script looks up in a database. The list leng

Re: LiveCode Server latency causing empty results

2015-08-06 Thread Roger Eller
Nope, that didn't resolve it. The URL is really long, so maybe I am hitting some upper limit within LiveCode. The same URL pasted into a browser (chrome) receives a result, but get URL within LiveCode does not. The parameter is just a long list my server script looks up in a database. The list le

Re: LiveCode Server latency causing empty results

2015-08-06 Thread Roger Eller
Thanks Ralph! I was thinking along those lines, but wasn't sure if the result wasn't making it back to LC Server from a database query, or whether it was the web server timing out. I'm going to try it and see what happens! ~Roger On Thu, Aug 6, 2015 at 11:06 AM, Ralph DiMola wrote: > Roger,

RE: LiveCode Server latency causing empty results

2015-08-06 Thread Ralph DiMola
Roger, Try set the socketTimeoutInterval to "milliseconds" The default seems to be 1 (10 seconds) It also works on mobile although the docs say that this is not available on mobile. I set mine to "set the socketTimeoutInterval to 3" This gives 30 seconds for the server to respond. If ther

developing iOS apps without a developer subscription

2015-08-06 Thread Colin Holgate
To submit an app to the App Store you would have to have a developer account, but recently Apple made it possible to develop personal use apps using a free provisioning profile. Someone using Adobe AIR worked out the steps to do that, and I think they would work for LiveCode too: https://forums

LiveCode Server latency causing empty results

2015-08-06 Thread Roger Eller
When the network is slow, sometimes my LC server scripts come up empty. Resubmitting the URL request usually, but not always corrects the problem. Is there something I can put in the script to help with this? ~Roger ___ use-livecode mailing list use-live