kişisel internet sitemde ( http://www.akinbacioglu.com )projelerimi sunmak için bir slideshow yerleştirdim. sadece bir kere koyduğumda çalışıyor, ama slideshow u html kodları içinde kopyaladığım zaman hiçbirisi çalışmıyor. koddaki hangi değişkenlerle oynamam lazım. yardımcı olursanız sevinirim. slideshow un kodları şu şekilde;
<script language="JavaScript"> <!-- //Slide Show script (this notice must stay intact) //For this and more scripts //visit java-scripts.net orhttp://wsabstract.com
var myPix = new Array("images/works/also/akinweb.jpg","images/works/iceself/iceself1.jpg","images/works/also/akinweb.jpg", "images/works/iceself/iceself1.jpg") var thisPic = 0
function doPrevious() { if (document.images && thisPic > 0) { thisPic-- document.myPicture.src=myPix[thisPic] } }
function doNext() { if (document.images && thisPic < 3) { thisPic++ document.myPicture.src=myPix[thisPic] } } // --> </script>