Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Brian@winmediainc.com webforumsuser@macromedia.com #1
tracking mouse for screen saver
I am creating a screen saver with director. I have is so that if the user clicks the mouse or presses a key, the movie will halt. These are all included in the movie script. The one thing I am having problems with is to have the movie quit when the mouse has moved. How can I do this without applying a script to a sprite?
- Brian
Brian@winmediainc.com webforumsuser@macromedia.com Guest
-
Screen saver
I want to put an image / object that was done in flash as a screen saver. How is this possible? -
Lg. Shaky Images in a screen saver
Hello There!! I have completed a screensaver in director that is comprised of 10 images all with the approximate width:800 pixels height:900... -
Using an .swf as a screen saver
After hours of searching for free software to do this, I decided to write it myself in Visual Basic. DISCLAIMER: I put about an hour into this... -
internet sharing and screen saver
#1 screen saver on means I am not there to answer this question. When I return the internet is fine after I move the mouse/hit the spacebar. #2... -
Jerky Screen Saver
Mike Dresser wrote: Thanks Mike for your reply. But, I'm such a greenie that I don't know how to tell if OpenGL is working or not. I do know that... -
JB #2
Re: tracking mouse for screen saver
here's a movieScript need to init the globals in startmovie, nextCheck
delay and 4 value establish a min distance over times, so 1 pixel nudge
doesn't quit
global lastmouseLoc, nextCheck
on idle
if the ticks > nextCheck then
if abs(the mouseH - lastmouseLoc.locH) > 4 \
or abs(the mouseV - lastmouseLoc.locV) > 4 then quit
lastmouseLoc = the mouseLoc
nextCheck = the ticks + 30 -- 2 times a sec test
end if
JB Guest



Reply With Quote

