23 posts
Posted 22 January 2014 - 11:44 AM
I did not come all the way out, what's wrong?
local start = {{plastic.clear()}, {plastic.addBox(18,18,200,9,0x444444,0.7)}, {plastic.addBox(18,27,200,90,0x666666,0.7)}, {plastic.addText(19, 19, "GCT", colortext)}, {plastic.addText(199, 19, "#1", colortext)} }
189 posts
Posted 22 January 2014 - 03:07 PM
What?
Please post more information
Edited on 22 January 2014 - 02:07 PM
23 posts
Posted 22 January 2014 - 03:18 PM
He don't run the variable, that's the problem.
189 posts
Posted 22 January 2014 - 03:20 PM
I believe this is part of your other post
23 posts
Posted 22 January 2014 - 03:26 PM
No, this is separate from each other, in others it is simply clear the problem, take away everything, this is a variable problem.
172 posts
Location
United States
Posted 22 January 2014 - 04:02 PM
Try this:
local function startup()
plastic.clear()
plastic.addBox(18,18,200,9,0x444444,0.7)
plastic.addBox(18,27,200,90,0x666666,0.7)
plastic.addText(19, 19, "GCT", colortext)
plastic.addText(199, 19, "#1", colortext)
end
-- Run the startup
startup()
23 posts
Posted 22 January 2014 - 04:10 PM
Try this:
local function startup()
plastic.clear()
plastic.addBox(18,18,200,9,0x444444,0.7)
plastic.addBox(18,27,200,90,0x666666,0.7)
plastic.addText(19, 19, "GCT", colortext)
plastic.addText(199, 19, "#1", colortext)
end
-- Run the startup
startup()
Thanks!