Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.clear()
- term.setCursorPos(1,1)
- function drawTaskbar()
- paintutils.drawLine(1,1,90,1,8)
- end
- function drawDesktop()
- paintutils.drawPixel(1,1,128)
- term.clear()
- drawTaskbar()
- end
- drawDesktop()
- while true do eT,button,x,y = os.pullEvent()
- if eT == "mouse_click" and x == 1 and y == 1 then
- paintutils.drawPixel(1,2,2048)
- term.setBackgroundColor(2048)
- term.setCursorPos(1,2) term.write("Applications >") term.setCursorPos(1,2)
- push = "true"
- end
- It = 15
- if eT == "mouse_click" and x == 1 and y == 2 and button == 1 and push == "true" then
- term.setBackgroundColor(2048)
- term.setCursorPos(It,2)
- term.write(" INDEED")
- end
- --in here, I think, you put everything else.
- if eT == "mouse_click" and x == 1 and y == 19 then
- break
- end --ending the above if statement
- if eT == "key" and button == 57 then
- term.setCursorPos(1,9)
- paintutils.drawPixel(1,1,32768)
- term.clear()
- break end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement