Re: iOS questions

2012-10-17 Thread Monte Goulding
Hi Mark Yes the calling control can be a stack. Anything that you can refer to as 'me' in your code. Wherever you handle startup/shutdown etc you can handle UIApplicationWillResignActiveNotification for your whole app. Most likely in the mainstack script but could be in a library script or back

Re: iOS questions

2012-10-17 Thread Mark Smith
Hi Monte, just so I am sure I understand /command mergNotify pNotification This command registers for a notification to be sent to the calling control (me) whenever it occurs. The same notification may be registered by multiple controls in your app. If a single control registers for the same

Re: iOS questions

2012-10-16 Thread Colin Holgate
At the top of the icons section is a checkbox marked Prerendered Icon. Checking that will make it use your non-shine version. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: iOS questions

2012-10-16 Thread Mark Smith
J. Landman Gay wrote > It's a field in the iOS pane in standalone settings. Just choose a PNG > from your hard drive. Got that working, very cool! Do you know if there is an option to remove the "shine" (settings, newsstand, contacts, calendar, game centre for example don't have shine, messages,

Re: iOS questions

2012-10-14 Thread Monte Goulding
On 15/10/2012, at 2:10 PM, Mark Smith wrote: > Monte Goulding wrote >> on UIApplicationWillResignActiveNotification >> -- do your encryption here >> end UIApplicationWillResignActiveNotification > > I'm going to try: > > > on UIApplicationWillResignActiveNotification > close this stack > e

Re: iOS questions

2012-10-14 Thread Mark Smith
Monte Goulding wrote > on UIApplicationWillResignActiveNotification >-- do your encryption here > end UIApplicationWillResignActiveNotification I'm going to try: on UIApplicationWillResignActiveNotification close this stack end UIApplicationWillResignActiveNotification and see if we can

Re: iOS questions

2012-10-14 Thread Mark Smith
Monte Goulding wrote > on UIApplicationWillResignActiveNotification >-- do your encryption here > end UIApplicationWillResignActiveNotification Thanks -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/iOS-questions-tp4656338p4656373.html Sent from the Revoluti

Re: iOS questions

2012-10-14 Thread Monte Goulding
> Monte, what I want to do is encrypt the file (mergeAES) before the system > shuts down or hibernates. Essentially trap it and send a shutdown/close > stack request to myself so I can terminate in an orderly fashion. Doable? mergNotify "UIApplicationWillResignActiveNotification" on UIApplicati

Re: iOS questions

2012-10-14 Thread Mark Smith
Jacque, thanks for the pointer re: the icon. Monte, what I want to do is encrypt the file (mergeAES) before the system shuts down or hibernates. Essentially trap it and send a shutdown/close stack request to myself so I can terminate in an orderly fashion. Doable? Thanks -- Mark -- View this

Re: iOS questions

2012-10-13 Thread J. Landman Gay
On 10/13/12 9:22 PM, Mark Smith wrote: 2. is there a tutorial around on how to add an application icon for an iPad program? It's a field in the iOS pane in standalone settings. Just choose a PNG from your hard drive. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperAct

Re: iOS questions

2012-10-13 Thread Monte Goulding
I don't think you can trap this event. Also I don't think there's a separate notification for this button as opposed to the system just going to sleep. But if you just want to know if the device is put to sleep eiher way with your app running then that's what mergNotify was invented for. You wan