Search found 268 matches

by gpb01
Mon Jan 14, 2013 7:36 am
Forum: Talking LiveCode
Topic: SSL Library not Found
Replies: 15
Views: 9713

Re: SSL Library not Found

... Does anybody know how to do DECRYPT for iOS? ... You can use mergAES by Monte ... http://mergext.com/home/mergaes/ And be careful by the encription restriction imposed by Apple for App approval ... :( Guglielmo My bad. Looks like my client needs the encrypt-decrypt to be using AES-128 (not 256)...
by gpb01
Fri Jan 11, 2013 7:39 am
Forum: Talking LiveCode
Topic: SSL Library not Found
Replies: 15
Views: 9713

Re: SSL Library not Found

My bad. Looks like my client needs the encrypt-decrypt to be using AES-128 (not 256). Sorry. Thanks Guglielmo, but mergAES is on 256 only... :( Regards, Genie So ... you can ask Monte to modify the mergAES to support both 128 and 256 AES or ... you can write your routine ( ... many C code samples a...
by gpb01
Thu Jan 10, 2013 9:22 am
Forum: Talking LiveCode
Topic: SSL Library not Found
Replies: 15
Views: 9713

Re: SSL Library not Found

genie wrote: ...
Does anybody know how to do DECRYPT for iOS? ...
You can use mergAES by Monte ... http://mergext.com/home/mergaes/

And be careful by the encription restriction imposed by Apple for App approval ... :(

Guglielmo
by gpb01
Mon Jan 07, 2013 9:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: bitNot oddness
Replies: 14
Views: 6215

Re: bitNot oddness

... Anyway, the dictionary is very misleading, even if the bitnot operator does have that method to its madness. ... Craig Newman Hi Craig, I agree that the behavior of bitNot is not normal and the dictionary give incorrect info and ... also on my opinion the operaror should take charge only of use...
by gpb01
Mon Jan 07, 2013 8:33 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: bitNot oddness
Replies: 14
Views: 6215

Re: bitNot oddness

Thanks, all, I'm learning quite a bit here. So if I want to mask to 3 digits of binary precision, would I do this: put (bitNot 1) bitAnd 4 into myVar Thanks for your continued assistance. Joel Hi Joel, what you means for 3 digits ? 3 bits ? If you need 3 bits you must bitAnd with 0000 0000 0000 000...
by gpb01
Mon Jan 07, 2013 7:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: bitNot oddness
Replies: 14
Views: 6215

Re: bitNot oddness

... On that note, if you don't mind it would be helpful if you would add an explanation to the notes section of the dictionary for this, for people like me to better understand what is up. ... Hi sturgis, note added ... now waiting for approval ;) Anyway, I repeat, is very easy to write ONE stateme...
by gpb01
Mon Jan 07, 2013 6:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: bitNot oddness
Replies: 14
Views: 6215

Re: bitNot oddness

... perhaps a roll your own solution might be in order. ... Come on sturgis ... all this just to do a binary NOT ? :D :D :D The bitNot work wery well, just remember that you are working with 32 bits so, if you want less bits, follow the bitNot with a bitAnd to remove the unused bits :) Two statemen...
by gpb01
Mon Jan 07, 2013 5:39 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: bitNot oddness
Replies: 14
Views: 6215

Re: bitNot oddness

Mmm ... I think you have to revise a little bit the Boolean mathematics ... :D The system work with 32 bits so 3 is NOT 11 but is 0000 0000 0000 0000 0000 0000 0000 0011. Now, if you negate this you have 1111 1111 1111 1111 1111 1111 1111 1100 which is exactly 4294967292 :) If you want to use ONLY 2...
by gpb01
Sat Jan 05, 2013 3:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using UIBackgroundModes to play audio file
Replies: 6
Views: 5991

Re: Using UIBackgroundModes to play audio file

Rleiman, this is last time that I will answer to you about this question ... You don't wont to understand that ONLY the following kind of applications can ask iOS to run in background : - Apps that play audible content to the user while in the background, such as a music player app - Apps that keep ...
by gpb01
Fri Jan 04, 2013 5:08 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using UIBackgroundModes to play audio file
Replies: 6
Views: 5991

Re: Using UIBackgroundModes to play audio file

Rleiman, I have given several times to you the link to the information you need on the Apple site ... or you STUDIES that link or you will not be able to do what you want to do ... And, in any case, I don't know if Apple will approve a background application like the one you want to do ... ... they ...
by gpb01
Sat Dec 29, 2012 6:25 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Working with settings.plist to keep app from exiting.
Replies: 2
Views: 2068

Re: Working with settings.plist to keep app from exiting.

rleiman, as I already indicated to you in another post, or you understand this : http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html or is totally unuseful that you continue your attempts ! Is...
by gpb01
Thu Dec 27, 2012 6:53 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Keep the app running when the home button is pressed
Replies: 7
Views: 4951

Re: Keep the app running when the home button is pressed

Please, read here : http://forums.runrev.com/viewtopic.php?f=7&t=13579#p65438 and also here : http://forums.runrev.com/viewtopic.php?f=49&t=13411#p64445 . More important ... READ CAREFULLY here : http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/Managin...
by gpb01
Wed Dec 19, 2012 8:53 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Send message when certain time past the hour is reached
Replies: 12
Views: 7787

Re: Send message when certain time past the hour is reached

Yes ... unfortunately is not something really for a "beginner" ... but really, you have to read and to understand the linked Apple page about the "Applications Flow" ( ... and the different "state" ... Running, Suspended, Background, etc ) and what is allowed and what not ;) iOS is easy for users, b...
by gpb01
Wed Dec 19, 2012 5:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Send message when certain time past the hour is reached
Replies: 12
Views: 7787

Re: Send message when certain time past the hour is reached

Another solution is ... declaring the App as "Supported Background Tasks" ( "audio" is one of the seven possibles background task class ) but ... subject to strict Apple approval process for this kind of applications ( ... they are quite strong on background tasks ). More ... to create a " Long-Runn...
by gpb01
Wed Dec 19, 2012 5:10 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Send message when certain time past the hour is reached
Replies: 12
Views: 7787

Re: Send message when certain time past the hour is reached

Hi, Thanks for the reply. Looks like I may be able to use the local notifications if I can do it without showing a dialog box because I want to play an audio file at that time and not show the user any messages. I hope this is possible to do. If it is, then I will purchase a "Pay as you go" license...

Go to advanced search