473,394 Members | 2,048 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

need help: Noobie

mcc
When i put these two java scripts in the same html file only the fade script
works.

Why is that???

this part is in the <head>

<!-Rollover Script à

<SCRIPT TYPE="text/javascript">

<!--

function newImage(arg) {

if (document.images) {

rslt = new Image();

rslt.src = arg;

return rslt;

}

}

function changeImages() {

if (document.images && (preloadFlag == true)) {

for (var i=0; i<changeImages.arguments.length; i+=2)
{

document[changeImages.arguments[i]].src
= changeImages.arguments[i+1];

}

}

}

var preloadFlag = false;

function preloadImages() {

if (document.images) {

ebay_12_over = newImage("images/ebay_12-over.gif");

ebay_15_over = newImage("images/ebay_15-over.gif");

ebay_18_over = newImage("images/ebay_18-over.gif");

ebay_21_over = newImage("images/ebay_21-over.gif");

ebay_24_over = newImage("images/ebay_24-over.gif");

preloadFlag = true;

}

}

// -->

</SCRIPT>

<!-Rollover Script End à

this part is in the <body>


ONMOUSEOVER="changeImages('ebay_15', 'images/ebay_15-over.gif'); return
true;"
ONMOUSEOUT="changeImages('ebay_15', 'images/ebay_15.gif'); return true;">


this(fade images) is in the <body>

<!-- Fade Images -->

<script language="JavaScript1.2">

var slideshow_width='150px' //SET IMAGE WIDTH

var slideshow_height='100px' //SET IMAGE HEIGHT

var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var fadeimages=new Array()

//SET IMAGE PATHS. Extend or contract array as needed

fadeimages[0]="coin.jpg"

fadeimages[1]="jewl.jpg"

fadeimages[2]="gfx.jpg"

fadeimages[3]="fiddle.jpg"

fadeimages[4]="gold.jpg"

fadeimages[5]="cam.jpg"

fadeimages[4]="bbcards.jpg"

////NO need to edit beyond here/////////////

var preloadedimages=new Array()

for (p=0;p<fadeimages.length;p++){

preloadedimages[p]=new Image()

preloadedimages[p].src=fadeimages[p]

}

var ie4=document.all

var dom=document.getElementById

if (ie4||dom)

document.write('<div
style="position:relative;width:'+slideshow_width+' ;height:'+slideshow_height
+';overflow:hidden"><div id="canvas0"
style="position:absolute;width:'+slideshow_width+' ;height:'+slideshow_height
+';top:0;left:0;filter:alpha(opacity=10);-moz-opacity:10"></div><div
id="canvas1"
style="position:absolute;width:'+slideshow_width+' ;height:'+slideshow_height
+';top:0;left:0;filter:alpha(opacity=10);-moz-opacity:10"></div></div>')

else

document.write('<img name="defaultslide" src="'+fadeimages[0]+'">')

var curpos=10

var degree=10

var curcanvas="canvas0"

var curimageindex=0

var nextimageindex=1

function fadepic(){

if (curpos<100){

curpos+=10

if (tempobj.filters)

tempobj.filters.alpha.opacity=curpos

else if (tempobj.style.MozOpacity)

tempobj.style.MozOpacity=curpos/100

}

else{

clearInterval(dropslide)

nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"

tempobj=ie4? eval("document.all."+nextcanvas) :
document.getElementById(nextcanvas)

tempobj.innerHTML='<img src="'+fadeimages[nextimageindex]+'">'

nextimageindex=(nextimageindex<fadeimages.length-1)? nextimageindex+1 : 0

setTimeout("rotateimage()",pause)

}

}

function rotateimage(){

if (ie4||dom){

resetit(curcanvas)

var crossobj=tempobj=ie4? eval("document.all."+curcanvas) :
document.getElementById(curcanvas)

crossobj.style.zIndex++

var temp='setInterval("fadepic()",50)'

dropslide=eval(temp)

curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"

}

else

document.images.defaultslide.src=fadeimages[curimageindex]

curimageindex=(curimageindex<fadeimages.length-1)? curimageindex+1 : 0

}

function resetit(what){

curpos=10

var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)

if (crossobj.filters)

crossobj.filters.alpha.opacity=curpos

else if (crossobj.style.MozOpacity)

crossobj.style.MozOpacity=curpos/100

}

function startit(){

var crossobj=ie4? eval("document.all."+curcanvas) :
document.getElementById(curcanvas)

crossobj.innerHTML='<img src="'+fadeimages[curimageindex]+'">'

rotateimage()

}

if (ie4||dom)

window.onload=startit

else

setInterval("rotateimage()",pause)

</script>

</TD>

<!-- Fade Images -->



thx,

--
joe
Jul 20 '05 #1
3 1264
Could you post your total file?

"mcc" <ea**@nospam.net> schreef in bericht
news:7HHJb.2735$zf.2484@okepread05...
When i put these two java scripts in the same html file only the fade script works.

Why is that???

this part is in the <head>

<!-Rollover Script à

<SCRIPT TYPE="text/javascript">

<!--

function newImage(arg) {

if (document.images) {

rslt = new Image();

rslt.src = arg;

return rslt;

}

}

function changeImages() {

if (document.images && (preloadFlag == true)) {

for (var i=0; i<changeImages.arguments.length; i+=2) {

document[changeImages.arguments[i]].src = changeImages.arguments[i+1];

}

}

}

var preloadFlag = false;

function preloadImages() {

if (document.images) {

ebay_12_over = newImage("images/ebay_12-over.gif");
ebay_15_over = newImage("images/ebay_15-over.gif");
ebay_18_over = newImage("images/ebay_18-over.gif");
ebay_21_over = newImage("images/ebay_21-over.gif");
ebay_24_over = newImage("images/ebay_24-over.gif");
preloadFlag = true;

}

}

// -->

</SCRIPT>

<!-Rollover Script End à

this part is in the <body>


ONMOUSEOVER="changeImages('ebay_15', 'images/ebay_15-over.gif'); return
true;"
ONMOUSEOUT="changeImages('ebay_15', 'images/ebay_15.gif'); return true;">


this(fade images) is in the <body>

<!-- Fade Images -->

<script language="JavaScript1.2">

var slideshow_width='150px' //SET IMAGE WIDTH

var slideshow_height='100px' //SET IMAGE HEIGHT

var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var fadeimages=new Array()

//SET IMAGE PATHS. Extend or contract array as needed

fadeimages[0]="coin.jpg"

fadeimages[1]="jewl.jpg"

fadeimages[2]="gfx.jpg"

fadeimages[3]="fiddle.jpg"

fadeimages[4]="gold.jpg"

fadeimages[5]="cam.jpg"

fadeimages[4]="bbcards.jpg"

////NO need to edit beyond here/////////////

var preloadedimages=new Array()

for (p=0;p<fadeimages.length;p++){

preloadedimages[p]=new Image()

preloadedimages[p].src=fadeimages[p]

}

var ie4=document.all

var dom=document.getElementById

if (ie4||dom)

document.write('<div
style="position:relative;width:'+slideshow_width+' ;height:'+slideshow_height +';overflow:hidden"><div id="canvas0"
style="position:absolute;width:'+slideshow_width+' ;height:'+slideshow_height +';top:0;left:0;filter:alpha(opacity=10);-moz-opacity:10"></div><div
id="canvas1"
style="position:absolute;width:'+slideshow_width+' ;height:'+slideshow_height +';top:0;left:0;filter:alpha(opacity=10);-moz-opacity:10"></div></div>')

else

document.write('<img name="defaultslide" src="'+fadeimages[0]+'">')

var curpos=10

var degree=10

var curcanvas="canvas0"

var curimageindex=0

var nextimageindex=1

function fadepic(){

if (curpos<100){

curpos+=10

if (tempobj.filters)

tempobj.filters.alpha.opacity=curpos

else if (tempobj.style.MozOpacity)

tempobj.style.MozOpacity=curpos/100

}

else{

clearInterval(dropslide)

nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"

tempobj=ie4? eval("document.all."+nextcanvas) :
document.getElementById(nextcanvas)

tempobj.innerHTML='<img src="'+fadeimages[nextimageindex]+'">'

nextimageindex=(nextimageindex<fadeimages.length-1)? nextimageindex+1 : 0

setTimeout("rotateimage()",pause)

}

}

function rotateimage(){

if (ie4||dom){

resetit(curcanvas)

var crossobj=tempobj=ie4? eval("document.all."+curcanvas) :
document.getElementById(curcanvas)

crossobj.style.zIndex++

var temp='setInterval("fadepic()",50)'

dropslide=eval(temp)

curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"

}

else

document.images.defaultslide.src=fadeimages[curimageindex]

curimageindex=(curimageindex<fadeimages.length-1)? curimageindex+1 : 0

}

function resetit(what){

curpos=10

var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
if (crossobj.filters)

crossobj.filters.alpha.opacity=curpos

else if (crossobj.style.MozOpacity)

crossobj.style.MozOpacity=curpos/100

}

function startit(){

var crossobj=ie4? eval("document.all."+curcanvas) :
document.getElementById(curcanvas)

crossobj.innerHTML='<img src="'+fadeimages[curimageindex]+'">'

rotateimage()

}

if (ie4||dom)

window.onload=startit

else

setInterval("rotateimage()",pause)

</script>

</TD>

<!-- Fade Images -->



thx,

--
joe

Jul 20 '05 #2
On Sun, 4 Jan 2004 12:36:54 +0100, Ang Talunin
<pl************@no-reply.com> wrote:
Could you post your total file?


Could you please,

1) Not top-post
2) Trim your quotes

To the OP: Instead of posting the file, can you point to an on-line,
hosted copy of you page that features the scripts.

Mike

--
Michael Winter
M.******@blueyonder.co.invalid (replace ".invalid" with ".uk" to reply)
Jul 20 '05 #3
mcc

Could you post your total file?

i reposted up top...i made a simple web page. Should be easy for scripters
to ts.
Jul 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: neilphan | last post by:
Hi Guys, Please HELP! I'm new to PHP and would like to get your professional help! I"m writing simple and small login app using php session variable. I have 3 php scripts. The first is just a...
6
by: Aristotelis E. Charalampakis | last post by:
Hi all, this is a newbie question :-) I was wondering if there was a way to use the switch statement in a manner that each case statement includes more that a simple value. i.e.: switch (...
12
by: MatthewMlane | last post by:
Sorry I am new to C programming & this newsgroup. But I downloaded a C compiler & when it runs the executable file it pops up the dos prompt & shows my executed file but only for a nanosecond &...
2
by: russ | last post by:
I'm a very noobie to VB.NET, just went through the Microsoft Intro class. I'm trying to write a simple app that connects to a remote PC and makes a modification to...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
0
by: wayneman2864 | last post by:
first off i'd like to say i'm vary new at programming and i don't want this but it's my brother that dose its the only thing he asked for, for christmas so please don't make rude comments. what im...
0
by: cyclopsboi | last post by:
Guys I have a question and any help would be greatly appreciated. I am starting with a small software company doing some web development. they want web access to an application written in c++. ...
0
by: 7Percent | last post by:
Hi, I am just starting using python I was wondering if someone can help me with URL extraction and store it as a variable. Like theres a "<a href="www.google.com"><img src="google.gif"></a> How...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.