Groups | Blog | Home
all groups > flash (macromedia) > march 2004 >

flash (macromedia) : Presentation and Projector standalone


simonart
3/23/2004 10:07:17 PM
OS 10.2.3
Flash MX for Mac.

I need to produce a presentation just like PowerPoint, which I do not have.

While in Projector full screen on a G4 laptop, it is possible to use the
keyboard strokes to jump forward and back between each frame. How do I set this
up please? Can it be any keystrokes or must it be specific.

It may also need to be burn to CD for clients that use Windows OS.

urami_
3/24/2004 7:38:12 AM


[quoted text, click to view]

Certainly possible , in fact multiple ways .
Using button Key event , using enter frame with keydown , using listeners , keydown clip event ...
many ways ....

[quoted text, click to view]

Say , you want to use left right keys to jump one frame and move one frame back
in movie clip.
To the movie you about to control , add the following action :

onClipEvent (keyDown) {
if (Key.isDown(Key.LEFT)) {
this.gotoAndStop(_currentframe-1);
} else if (Key.isDown(Key.Right)) {
this.gotoAndStop(_currentframe+1);
}
}



--

Regards


urami_*



<no>
http://flashfugitive.com/
</no>

AddThis Social Bookmark Button