Today we will begin creating an Educational Software or Interactive Story. I will show some examples in class and attach a template below:
Showing posts with label Multimedia. Show all posts
Showing posts with label Multimedia. Show all posts
Monday, May 24, 2010
Wednesday, May 12, 2010
Flash Project #11: Interactive Scene
Today we are going to begin putting all of the different techniques together into an Interactive Scene or a Multimedia Greeting Card. You should include the following:
/* Custom Mouse Pointer Code */
onClipEvent (load) {
Mouse.hide();
startDrag(this, true);
}
onClipEvent(mouseMove){
updateAfterEvent();
}
/* Stop Code */
stop();
/* Button 'Go To' Code */
on (release) {
gotoAndPlay(10);
}
- A custom mouse pointer
- An opening "scene" which stops at a specific keyframe
- A button which will advance the viewer to the next "scene"
- A "stop" on the next scene so users can view everything
- A button which will allow users to start over from the first scene
- Sound and/or music
Some of the Actionscript you will need includes:
/* Custom Mouse Pointer Code */
onClipEvent (load) {
Mouse.hide();
startDrag(this, true);
}
onClipEvent(mouseMove){
updateAfterEvent();
}
/* Stop Code */
stop();
/* Button 'Go To' Code */
on (release) {
gotoAndPlay(10);
}
Subscribe to:
Posts (Atom)