Re: automated iOS rejection: Non-public API usage

2013-05-13 Thread Dave Kilroy
I also have been bitten by this bug - at 04:20 this morning - I would be tearing my hair out but I have none left! Anyone got any information on when RunRev will put out a new version? Kind regards - Dave ___ use-livecode mailing list use-livecode@li

Re: skip lists

2013-05-13 Thread Dick Kriesel
On May 12, 2013, at 6:18 PM, Peter Haworth wrote: > A few months back, there was a great post that revealed what I think is a > little known way to reference array keys - if I'm not mistaken it was from > Dick Kriesel. I have no idea how (in)efficient it might be compared to the > other methods

Flipping Animated GIFs

2013-05-13 Thread Richmond
So, I am working out something fairly babyish for one of my "introduction to programming" nonsense in the Summer and have a stack that has the dimensions: 1044 x 788 it has a transparent graphic with a 2 pixel black border of dimensions 1024 x 768 [this is to explain to kids what is "on-scre

Re: Timed scripts without locking up functionality

2013-05-13 Thread kee nethery
yes. good catch. Thanks Kee On May 13, 2013, at 6:07 PM, Scott Rossi wrote: > Make sure you put the message to be sent in quotes: > > send "magicgatemouseup" ... > > > > Regards, > > Scott Rossi > Creative Director > Tactile Media, UX/UI Design > > > > > On 5/13/13 5:26 PM, "kee nether

Re: can't edit first line of datagrid most of the time

2013-05-13 Thread Dr. Hawkins
On Mon, May 13, 2013 at 8:25 PM, Andrew Kluthe wrote: > I haven't seen this problem exactly, but I have experienced weirdness in > the first row of datagrids if my dgData array index starts with 0 instead > of 1. This also might be a complete delusion on my part. > Mine are quite definitely star

Re: can't edit first line of datagrid most of the time

2013-05-13 Thread Andrew Kluthe
I haven't seen this problem exactly, but I have experienced weirdness in the first row of datagrids if my dgData array index starts with 0 instead of 1. This also might be a complete delusion on my part. On Mon, May 13, 2013 at 8:56 PM, Dr. Hawkins wrote: > On Mon, May 13, 2013 at 6:43 PM, Pete

Re: [ANN] Book. Programming LiveCode for the Real Beginner

2013-05-13 Thread Judy Perry
I'm waiting. tap.. tap... tap... Judy On Mon, 13 May 2013, Mark Schonewille wrote: Hi guys, The book has arrived in the office today. Three boxes full with books waiting to be shipped all over the world. I must say, it is really cool to have my own book in my hands. We have sold more tha

Re: "revdberr, " as the returned value on *successful* postgres operations

2013-05-13 Thread Mike Bonner
Are you adding the ; at the end of your sql strings? I'm pretty sure rev appends its own ; so the result would be an extra one. Which might make postgres a) do whatever you told it to, then b) return a confused error due to the second ; Try it without adding the ; On Mon, May 13, 2013 at 7:52

Re: can't edit first line of datagrid most of the time

2013-05-13 Thread Dr. Hawkins
On Mon, May 13, 2013 at 6:43 PM, Peter Haworth wrote: > Haven't seen anything like that before. Do you have customized column > behavior scripts? That's the first place I would look. > I just checked that there is no script for the datagrid; is this where it would be? I have a set the beha

Re: "revdberr, " as the returned value on *successful* postgres operations

2013-05-13 Thread Dr. Hawkins
On Mon, May 13, 2013 at 6:41 PM, Peter Haworth wrote: > I haven't used LC with postgresql but seems pretty unlikely that a > successful operation would return "revdberr". If you post your code and > also the full text of the error message you get back, can probably figure > out what's going on.

Re: can't edit first line of datagrid most of the time

2013-05-13 Thread Peter Haworth
Haven't seen anything like that before. Do you have customized column behavior scripts? That's the first place I would look. Pete lcSQL Software On Mon, May 13, 2013 at 6:31 PM, Dr. Hawkins wrote: > I can't quite pin this down. > > I'm now successfully editing my datagr

Re: "revdberr, " as the returned value on *successful* postgres operations

2013-05-13 Thread Peter Haworth
I haven't used LC with postgresql but seems pretty unlikely that a successful operation would return "revdberr". If you post your code and also the full text of the error message you get back, can probably figure out what's going on. Pete lcSQL Software On Mon, May 13, 20

"revdberr, " as the returned value on *successful* postgres operations

2013-05-13 Thread Dr. Hawkins
I have an ongoing issue on successful operations in postgres. For some transactions, a successful operation returns the string "revdberr," ranter than a numeric value. I now have to trap for both to check success. This would be the first line of a failure message, too (so at least I can tell suc

can't edit first line of datagrid most of the time

2013-05-13 Thread Dr. Hawkins
I can't quite pin this down. I'm now successfully editing my datagrids, and loading/dumping changes to my database. I have a button for the moment to trigger my new lien, and it works with existing lines or an empty datagrid (the actual majority of them in bankruptcy practice). However I get row

Re: Timed scripts without locking up functionality

2013-05-13 Thread Scott Rossi
Make sure you put the message to be sent in quotes: send "magicgatemouseup" ... Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 5/13/13 5:26 PM, "kee nethery" wrote: >-- use a > >send magicgatemouseup to stack "mystack" in 120 seconds > > >-- then in your stack > >

Re: Timed scripts without locking up functionality

2013-05-13 Thread dunbarx
What everyone said, though I would: wait 120 seconds with messages. Anyway, you see that "wait" is blocking, and either standard way out of it will release control to the engine while you, er, wait. The "send in time" method is more robust. Craig Newman -Original Message- From:

lessons.runrev.com

2013-05-13 Thread Mike Bonner
Some visible changes are up at runrev. Main site is still down but lessons.runrev.com has a nifty new look. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferenc

Re: Timed scripts without locking up functionality

2013-05-13 Thread kee nethery
-- use a send magicgatemouseup to stack "mystack" in 120 seconds -- then in your stack on magicgatemouseup processRequest if condition is not met then send magicgatemouseup to stack "mystack" in 120 seconds end if end magicgatemouseup On May 13, 2013, at 5:21 PM, Magicgate Sof

Re: Timed scripts without locking up functionality

2013-05-13 Thread Mike Bonner
put a "wait 0 with messages" somewhere in the loop, or use a send in time loop instead. send "handlername" to me in 120 seconds On Mon, May 13, 2013 at 6:21 PM, Magicgate Software - Skip Kimpel < s...@magicgate.com> wrote: > I am having a hard time researching a solution since most of the for

Timed scripts without locking up functionality

2013-05-13 Thread Magicgate Software - Skip Kimpel
I am having a hard time researching a solution since most of the forums are down :) Here is my issue, hopefully somebody has the simple answer to my question... I have a script that runs every two minutes and I have been calling it with: on mouseUp wait for 120 seconds processRequest end mou

wi-fi report from Travelodge

2013-05-13 Thread Colin Holgate
Someone else in the bar, where I am at the moment, seems to be coping with the free wi-fi, but I didn't have any luck with that getting email and other things. I did the £20 for the week deal (on the network named "spectrum") and that's working a lot better. _

Re: [ANN] Book. Programming LiveCode for the Real Beginner

2013-05-13 Thread Mark Schonewille
Hi guys, The book has arrived in the office today. Three boxes full with books waiting to be shipped all over the world. I must say, it is really cool to have my own book in my hands. We have sold more than half of all books and this means that we are almost breaking even. Still, it isn't a

[AN] iOS to Android issues...

2013-05-13 Thread Paul Maguire
(Android N00b) Hello there. The acronym says it all. I am trying to port my first iOS app to Android on MacOS and I'm a bit lost. I have the SDK set up and I can run various emulated Android hardware profiles (a bit sluggish on my MacBook but hey...). A few observations on first load: 1)

Re: Simultast Login Information

2013-05-13 Thread Matthias Rebbe
Shawn, when did you get them? Regards, Matthias Am 13.05.2013 um 11:49 schrieb Shawn Blc : > Yes. > > On Monday, May 13, 2013, Matthias Rebbe wrote: > >> Hi, >> >> Did anyone of the simulcast users already receive her/his login details? >> >> Regards, >> >> Matthias >> >> >> __

Re: Simultast Login Information

2013-05-13 Thread Shawn Blc
Yes. On Monday, May 13, 2013, Matthias Rebbe wrote: > Hi, > > Did anyone of the simulcast users already receive her/his login details? > > Regards, > > Matthias > > > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this

Simultast Login Information

2013-05-13 Thread Matthias Rebbe
Hi, Did anyone of the simulcast users already receive her/his login details? Regards, Matthias ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: htt

Re: ID caching: how to test?

2013-05-13 Thread J. Landman Gay
On 5/12/13 8:52 PM, Peter Haworth wrote: Anyway, I'm sure there are circumstances where this change would provide a significant performance improvement. I just think they are few and far between and would much rather see RunRev spend their time, no matter how little, on fixing. I've seen so man