lingo-l this works but how do i get it to work on drag or stilldown ?

2002-05-03 Thread Kevin McCarthy
I got the code below to work, but I need it to update on click and drag, or I think it might be stilldown I need to use but am not sure. Can anyone point me in the right direction. -KEV- property oldMousePos, on beginsprite me oldMousePos=333 end on exitFrame me go to the frame --put

Re: lingo-l this works but how do i get it to work on drag or stilldown ?

2002-05-03 Thread bhakti
one thing to do is add an enterframe script, and check if the mouse is already down when entering the frame: on enterFrame me if the mouseDown then if the mouseH oldMousePos then go to the frame+1 else go to the frame-1 end if end if end and actually, i'd put that