Search found 211 matches
- Tue Apr 12, 2016 12:20 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: "Proceed if requirements are fulfilled"
- Replies: 2
- Views: 944
Re: "Proceed if requirements are fulfilled"
It is a little hard to answer your question because there are so many ways to do this. One option would be: 1) Within whatever handler you have that allows the user to move a match - at the end of that handler test whether all of the matches are in the right place If (/* all the matches are in the r...
- Thu Mar 17, 2016 11:40 pm
- Forum: Android Deployment
- Topic: Advertising on Android
- Replies: 22
- Views: 15282
Re: Advertising on Android
Hi Andy Thanks - other than sorting out the monetisation aspects, I'm basically ready to start end-user testing for my puzzle app. Please let me know how you go with the possible advertising partners. I sent emails to three possibles a few weeks ago, and got zero responses. I'm confident that the go...
- Wed Mar 16, 2016 10:51 pm
- Forum: Android Deployment
- Topic: Advertising on Android
- Replies: 22
- Views: 15282
Re: Advertising on Android
Thanks Neil I had a feeling that there would be a "non-technical" reason why this would not work; because technically it seemed so easy that I wondered why everyone wasn't doing it ;-) This leaves me with 3 options for my 95% complete Android app: 1) Go live without advertising, and wait for LC8 2) ...
- Tue Mar 15, 2016 11:50 pm
- Forum: Android Deployment
- Topic: Advertising on Android
- Replies: 22
- Views: 15282
Re: Advertising on Android
I have been told, within the past 24 hours, that: - "We no longer partner with Inneractive" - "At present, to add advertising to an Android app, the approach that works is to use Appwrapper: http://www.vserv.com/technology/appwrapper/" Personally, I'm a bit underwhelmed by the appWrapper option; alt...
- Mon Mar 14, 2016 7:47 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: How to clear queued pushed button messages
- Replies: 3
- Views: 1108
Re: How to clear queued pushed button messages
Thanks. I was searching on "Clear", "Delete", "Empty" etc. Never thought of "Flush" 

- Sun Mar 13, 2016 9:58 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: How to clear queued pushed button messages
- Replies: 3
- Views: 1108
How to clear queued pushed button messages
I know that I've seen this somewhere before, but I can't find the words to search on which tell me about the command that clears the queue of buttons that the user has already clicked Scenario : 1) User is clicking on buttons as part of a game 2) User reaches the end point of the game, but has overs...
- Mon Feb 22, 2016 8:58 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Preventing unwanted Line Breaks in a txt file
- Replies: 5
- Views: 1326
Re: Preventing unwanted Line Breaks in a txt file
Thanks all. With your input - I seem to have it working now. Short version: - for strings with an unencrypted length 47 char and under - the EncryptIt(myunencryptedstring) and DecryptIt(myencryptedstring) functions described earlier work fine. - but for strings with an unencrypted length 48 char and...
- Mon Feb 22, 2016 6:05 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Preventing unwanted Line Breaks in a txt file
- Replies: 5
- Views: 1326
Re: Preventing unwanted Line Breaks in a txt file
Thanks Craig I've been experimenting some more. I couldn't reproduce your tKeyHex vs tKey result, but I did narrow things down a little. - If I encrypt a string of length 47 ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstu"), then the resulting encrypted string is length 64, and everything is good....
- Mon Feb 22, 2016 4:50 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Preventing unwanted Line Breaks in a txt file
- Replies: 5
- Views: 1326
Preventing unwanted Line Breaks in a txt file
I'm using a pair of Encrypt & Decrypt functions that I found here - http://forums.livecode.com/viewtopic.php?f=11&t=22200 They are working fine; except that I have a problem when - I encrypt a long (approx 100 char) string - and write the encrypted version to a .txt file - and then try to use the De...
- Wed Feb 17, 2016 5:30 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Interrupting a PUT URL or POST TO URL
- Replies: 2
- Views: 1016
Re: Interrupting a PUT URL or POST TO URL
Perfect. Seems to be working now. Thanks
- Tue Feb 16, 2016 4:38 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Interrupting a PUT URL or POST TO URL
- Replies: 2
- Views: 1016
Interrupting a PUT URL or POST TO URL
I'm writing an app that communicates with an online database. At one point I'm using the following to check whether the mobile device is able to connect to the internet - put URL "http://www.google.com" into ccConnCheck if ccConnCheck is empty then... At another point I'm using the following to chec...
- Wed Feb 10, 2016 8:04 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Good practice for security in Livecode
- Replies: 4
- Views: 1299
Re: Good practice for security in Livecode
Thanks - good to know.
- Tue Feb 09, 2016 8:09 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Good practice for security in Livecode
- Replies: 4
- Views: 1299
Re: Good practice for security in Livecode
Thanks. I'd already experimented with PhP middleware, and got it working with Livecode, so that is a relatively easy option for me to follow.
Do you have any info on the 2nd part to my query; how easy is it for people to reverse-engineer an apk file to see the Livecode source?
Regards
Do you have any info on the 2nd part to my query; how easy is it for people to reverse-engineer an apk file to see the Livecode source?
Regards
- Mon Feb 08, 2016 8:25 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Connect button works with laptop, but not with Android
- Replies: 3
- Views: 1015
Re: Connect button works with laptop, but not with Android
When I recently encountered something similar it was because I had forgotten to tick
Standalone Application Settings > Android > Application Permissions > Internet
Regards
Standalone Application Settings > Android > Application Permissions > Internet
Regards
- Mon Feb 08, 2016 8:20 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Good practice for security in Livecode
- Replies: 4
- Views: 1299
Good practice for security in Livecode
Is there any advice on good practice for security in Livecode standalone applications? My immediate concern is providing a level of protection to an app I'm developing for Android. I'd like to appropriately minimize the risk of naughty people: - being able to view external database credentials that ...