body tag combination?

P

Pam

I've got several scripts running from one of my sites - can someone tell me
how to combine these scripts together so that they will all run correctly?

I tried putting this together - but the only thing that worked was the
background :) - any help appreciated

Pam


<BODY onload="runSlideShow()" background="images/brdrwalp2.jpg" bgsound
src=HORSE1.wav" loop="-1">
 
S

Steve Easton

What kind of scripts??

And could you provide a url so we can see them.


--
95isalive
This site is best viewed..................
...............................with a computer
I've got several scripts running from one of my sites - can someone tell me
how to combine these scripts together so that they will all run correctly?

I tried putting this together - but the only thing that worked was the
background :) - any help appreciated

Pam


<BODY onload="runSlideShow()" background="images/brdrwalp2.jpg" bgsound
src=HORSE1.wav" loop="-1">
 
S

Steve Easton

Actually <imho> they need to be left separate
and exactly where they are because of the
different functions they perform.
</imho>

Also the top image didn't load. The file path for it
points to the root of the web ( same location as index.htm )
instead of your images folder.

And also, <imho>even though I love horses
( owned a registered thoroughbred trained as a hunter jumper for several
years.
My sister owns three paints ) you might want to consider "unlooping" the
background sound for the home page.
</imho>
Although I did enjoy "Mama's don't let your babies grow up to be cowboys"
<grin>
 
P

Pam

thanks Steve for the suggestions ... I want to unloop them..but she says
no... I would love to leave them seperate - but I've been told by others
that you have to group them in order for them all to work ...sigh.... I just
want to get the stupid animation thing working - maybe I can talk her into
not having that :)

or....have you ever used frontlook's slideshow thing? considering buying the
thing :)

Pam
 
P

Pam

could you tell me which top image didn't load? since all of it shows up for
me, could you right click and tell me the name of the jpg? thanks

Pam
 
S

Stefan B Rusynko

bgsound src=HORSE1.wav" loop="-1"/
is not a valid body parameter
Add it in the head section as a meta tag
<bgsound src="HORSE1.wav" loop="-1">
--




| I've got several scripts running from one of my sites - can someone tell me
| how to combine these scripts together so that they will all run correctly?
|
| I tried putting this together - but the only thing that worked was the
| background :) - any help appreciated
|
| Pam
|
|
| <BODY onload="runSlideShow()" background="images/brdrwalp2.jpg" bgsound
| src=HORSE1.wav" loop="-1">
|
|
|
 
S

Steve Easton

The image that doesn't load is the first
of the slide show images.
Where are the slide show images located??
If they are in the images folder, you need to
change this:
Pic[0] = '1.jpg'
Pic[1] = '2.jpg'
Pic[2] = '3.jpg'
Pic[3] = '4.jpg'
Pic[4] = '5.jpg'
Pic[5] = '6.jpg'

to this:
Pic[0] = 'images/1.jpg'
Pic[1] = 'images/2.jpg'
Pic[2] = 'images/3.jpg'
Pic[3] = 'images/4.jpg'
Pic[4] = 'images/5.jpg'
Pic[5] = 'images/6.jpg'

Or, place the images in the root
( same location as the index page )

Also, you can't combine the scripts, as they
perform different functions, and need to be
loaded separately. I disagree with whoever told
you they need to be combined.

hth

--
95isalive
This site is best viewed..................
...............................with a computer

thanks Steve for the suggestions ... I want to unloop them..but she says
no... I would love to leave them seperate - but I've been told by others
that you have to group them in order for them all to work ...sigh.... I just
want to get the stupid animation thing working - maybe I can talk her into
not having that :)

or....have you ever used frontlook's slideshow thing? considering buying the
thing :)

Pam
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top