Search found 3 matches
- Sun Jul 08, 2012 8:38 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sqlite, android deployment and facebook integration
- Replies: 1
- Views: 1989
Sqlite, android deployment and facebook integration
I have the 5.5.1 version and I have several things that are still greyed out even though I have the $59 per month subscription and I should have access to deploy to multiple platforms. I was able to setup Standalone Application Settings for Android but when I try to save the settings, I get an error...
- Sun May 27, 2012 3:19 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Comparing two variables that contain string data
- Replies: 4
- Views: 5016
Re: Comparing two variables that contain string data
Thank you Guys, you were exactly right. I am reading data from a SqlLite database so there were misc spaces at the beginning and/or ends of the data so the equality check was failing. I found this code: put word 1 to -1 of bNTemp into btnName via a Google search and it gets rid of whitespace/blanks ...
- Sat May 26, 2012 5:10 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Comparing two variables that contain string data
- Replies: 4
- Views: 5016
Comparing two variables that contain string data
Hello Everyone, I working on my first LiveCode game and I cannot figure out why a simple if block is not working. Here is the code: on mouseUp put getCorrectAnswer() into theAnswer put getOptionOne() into btnName if btnName = theAnswer then set the visible of button "Disabled" to true set the label ...