View Single Post
  #5  
Old 10-16-2008, 07:38 AM
  Rajdeep's Avatar 
Rajdeep Rajdeep is offline
 

Senior Member
  
Join Date: May 2007
Posts: 115
 

Unhappy Re: Need help, Interesting Slide show !!

Balinor thanks again !

Weird it still shows no result in home page (customer/home.tpl) where I called this file just below the help.tpl

The file slide_show.tpl has these set of codes based on your inputs
-------------
<html>
<head>
{literal}
<script type="text/javascript">
<!--
var image1=new Image()
image1. src="skin1/images/scroller images/offer-01.jpg"
var image2=new Image()
image2. src="skin1/images/scroller images/offer-02.jpg"
var image3=new Image()
image3. src="skin1/mages/scroller images/offer-03.jpg"
//-->
</script>
{/literal}
</head>
<body>
<img src="skin1/images/scroller images/100048.jpg" name="slide" border="0" width="115" height="56" />
{literal}
<script>
<!--
//variable that will increment through the images
var step=1
function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src" )
if (step<3)
step++
else
step=1
//call function "slideit()" every 2.5 seconds
setTimeout("slideit()",2500)
}
slideit()
//-->
</script>
{/literal}
</body>
</html>

-------------

I am stuck there BOSS....
__________________
X-Cart Pro 4.1.9
[Migrated from Gold 4.1.8 to Pro 4.1.9 - Feb 2008]
Add Ons: X-FancyCategories, X-Magnifier, X-FeatureComparison, X-SpecialOffers
Reply With Quote