Notifications
Clear all

[Closed] MAXScript Double-Click?

hi,

i want a script that can execute sth when double-clicking a scene object.

anybody can help me? many thanks. : )

6 Replies

Not possible,AFAIK

 PEN

This works some of the time. I don’t really have time to work on it more.


 numTimes=0
 stTime=timeStamp()
 when select $Sphere01 changes id:#selectTest do
 (
 	
 	if (timeStamp())-stTime>3000 then
 	(
 		numTimes=0
 		stTime=timeStamp()
 	)
 	
 	
 	numTimes+=1
 	if stTime==0 then stTime=timeStamp()
 	
 	if numTimes==3 then 
 	(
 		if (timeStamp())-stTime<3000 then
 		(
 			print #yep
 		)
 		numTimes=0
 		stTime=timeStamp()
 	)
 )
 

i also thought it was not directly possible.

hi PEN,
i appreciate your help and time. : )

interesting, my questions were always anwsered by Technical Artist and Technical Director : )
i also want to become this kind of person.

btw, is it possible to collect my previous threads or replys, so i can get the answers quickly when i forget or when i am missing the people who have helped me : )

: ) i got the way to find my posts.

thank you again PEN, i remember you have answered my another fk to ik question, : )

hi PEN,

it seems sometimes sigle click also evokes the #yep message : )