Posted 30 August 2016 - 01:49 PM
Hi Guys!
I am working on a new OS for CC that's in heavy beta but i am having issues with click events
Error: setup:13: attempt to compare string with number expected, got string
Code:
Thank you!
I am working on a new OS for CC that's in heavy beta but i am having issues with click events
Error: setup:13: attempt to compare string with number expected, got string
Code:
term.clear()
term.setBackgroundColor(colors.gray)
term.clear()
term.setCursorPos(16,8)
print("Welcome to Carbon!")
term.setCursorPos(11,10)
print("A Fast, Simple, and Secure OS")
term.setCursorPos(20,14)
term.setBackgroundColor(colors.lightGray)
print("Install")
while true do
local x, y, event, button = os.pullEvent("mouse_click")
if x > 19 and x < 26 and y == 14 then
term.clear()
end
end
Thank you!