Notifications
Clear all
[Closed] MAXScript Double-Click?
Dec 01, 2006 6:39 am
hi,
i want a script that can execute sth when double-clicking a scene object.
anybody can help me? many thanks. : )
6 Replies
Dec 01, 2006 6:39 am
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()
)
)
Dec 01, 2006 6:39 am
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 : )
Dec 01, 2006 6:39 am
thank you again PEN, i remember you have answered my another fk to ik question, : )