iOS initial orientation

2011-09-12 Thread J. Landman Gay
I have an iOS app that I want to start up in the current device orientation. There is an initial orientation setting in the standalone builder, but depending on how the user is holding the device, that can be upside down in real life. If so, my app opens upside down and then swivels around 180

Re: Scaling to device for Android

2011-09-12 Thread J. Landman Gay
On 9/12/11 9:06 AM, Richard Gaskin wrote: And with orientation, if an app only works in one orientation on my tablet I generally uninstall it immediately after I discover that. I like both portrait and landscape orientations for different purposes, and if an app doesn't adapt to me I'm not going

Re: Cheap Android Tablet

2011-09-12 Thread Pete
Thanks for the heads up Roger. I should know by now that most things that sound too good to be true are too good to be true! I plan on getting an Android tablet at some point, hoping a market leader will emerge. I'll check out the Viewsonic Pete Molly's Revenge

Re: Cheap Android Tablet

2011-09-12 Thread Mark Wieder
Roger- Monday, September 12, 2011, 5:37:07 PM, you wrote: > I'd say the worst strikes against this tablet is the resistive touchscreen, > and OS 2.1 (not LiveCode compatible). I don't know if it could update to > 2.2 or not. I learned the hard way that a resistive screen will increases > ones f

Re: Cheap Android Tablet

2011-09-12 Thread Roger Eller
On Mon, Sep 12, 2011 at 7:47 PM, Pete wrote: > Not sure I will get one, but if I do, I'll definitely report back. > Pete > Molly's Revenge > > > On Mon, Sep 12, 2011 at 4:04 PM, stephen barncard < > stephenrevoluti...@barncard.com> wrote: > > > Let us know how it wor

Re: Cheap Android Tablet

2011-09-12 Thread Pete
Not sure I will get one, but if I do, I'll definitely report back. Pete Molly's Revenge On Mon, Sep 12, 2011 at 4:04 PM, stephen barncard < stephenrevoluti...@barncard.com> wrote: > Let us know how it works out when you get to test it. > > thanks > sqb > > On 12

Re: Cheap Android Tablet

2011-09-12 Thread stephen barncard
Let us know how it works out when you get to test it. thanks sqb On 12 September 2011 15:53, Pete wrote: > Anyone looking for a cheap Android tablet ($99), I just got this from > TigerDirect: > > > http://www.tigerdirect.com/email/WEM2819.asp?SRCCODE=WEM2819C%20&cm_mmc=email-_-Main-_-WEM2819-_-

Cheap Android Tablet

2011-09-12 Thread Pete
Anyone looking for a cheap Android tablet ($99), I just got this from TigerDirect: http://www.tigerdirect.com/email/WEM2819.asp?SRCCODE=WEM2819C%20&cm_mmc=email-_-Main-_-WEM2819-_-tigeremail2819 Pete Molly's Revenge ___ us

Re: Password protecting a stack in the distribution

2011-09-12 Thread jacques CLAVEL
Same problem here trying to encrypt my library (to be used on on-Rev server). Livecode 4,6,3 on Mac (4,6,4 not tested now). My problem is now solved (see second try) but the workflow is not straightforward. First try (does'nt work: - Main stack (splash screen) and my library (start using as it doe

Re: Checksum via FTP???

2011-09-12 Thread Mark Talluto
I would have a computer running locally in your office poll for uploaded transactions to your web server. Have the computer download the transaction and process it locally at the speed of Rev. Then upload the result to the web server and have the client poll for the result. You can do a turn

Re: LiveCode FTP Hanging in Some Instances

2011-09-12 Thread Gregory Lypny
Hi Andy, Good points, all. isConnected() only checks for an Internet connection and is invoked by the OpenStack handler of a stack that represents the splash screen of the app. I will most definitely include a check for the library stack loading. I suspect it is the culprit. After posting m

Re: Question About PreOpenStack

2011-09-12 Thread Gregory Lypny
Thanks Craig, Your thoughts on this are much appreciated. Darn right about the dangers! Gregory On Mon, Sep 12, 2011, at 1:00 PM, use-livecode-requ...@lists.runrev.com wrote: > Gregory. > > > Glad to see you have worked it out. It is a subtle danger, that other > messages can insinuate the

Re: Question About PreOpenStack

2011-09-12 Thread Gregory Lypny
Thanks Bob, Another good tip to add to my notebook! Unintended re-initialization can bring disastrous consequences. This, I have discovered. Sigh. Gregory On Mon, Sep 12, 2011, at 1:00 PM, use-livecode-requ...@lists.runrev.com wrote: > One of the things I do to prevent re-initialization

Re: Heads up, don't use "secure" as a handler name

2011-09-12 Thread Bob Sneidar
I've been debugging my "DO" function for 3 years!!! ;-) Bob On Sep 10, 2011, at 11:04 AM, J. Landman Gay wrote: > I had a function named "secure()" that's worked fine forever. It takes a text > string as a parameter, processes it as SSL, and returns the secure string. > > As of LiveCode 4.6.4

Re: Question About PreOpenStack

2011-09-12 Thread Bob Sneidar
One of the things I do to prevent re-initialization of a card or stack is I create a global, and upon successful initialization I set it to true. I check it's value before initializing and only call the initialization handler if the global is not set to true. This has the benefit of being able t

Re: Feeling hemmed-in by the name space?

2011-09-12 Thread Richard Gaskin
Charlie cfaddis wrote: > I've built a compiler which is a "shell" over the IDE and, of > course, has it's own name space. Can you tell us a bit more about that? Sounds very interesting. -- Richard Gaskin Fourth World LiveCode training and consulting: http://www.fourthworld.com Webzine for

Re: Feeling hemmed-in by the name space?

2011-09-12 Thread Dar Scott
I like the idea of interacting with the editor like this. The period idea is pretty clever; I'm always having to adjust names. When I first started using Rev some years ago I used the question mark at the end of function names that returned a boolean. However, I read someplace that the use of

Re: LiveCode FTP Hanging in Some Instances

2011-09-12 Thread AndyP
Hi Gregory, Your isConnected(), does this just check for an internet connection or does this check for a connection to the ftp server? If the later do you have a mechanism for logging the ftp server reponses? Does you ftp server have a low concurrent users limit?...are the users hitting a connec

Re: Heads up, don't use "secure" as a handler name

2011-09-12 Thread Jan Schenkel
Hi Jacque et al, While it doesn't appear in the dictionary as a separate keyword, 'secure' was introduced into the language in version 2.5, as part of the SSL support for 'open socket' - see: Perhaps the current version of the compiler is a little mor

Re: Scaling to device for Android

2011-09-12 Thread Richard Gaskin
Maarten Koopmans wrote: Subject says it all: does anyone have a clue or a sample handler that they know off? This is a real nuisance otherwise :( There's a request in the RQCC for generalized scaling: Useful as it is for things like some games,

LiveCode FTP Hanging in Some Instances

2011-09-12 Thread Gregory Lypny
Hello everyone, Once again, I am trying to weed out the few remaining, infrequent bugs that have cropped up in a little FTP app that I have developed for my students. The app is working fine in that almost 100 students have been able to run it on their Macs or PCs, sign in, create an account o

Re: [ANN] DropTools 1.2

2011-09-12 Thread René Micout
Thank you Ken !! Bon souvenir de Paris René Le 12 sept. 2011 à 07:18, Ken Ray a écrit : > I've just released and upgrade to the DropTools Palette; version 1.2 has a > few bug fixes in it plus tighter integration with the LiveCode IDE, allowing > you to display the Inspector palette for various

Re: Brush Tool in iOS

2011-09-12 Thread Gerry Orkin
Randy wrote: > Well, that is very cool. So elegant :) Thanks John! Gerry ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mail