Thread: What a drag?
View Single Post
  #4  
Old 02-07-2007, 09:07 AM
Gladsomebeast Gladsomebeast is offline
Member
 
Join Date: Mar 2005
Location: Isla Vizta, CA
Posts: 397
viz.grab() with the mouse makes sense if the object you are grabbing is on the screen.

Code:
import viz
viz.go()


screenText = viz.addText('GrabME', viz.SCREEN)
s = 1
screenText.scale(s,s,s)
screenText.setPosition(.5, .5)

grabLink = None

def onMouseDown(button):
	global grabLink
	if grabLink:
		#in case we missed mouse up event
		grabLink.remove()
	grabLink = viz.grab( viz.Mouse, screenText )

viz.callback(viz.MOUSEDOWN_EVENT,onMouseDown)


def onMouseUp(button):
	global grabLink
	grabLink.remove()
	grabLink = None

viz.callback(viz.MOUSEUP_EVENT,onMouseUp)
__________________
Paul Elliott
WorldViz LLC
Reply With Quote