Re: Help finding an application path in windows

2012-04-22 Thread Ken Ray
On Apr 21, 2012, at 8:16 AM, Ian McKnight wrote: Hi I'm am able to launch a file in Excel directly from LC but I do not want to hard code the path to excel in my app. I'm not at my PC to confirm this at the moment, but according to a web search, you should be able to do this (watch for

Animation

2012-04-22 Thread J. Downs
Hey, all. I'd like to experiment with LC for some video game development. Sprite animation with collision detection, vertical and horizontal landscape scrolling, etc. Can LC keep up the pace when the number of on-screen objects gets to a dozen or more? Need special add-ons like the

Re: Animation

2012-04-22 Thread Malte Brill
Hi J, I'd say it really depends on the targeted platform. The weaker the hardware, the more hoops you need to jump through. Regarding animationEngine: As the developer of said add on it comes naturally for me to think it is helpful, however, it is written completely in liveCode. No rocket

Re: Animation

2012-04-22 Thread J. Downs
Thanks, Malte. I've downloaded the AnimationEngine trial and will take a look this afternoon. :) At this time, I am just playing around, so I will be developing on Mac OS X for deployment on same. If I get really crazy, I might see how my ideas run on my BootCamp Windows install. Not

Re: DELETE, PUT http

2012-04-22 Thread Mark Schonewille
Hi Trevor and others, I just looked into put into url again and found out that you need to configure your server to make it work. Apparently, you can't do this in a .htaccess or php.config file but you need to do this at a higher level. Currently, I have no server that I can configure this

Re: Help understanding iOS deployment

2012-04-22 Thread Graham Samuel
I'm trying to understand TestFlight and the workflow model it supports so as to interact with beta tester(s) for my iOS app(s), but so far their FAQ etc doesn't quite explain the model to a real ignoramus like me. I know how to develop for iOS using Livecode, and I have got as far as being

Re: Animation

2012-04-22 Thread Malte Brill
Hi J, I joined the Atari camp with the ST. Had an Amstrad CPC before that. And a Sinclair zx Spectrum. So I guess I can be counted into the I am old camp too :-D I once did a Parallax scroller in liveCode (when it was still rev). Might be fun to dig that one up and try with the accelerated

Re: Help understanding iOS deployment

2012-04-22 Thread Jim Lambert
Take a look at your TestFlight Dashboard. That alone will answer a few of your questions, such as how to invite testers. The other answers should be in their FAQ JimL ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Animation

2012-04-22 Thread Jim Hurley
Hi J, LC can handle the game of 9 ball pool fairly well, and that is fairly computationally intensive--handling the collisions between multiple moving balls. You can find it at http://jamesphurley.com/Revolution.html To download a stack from that web site, get the link and run this in the

Re: Code Security When Using LiveCode Server

2012-04-22 Thread Gregory Lypny
Hello Jacqueline, Richard, Mike, Pierre, and Phil, Thank you for your helpful thoughts on web code security. I think I’ll prototype with a combination of stacks for sensitive things (I’ll do some homework on where to place the stacks and how to refer to them) and embedded lines for innocuous

Working with seconds, what am I missing?

2012-04-22 Thread Andrew Henshaw
Trying to work with seconds to avoid format issues with dates in different countries I keep running into this issue, and im probably just missing something very obvious! Using the following simple code today (the 22nd April).. put the date into tDate convert tDate to seconds put

RE: Working with seconds, what am I missing?

2012-04-22 Thread John Dixon
the internet date might be what you are looking for Trying to work with seconds to avoid format issues with dates in different countries I keep running into this issue, and im probably just missing something very obvious! Using the following simple code today (the 22nd April)..

Re: Working with seconds, what am I missing?

2012-04-22 Thread Mike Bonner
You are correct, its a matter of daylight savings time. I believe the date converted to seconds turns into the seconds representing the first moment of that date IE midnight. Then there is an adjustment for daylight saving time. The easiest way around this (if you only care about the date itself

Re: Working with seconds, what am I missing?

2012-04-22 Thread Mike Bonner
the internet date will most likely work too so go that way I think! On Sun, Apr 22, 2012 at 3:02 PM, John Dixon dixo...@hotmail.co.uk wrote: the internet date might be what you are looking for Trying to work with seconds to avoid format issues with dates in different countries I keep

Need advice on upgrading LiveCode and environment

2012-04-22 Thread Dar Scott
I'm upgrading my development environment. Based on the pain others seem to have gone through, I want to make a big jump. However, I want to continue to build universal externals to support PPC and I'm concerned about multiple iOS external SDK installations. My current setup on Snow Leopard:

Re: Working with seconds, what am I missing?

2012-04-22 Thread Robert Brenstein
On 22.04.2012 at 21:55 Uhr +0100 Andrew Henshaw apparently wrote: Using the following simple code today (the 22nd April).. put the date into tDate convert tDate to seconds put tDate Returns 1335049200 Id expect to get a result of 22nd April, but instead Ive fed that in to a few

Re: Need advice on upgrading LiveCode and environment

2012-04-22 Thread Colin Holgate
I'm not certain about the external commands part of the question. Some day soon I'll try the SDK, see what options I have, On Apr 22, 2012, at 6:31 PM, Dar Scott d...@swcp.com wrote: That is good news. I have a test system for PPC. I had gotten the impression that later versions of Xcode

Re: Can I put advisory text in an 'ask' dialog?

2012-04-22 Thread Mark Smith
Graham Samuel-4 wrote Thanks very much Hugh Senior, Ken Ray and Mark Smith for their solutions, which are going in my scrapbook and then of course into the relevant projects. Graham Hi Graham, I was thinking of writing up a quick piece on methods for handling advisory text for the

Re: Animation

2012-04-22 Thread J. Downs
Thanks, Jim! I will take a peek. J. On Apr 22, 2012, at 3:38 PM, Jim Hurley wrote: Hi J, LC can handle the game of 9 ball pool fairly well, and that is fairly computationally intensive--handling the collisions between multiple moving balls. You can find it at