This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- AgendaTimer | |
-- Use this function to perform your initial setup | |
displayMode(FULLSCREEN) | |
rectMode(CORNERS) | |
font("HelveticaNeue") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- OnTopic Beta 3 | |
-- Use this function to perform your initial setup | |
displayMode(FULLSCREEN) | |
rectMode(CORNERS) | |
font("HelveticaNeue") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Editor | |
Editor = class() | |
function Editor:init(x) | |
-- you can accept and set parameters here | |
self.x = x | |
end | |
function Editor:draw() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- OnTopic | |
-- copyright 2012 by Mark Sumner | |
-- Use this function to perform your initial setup | |
displayMode(FULLSCREEN_NO_BUTTONS) | |
rectMode(CORNERS) | |
font("HelveticaNeue") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- Cider | |
-- an interactive interface builder for Codea | |
-- version 1.00 | |
-- 30 September 2012 | |
-- Mark Sumner | |
-- [email protected] | |
displayMode(FULLSCREEN) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# DropList | |
DropList = class() | |
function DropList:init(s, left, bottom, right, top) | |
local i, k | |
self.frame = Frame(left, bottom, right, top) | |
self.text = s | |
self.itemText = {} | |
self.value = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- Cider | |
-- an interactive interface builder for Codea | |
-- version 1.00 | |
-- 30 September 2012 | |
-- Mark Sumner | |
-- [email protected] | |
displayMode(FULLSCREEN) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# DropList | |
DropList = class() | |
function DropList:init(s, left, bottom, right, top) | |
local i, k | |
self.frame = Frame(left, bottom, right, top) | |
self.text = s | |
self.itemText = {} | |
self.value = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- Cider | |
-- an interactive interface builder for Codea | |
-- version 1.1 | |
-- 6 October 2012 | |
-- Mark Sumner | |
-- [email protected] | |
displayMode(FULLSCREEN) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Frame | |
Frame = class() | |
-- Frame | |
-- ver. 1.5 | |
-- a simple rectangle for holding controls. | |
-- ==================== | |
function Frame:init(left, bottom, right, top) |