re: graphics rollovers w/o javascript

2000-10-03 Thread Reed Powell

It might be possible to do what you want.  If you can set up your page so
that the image is actually the background for a table cell (instead of in an
IMG), for instance, then you can define the image not in the TD but in a
style sheet for the page.  That allows you to then swap style sheets in the
onMouseover onMouseout conditions.  There is a lot of detail on how to do
this in a book from Microsoft called Stupid Web Tricks.  If you cannot find
it, email me a fax number and I'll fax over the pages of interest.

good luck,
-reed

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: graphics rollovers w/o javascript

2000-10-03 Thread Rob Keniger

on 10/3/00 10:31 PM, Reed Powell at [EMAIL PROTECTED] wrote:

 That allows you to then swap style sheets in the
 onMouseover onMouseout conditions.

Umm, those triggers are JavaScript triggers.

-- 

Rob Keniger

big bang solutions

mailto:[EMAIL PROTECTED]
http://www.bigbang.net.au

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



re: graphics rollovers w/o javascript

2000-10-03 Thread Peter Theobald

onMouseover is Javascript.
He is asking how to do it without Javascript.

At 08:31 AM 10/3/00 -0400, Reed Powell wrote:
It might be possible to do what you want.  If you can set up your page so
that the image is actually the background for a table cell (instead of in an
IMG), for instance, then you can define the image not in the TD but in a
style sheet for the page.  That allows you to then swap style sheets in the
onMouseover onMouseout conditions.  There is a lot of detail on how to do
this in a book from Microsoft called Stupid Web Tricks.  If you cannot find
it, email me a fax number and I'll fax over the pages of interest.

good luck,
-reed

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: graphics rollovers w/o javascript

2000-10-03 Thread Richard Ramos

Isn't there a way to do this with DHTML.  This is only for IE.

Richard Ramos
Network Administrator
Softitler Net, Inc.
www.softitler.com
[EMAIL PROTECTED]

- Original Message -
From: "Peter Theobald" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, October 03, 2000 9:48 AM
Subject: re: graphics rollovers w/o javascript


 onMouseover is Javascript.
 He is asking how to do it without Javascript.

 At 08:31 AM 10/3/00 -0400, Reed Powell wrote:
 It might be possible to do what you want.  If you can set up your page so
 that the image is actually the background for a table cell (instead of in
an
 IMG), for instance, then you can define the image not in the TD but
in a
 style sheet for the page.  That allows you to then swap style sheets in
the
 onMouseover onMouseout conditions.  There is a lot of detail on how to do
 this in a book from Microsoft called Stupid Web Tricks.  If you cannot
find
 it, email me a fax number and I'll fax over the pages of interest.
 
 good luck,
 -reed
 

---
---
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


 --
-
 Peter Theobald, Chief Technology Officer
 LiquidStreaming http://www.liquidstreaming.com
 [EMAIL PROTECTED]
 Phone 1.212.545.1232 x204 Fax 1.212.545.0938

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: graphics rollovers w/o javascript

2000-10-03 Thread Dave Watts

  onMouseover is Javascript.
  He is asking how to do it without Javascript.
...
 Isn't there a way to do this with DHTML.  This is only for IE.

DHTML is JavaScript!

Or, more accurately, DHTML is essentially the marriage of JavaScript (or
other client-side scripting like VBScript) to a more complete Document
Object Model which allows you to modify the properties of HTML "objects"
programmatically.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: graphics rollovers w/o javascript

2000-10-03 Thread Peter Theobald

"DHTML" isn't really anything more than what they are calling HTML, JavaScript, and 
CSS (Style Sheets) to differentiate using all of these "advanced" techniques as 
compared to just using HTML.

So unfortunately, the answer is 'no'. You can't do graphic rollovers without 
Javascript (or another client-side language like VBScript or Java Applets).

At 10:06 AM 10/3/00 -0700, Richard Ramos wrote:
Isn't there a way to do this with DHTML.  This is only for IE.

Richard Ramos
Network Administrator
Softitler Net, Inc.
www.softitler.com
[EMAIL PROTECTED]

- Original Message -
From: "Peter Theobald" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, October 03, 2000 9:48 AM
Subject: re: graphics rollovers w/o javascript


 onMouseover is Javascript.
 He is asking how to do it without Javascript.

 At 08:31 AM 10/3/00 -0400, Reed Powell wrote:
 It might be possible to do what you want.  If you can set up your page so
 that the image is actually the background for a table cell (instead of in
an
 IMG), for instance, then you can define the image not in the TD but
in a
 style sheet for the page.  That allows you to then swap style sheets in
the
 onMouseover onMouseout conditions.  There is a lot of detail on how to do
 this in a book from Microsoft called Stupid Web Tricks.  If you cannot
find
 it, email me a fax number and I'll fax over the pages of interest.
 
 good luck,
 -reed
 

---
---
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


 --
-
 Peter Theobald, Chief Technology Officer
 LiquidStreaming http://www.liquidstreaming.com
 [EMAIL PROTECTED]
 Phone 1.212.545.1232 x204 Fax 1.212.545.0938

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.