Procedure |
|
prepping the Flash slide show
- download starter files, move files to "html" folder
- examine "slides1" folder: note image dimensions
- examine "slides.xml" in a text editor
- open "slideshow.fla" in flash (note movie dimension)
- examine layers and contents
- edit symbol "grey area" (note dimensions of grey shape)
- file > publish setttings (html & swf; version=6); publish
- preview "slideshow.html" in a browser
embedding the slide show in Dreamweaver
- open "slides1/slideshow.html", save as "index.html"
- modify > page properties: margins=0
- save, close
- open "contact.html", save as "portfolio.html"
- select <div#col3>, delete
- select <div#col2>, change id=portfolio2
- select <div#text>, delete
- insert > html > frames > iframe
- edit code: <iframe src ="slides1/index.html" scrolling="no" width="680" height="480" frameborder="0"
>
- modify menu
- save, file > preview in browser (opt+F12)
- publish the updated site as a link from your personal process page for grading
optional: alternative slideshow #1 (advanced XML flash slide show)
- examine "slides2" folder: note image dimensions
- download source files from www.senocular.com

- move files into "slides2" folder; examine downloaded files
- open "xmlportfoliowithimageandtext.fla" in flash, save as "slideshow2.fla"
- examine layers and contents
- modify > document: 680x550, bg=black
- delete dynamic text, grouped objects
- double-click "image placeholder" symbol: shape=500x430, fill=black, delete stroke (important: do NOT scale symbol)
- double-click "menu" symbol: shape=680x65, fill=black, delete stroke
- scene 1: adjust layout, center symbols
- edit actions:
• line 104: currentThumb._x = child * 58;
• line 139: currentThumb.onRollOut = currentThumb.onDragOut = function()
• line 166: portfolioInfo.load(baseurl + "slides.xml");
- test movie (cmd+RETURN)
- double-click "image placeholder" symbol: new layer "first image"
- file > import to stage: "01.jpg", align, center
- file > publish setttings (html & swf; version=6); publish
- preview "slideshow2.html" in a browser
embedding alternative slideshow #1 in Dreamweaver
- open "slides2/slideshow.html", save as "index.html"
- modify > page properties: margins=0
- save, close
- duplicate "portfolio.html", rename "portfolio2.html"
- modify iframe:
<iframe src ="slides2/index.html" scrolling="no" width="680" height="550" frameborder="0"
>
- save, file > preview in browser (opt+F12)
optional: alternative slideshow #2 (SimpleViewer flash slide show)
- examine files in "slides3" folder
- download SimpleViewer
source files; examine files
- copy HTML, SWF, XML, files into "slides3" folder
- duplicate "portfolio.html", rename "portfolio3.html"
- modify iframe:
<iframe src ="slides3/index.html" scrolling="no" width="660" height="540" frameborder="0"
>
- edit "gallery.xml": add filenames, remove captions; change:
title=""
textColor="000000"
frameWidth="0"
thumbPosition="right"
thumbColumns="2"
thumbRows="6"
showOpenButton="false"
showFullscreenButton="false"
- edit "index.html": change bg color=#000000 (css+script);
change line 14: swfobject.embedSWF("simpleviewer.swf", "flashContent", "660", "560", "9.0.124", false, flashvars, params);
- preview "portfolio3.html" in browser (opt+F12)
|