to make pictures, you can use all of the drawing commands, or you can convert a pic to a ti.image although this is realy large and re-drawing the screen will slow down
to make a menu...if you ever read the tibasicdev article on making custom menus thats basicly what you would have to do it in lua, as there isnt a
"Menu(" command
Lua is realy easy to learn everything is event/function based
Lua example:
1 2 3 4 5
| function on.paint(gc) gc:setColorRGB(0, 0, 0)--set the color to black gc:drawRect(3, 3, 50, 50)--draws a rectangle on the screen with black lines gc:fillRect(100, 0, 50, 50)--makes a rectangle that is filled with the color black end |
to find some tutorials go to:
http://www.inspired-lua.org/to get the official scripting tools go to:
http://education.ti.com/educationportal/sites/US/nonProductSingle/nspire-scripting.html