Adding
Pre-loaders and Intro Scenes
to Flash websites

Your final, revised Design Portfolio will be due
during the final exam period Monday, May 8th,
at 10:30. a.m. Be thinking about revising the five
websites in your Design Portfolio:
1) Portfolio page, 2) Web genre website, 3) Image website, 4) Flash Banner ad, and 5) Flash website
a). Basic elements of a webpage
b). Elements of a basic Flash Banner Ad
c). Elements of a Basic Flash website
d). Web Design Criteria for Final Design Portfolios
1. Web Design Portfolio Site ( due Jan. 30)
2. Web genre Site (due March 3 )
3. Image Site (due March 24)
4. Flash Banner ad (due April 21 )
5. Flash Site (Due May 8th)

1 .Students' Favorite Flash websites
- Macromedia Flash Gallery
- California Soul
- Business Power: Flash Showcase
- TheNorthFace.com
- Drive the Mars Rover
- Bacardi.com
- PeelPub.com
- ByMarkdowntown.com
- HomeStarRunner.com
- CatieCurtis.com
- Macrocosmetics.com
- Courvoiser.com
- Hennessy Cognac.com
- Moet.com
2. Waikiki Flash movie Project
- Visit Waikiki webpage
- Creating Waikiki Flash Movie Intro.
for Waikiki webpage
- Hawaiaan Hilton Flash website
- See USA Today for simple Flash movie
- Use CD of images, movies, and sounds
- Flashkit.com
2. Interesting Commercial use of Flash
- 2003 GM Annual Report
- Ralph Lauren
- Colorado.com

"Flash is presently, without question,
the easiest way for developers to create powerful, emotional,
compelling content for the internet. Sound, animation, and interactivity
do not have to be limited to beeps, flashes, and buttons. When
used effectively Flash sites can inform, educate, and entertain.
However, when it is used inappropriately, it can lead to deep
frustration and even resentment."
Josh Ulm io Research

3. Requirements for Final Flash
website
- Basic
Elements of a Flash Banner Ad
- Elements of a Basic Flash
Website
- Design
Criteria for Final Design Portfolios
2. Getting a Flash Movie to loop just three times
- Instructions for getting a movie to loop three
times
- Flashkit.com tutorial
- loop3times.fla
- See simple version of Pre-loader code
- This trick is accomplished with Actionscript
coding. Copy the actions at frame 1 and at
the last frame of the movie.
- This is set to loop three times. But you can
change the number of loops by changing
some of the code.
- Example of Sewall movie that loops 3 times
2. Creating a sliding picture show using Flash
- See slideshow1.html
- See slidewhow2.html
- See oar2.html
- See slideshow1.fla
- You can add or subtract frames
in this slideshow to slow it down or
speed it up.
- When you make slideshows like this, try
to make all the pictures the same size
and make sure they all line up with other.
- If the images don't line up with each other,
your images will jump a litttle as the movie runs.
5. Quick Time Movies on the Web
- Putting QuickTime Movies on the Web
- Creating High Quality Content with Windows
Media Encoder
- If you can't run these movies, you need
to Download and install QuickTime Player
- QuickTime Movie Trailers
- Movie Trailers on the Web
- Yahoo.com: Movie Trailers
6. Using Dreamweaver to Insert Movies and Sound
files onto a webpage (See class handouts for
information about settings).
- In Dreamweaver, select "Insert" and select
"Media" and then select "plug-in."
- Remember to set the parameters for your
movie by clicking the "parameters" and
then selecting how you want your movie to
run.
- In some cases, you will need to select the
name of the plug-in that the computer will
need to run the movie. For example,
the plug-in for Quick Time movies is
"Quick Time".
- See the handout for a list of parameters to
set for running video on a webpage
Autostart=false
controller=true
width=180
height=140
Loop=false
pluginspage= "http://www.cnn.com/SHOWBIZ/Movies/
bat_forever/Batman.mov"
- Mission Impossible III Trailer
- Link to A Scanner Darkly movie trailer
- Star Wars III Trailer : finding the ".mov" URL in order to link the trailer to your webapge.
-- Actual Star Wars Trailer
- Examples of Movie Trailers added to a webpage
1. If you are having trouble following the above
instructions, go to one of the pages below and
open up the source code and copy it. Look for where the ".mov" file is and replace it in the
code with the address to the ".mov" file that
you want to play. Make sure you enclose this
address in quotations marks, like this:
"homemovie.mov"
2. Matrix Reloaded
2. A Scanner Darkly
2. Starsky and Hutch
3. Alien vs. Predator
4. Spider Man 2
- Look at the source code of any of my trailer
pages and look at the source code for a movie
trailer on quicktime to understand what parts
of the quicktime movie trailer source code I
needed to copy to have the trailer load in
my own website.
- The secret to this trick is to make sure you copy the URL for the quicktime movie, which should always end with ".mov" and then paste this URL into the code of your own webpage.
- See wmovies.htm for example of Running Movies
6. Splash pages
- Example of basic Splash Page
- Basic Splash Page
- Splash Demo Page
- Redirecting webpages
- Splash Pages May Drown your Site
4. Adding buttons to Flash Intros to Play
the Flash movie
- gagner.html
- See gagner1.html
- See demo1.html
- See sewmov.fla (add link)
5. Adding Buttons to play scenes in Flash Movies
- See scenecontrols.html for an example
- See scenecontrols.fla for the code for this
- on (release) {
gotoAndPlay("Scene 2", 1);
- At the end of each scene you play using a
button, put an action that returns the Flash
movie to Scene 1, where the button you
pushed to plaly this scene is.
gotoAndStop("Scene 1", 1);
6. Using Buttons to play movieclips
- See movieclipconbig.html
- See movieclipconbig.fla
- Make sure you add a basic stop action
at the end of each movie clip so that
the clip will only run once.
- Now add the command to play the
movie clip to the button:
on (release) {
with ("lionc") {
play();
}
}
- Make sure there are frames available
to play the movie clip in your larger
flash movie.
- Add action at the end of each movie clip--
within the movie clip itself, not on the
flash timeline--so that it only plays once:
gotoAndStop(1);
- You can also add a blank keyframe
in between your movie clips and add
a stop action, so after playing each
movie clip once, it will go back
to the main button menu.
7. Playing movie clips with Mouse-Over activation
- The easiest way to do this is to make a button to
activate the movie clip. With a button, you can
play a movie clip with mouse-over and mouse out.
- Use this code in the botton, using the name of movie-clip instance to target the specific
movie-clip. In this example, the instance name is "lionc"
on (mouseover) {
with ("lionc") {
play();
}
on (mouseout) {
with ("lionc") {
stop();
}
}
- See example of using Mouse-Up and
Mouse-Down to activate and control a movie clip:
mousemovieclips.html
- See mousemovieclips.fla for the code to do this
- See buttmovieclip.html
- See buttmovieclip.fla
8. Adding a Bar Pre-loader
- Go to
FlashKit.com to download tutorial "flas"
to add to your Flash movies
- Bar
Pre-loader fla file to download
- See example of the Bar Pre-loader
fla I used
in the above example: bpreload.fla
- See example of movie with a Pre-loader
- See example of Pre-loader fla file.
- See simple version of Pre-loader. fla file
6. Making your Flash movie open an html file at
the end of the movie
- At the end of your Flash movie, put
an action command on its own separate
layer.
- This action command should say this:
getURL("http://www.colorado.edu");
- Make sure you use the "get URL" command
and put the URL in quotation marks.
- By the way the URL you have Flash open at
the end of your Flash movie could be a
Flash movie itself.
- You can use Flash or Dreamweaver to
create the webpages within this
website. Just make sure your pages
are easy to navigate and use.




- Edefiant.com
- Flashkit.com
- FlashPlanet.com
- Macromedia
Flash Support Center
- Flash Bible.com

|