Advertisement
Guest User

push2

a guest
Jan 11th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.90 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. function drawTaskbar()
  4. paintutils.drawLine(1,1,90,1,8)
  5. end
  6. function drawDesktop()
  7. paintutils.drawPixel(1,1,128)
  8. term.clear()
  9. drawTaskbar()
  10. end
  11. drawDesktop()
  12. while true do eT,button,x,y = os.pullEvent()
  13. if eT == "mouse_click" and x == 1 and y == 1 then
  14. paintutils.drawPixel(1,2,2048)
  15. term.setBackgroundColor(2048)
  16. term.setCursorPos(1,2) term.write("Applications >") term.setCursorPos(1,2)
  17.  
  18. push = "true"
  19. end
  20. It = 15
  21.  
  22. if eT == "mouse_click" and x == 1 and y == 2 and button == 1 and push == "true" then
  23. term.setBackgroundColor(2048)
  24. term.setCursorPos(It,2)
  25. term.write(" INDEED")
  26. end
  27. --in here, I think, you put everything else.
  28. if eT == "mouse_click" and x == 1 and y == 19 then
  29. break
  30.  
  31.  
  32. end --ending the above if statement
  33.  
  34. if eT == "key" and button == 57 then
  35. term.setCursorPos(1,9)
  36. paintutils.drawPixel(1,1,32768)
  37. term.clear()
  38. break end
  39.  
  40.  
  41.  
  42.  
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement