How can i set two statements on a if in lua.I have to set something like this
if ("100000">=myVariable<="80000") then
display.remove(myImage)
end
Every-time i try to build the application just crashes!How can this be done?
|
How can i set two statements on a if in lua.I have to set something like this
Every-time i try to build the application just crashes!How can this be done? |
||||
|
You should convert your string to a number, if you know for sure that it should be a number, and if there is no reason for it to be a string. Here's how to do a comparison for a range:
Notice the |
|||||||||
|
dofile("your_file.lua"). This will run it in interactive mode, and stop it from closing after the error is shown. (You could also add "pause" to the end of your build script) – Deco Jan 24 '12 at 17:14