Hi Everyone, welcome to the discussion.
Have a question? Check if it's answered here first. You may be able to save yourself some time.
I'm new to programming, where can I get some help?
Here are some links for starting out:
Codea Wiki - https://bitbucket.org/TwoLivesLeft/codea/wiki/Home
Codea Tutorial - http://blog.feras.us/post/12758303249/codea-getting-started
Lua Tutorial - http://luatut.com
Programming in Lua - http://lua.org/pil
How do I type code into the forums?
Use three tilde (~) characters at the start and end of your code block. So it looks like this:
~~~
Your code
~~~
Can Codea make iPad Apps for the App Store?
Yes! You can use the Codea Runtime Library to build your project as a native iOS app. You can find it here: http://github.com/TwoLivesLeft/Codea-Runtime (You must have Xcode and an active iOS Developer enrolment.)
Where can I submit bug reports?
Please use the issue tracker here: https://bitbucket.org/TwoLivesLeft/codea/issues
Can I import my own sprites?
This feature will be available in Codea 1.4.
For now, you can use a hack discovered by Bortels: http://twolivesleft.com/Codea/Talk/discussion/21/spritepack-fun/p1
Can I draw text on the screen?
You can use the new text function in 1.3
-- Text functions
text( "string", x, y )
fontSize( size )
font("AmericanTypewriter-Regular")
w,h = textSize("string")
Text will take its coloring from the current fill color.
Can I share projects or get them off my iPad?
Sharing functionality was removed as of version 1.2.7 at the request of Apple. We hope to have it back in as soon as possible. Previously you were able to touch and hold one of your projects to send it by email. And could open projects by tapping "project.codea" files in your browser or in Mail.
You can also copy and paste them, or use a free tool like iExplorer to download and upload projects into Codea: http://www.macroplant.com/iexplorer/
Help! My project is rendering graphics from another project
Please make sure you call background(0,0,0) at the start of your draw function. This will set the background color to black, you can change it to a color of your choice.
Codea corrupts my code. What's going on?
Please go to Settings -> General -> Accessibility on your iPad and make sure the "Triple-Click Home" option is set to "OFF." There appears to be a bug with Apple's UITextView that causes input to be incorrectly reported when this accessibility option is set to "Voice Over" or "Ask."
Will there be an iPhone version of Codea?
We are thinking about a simplified version for iPhone.
Will there be an Android version of Codea?
There are no plans at the moment to build an Android version. We hope someone attempts this when we start open sourcing the backend of Codea.
It looks like you're new here. If you want to get involved, click one of these buttons!