HTML Help Forum HTML Help
Please Search for the answer to your question before asking it! Thanks.
 

how to make my slide show work in HTML
Post a Reply to this Topic Ask a New Question
Click here to go to the original topic
       HTML Help Forum -> General HTML
View previous topic :: View next topic  
Author Message
alobi



Joined: 15 Sep 2009
Posts: 1

Posted: Tue Sep 15, 2009 9:53 am     how to make my slide show work in HTML  

<script language="javascript">
<Script>
<!--------- Hide from non-javaScript browsers
var num=1
img1 = new Image ()
img1.SCR="FH000006_1.jpg"
img2 = new Image ()
img2.SCR="IMG_0636.jpg"
img3 = new Image ()
img3.SCR="FH000006_1.jpg"
img4 = new Image ()
img4.SCR="FH000006_1.jpg"

text1="Text for picture one"
text2="Text for picture Two"
text3="Text for picture Three"
text4="Text for picture Four"

function slidshowUp()
{
num=num +1
if (num == 5)
{num=1}
document.mypic.src=eval("img"+num+".src")
document.Yopics.alex.value=eval("text" + num)
}


function slidshowBack()
{
num=num - 1
if (num == 0)
{num=4}
document.mypic.src=eval("img"+num+".src")
document.Yopics.alex.value=eval("text" + num)
}

<!-----------stop hiding script-------->
</script>
<IMG SRC="FH000006_1.jpg" NAME="mypic" BORDER=0 HEIGHT="100" WIDTH="100">

<Form Name= "Yopics">
<INPUT TYPE="text" width ="100" Name= "alex" VALUE="YO! Basketball" >

</Form>
<A href="javaScript: slidshowUp()"> Next</A>
<A href="javaScript: slidshowBack()"> Back</A>
Thanks
sticks464



Joined: 31 Dec 2006
Posts: 2627

Posted: Tue Sep 15, 2009 10:10 am      

Where did you get this script so I can see the original and how to implement. Can't do much with just a script, no images and where it is located on the html page.
nikki



Joined: 24 Nov 2008
Posts: 132

Posted: Tue Sep 15, 2009 1:14 pm      

There are many examples in this website
http://www.dynamicdrive.com/dynamicindex14/index.html
sticks464



Joined: 31 Dec 2006
Posts: 2627

Posted: Tue Sep 15, 2009 1:24 pm      

Probably not one of theirs. Looks like an old slideshow script.
 
 
DARFUR
HOSTING / DESIGN
MAKE MONEY

       HTML Help Forum -> General HTML
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group