Advertisement
Guest User

OpenP

a guest
Jun 15th, 2013
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. os.loadAPI("mouseAPI")
  2.  
  3. local bridge = peripheral.wrap("back")
  4. bridge.clear()
  5.  
  6. local _text = bridge.addText(0,0,"Drag your mouse to the bottom right-hand corner until the red box covers the entire screen.", 0x000000)
  7.  
  8. mouseAPI.setScreenSize(mouseAPI.getScreenSize("SumDicax"))
  9. _text.delete()
  10.  
  11.  
  12. local myBox = bridge.addBox(10,10,10,10,0x33CC33, 0.5)
  13. local currentWidth = 10
  14.  
  15. mouseAPI.startMouse(2,0xCC0000,0.7)
  16. while true do
  17.     local x, y = mouseAPI.waitForClick("SumDicax")
  18.     x,y = math.abs(x), math.abs(y)
  19.     term.clear() term.setCursorPos(1,1)
  20.     term.write("X: "..x)
  21.     term.write("Y: "..y)
  22.     if x<=10+currentWidth and x>=10 and y>=10 and y<=10+currentWidth then
  23.         currentWidth = currentWidth + 5
  24.         myBox.setWidth(currentWidth)
  25.         myBox.setHeight(currentWidth)
  26.     end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement