Free Articles, Free Web Content, Reprint Articles
Saturday, February 11, 2012
 
Free Articles, Free Web Content, Reprint ArticlesRegisterAll CategoriesTop AuthorsSubmit Article (Article Submission)ContactSubscribe Free Articles, Free Web Content, Reprint Articles
ADVERTISEMENTS
 

Make a snazzy Flash slide show

A Guide for creating a snazzy Flash slide show manually.

As the world goes digital, creating the digital web Flash photo album would be absolutely a good choice to demonstrate the photos to our friends and family. You can make this snazzy Flash Slide Show manually or by related software.

First of all, create a new file in Dreamweaver editor, then cut and paste the following code in HTML code window:

<!-- Begin
NewImg = new Array (
"images/1.jpg",
"images/2.jpg",
"images/3.jpg"
);  

var p = NewImg.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = NewImg[i];
}  

var ImgNum = 0;
var ImgLength = NewImg.length - 1;  

//Time delay between Slides in milliseconds
var delay = 3000;
var t;
var lock = false;
var run;

function chgImg(direction) {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDurati­on)";
document.images.SlideShow.filters.blendTrans.Apply();
}

if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();

}

if (document.images) {
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength) {
ImgNum = 0;

}

if (ImgNum < 0) {
ImgNum = ImgLength;

}

document.SlideShow.src = NewImg[ImgNum];
   }

}  

function auto() {
if (lock == true) {
lock = false;
window.clearInterval(run);

}

else if (lock == false) {
lock = true;
run = setInterval("chgImg(1)"Article Submission, delay);
   }

}
//  End -->
</script>
</head>  

<body>
<img src="images/1.jpg" name="SlideShow" width="125" height="100">
<table>
<tr>
<td align="right"><a href="javascript:chgImg(-1)">Previous</a></td>
<td align="center"><a href="javascript:auto()">Auto/Stop</a></td>
<td align="left"><a href="javascript:chgImg(1)">Next</a></td>
</tr>
</table>
</body>


Thats all. Test your Flash photo album and Enjoy!

From: http://www.flash-slide-show.com  A practical yet easy-to-use Flash Slide Show and online Flash photo album creator.

Article Tags: Hoto Album, Imgl Ngth

Source: Free Articles from ArticlesFactory.com

ABOUT THE AUTHOR


Lisa Janice, teaches, trains and consults on business and professional presentations and eCommerce related matters.



Health
Business
Finance
Technology
Travel
Home Repair
Computers
Family
Communication
Entertainment
Marketing
Self Help
Autos
Home Business
ECommerce
Sports
Education
Internet
Other
Law
Partners


Page loaded in 0.262 seconds