Click to See Complete Forum and Search --> : Java script banner


BluntForce
11-29-2004, 10:28 PM
Alright im new at this so...

I put this java script into my site...

http://javascript.internet.com/messages/cycling-banner.html

Im using blogspot.com ... i got it working fine in my preview mode, but as soon as i publish it, it comes up as a blank image... i have a blank image as one of my 3, but it dosent stop on that image during my previews...

Anyone know 'why' off the top of there heads?

Jupac
11-29-2004, 10:53 PM
Can a mod move this to Javascript

Well did you upload the pics?

BluntForce
11-29-2004, 10:55 PM
Sorry about putting it in the wrong place Q_Q

Yes i uploaded the pics lol

Jupac
11-29-2004, 10:57 PM
what the url to your blogspot

BluntForce
11-29-2004, 10:59 PM
www.reinforceusmc.blogspot.com

BluntForce
11-29-2004, 11:00 PM
its getting 'stuck' on the first picture is all i can figure out...

Sir Jake
12-09-2004, 10:43 PM
In the script itself there are only 2 images. If there were 3, they would be named [0], [1] and [2].


images[0].src="welcome.jpg";. . . <--image #1

images[1]=new Image; . . . . . . <--image #2



//put your 2nd image name//

images[1].src="imthe.jpg"; . . . <--image #2



//put your 3rd image name//

images[1].src="jss01-big.gif"; . . <--image #2 (I think you have to change the [1] to [2] so it will be image #3.)

Lemme know if that's it.