Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.
-
leontine06 #1
changing pointer on mouse over
I would like to change the pointer when going over a link into a different picture than the typical explorer hand (namely my company's logo). Is there a behavior I can use or any other way to do this?
leontine06 Guest
-
How do I change mouse pointer?
Hi! I'm a Macromedia Flash user and creating my own personal website for my project in Internet subject. How do I change the default mouse pointer... -
Clock Mouse Pointer
I have been reading through these forums and have been googling for days but can not find a straight answer to my question. Please help. We have... -
constrain mouse pointer
Hi all, Im creating a simple FLASH, shooting game, and trying to implement some actionscript which constrains where the user can move the mouse.... -
Mouse pointer flickers between hand and pointer
I have created a menu. On the menu options for some reason my mouse pointer flickers between a hand and pointer. Did anyone have this problem and... -
Sound & mouse/pointer ?
Hi all, I would like to know how I must go about first to ensure that the pointer is located at a specific location when entering a movie. ... -
greatlogix #2
Re: changing pointer on mouse over
Well, I dont know any extension for it but this code might help you.
[Q]
<html>
<head>
<title>My page</title>
<style type="text/css">
.myClass{
cursor:pointer;
cursor:hand;
}
</style>
<script type="text/javascript">
function setEvents(){
var images = document.getElementsByTagName('IMG');
for(var no=0;no<images.length;no++){
if(images[no].src.match(/(plus\.gif)|(minus\.gif)/gi)){
images[no].className='myClass';
}
}
}
</script>
</head>
<body onload="setEvents()">
<img src="whatever.gif"><img src="plus.gif"><img src="minus.gif">
</body>
</html>
[/Q]
greatlogix Guest
-
E Michael Brandt #3
Re: changing pointer on mouse over
leontine06 wrote:
It is not possible in all browsers, or so it seems.> I would like to change the pointer when going over a link into a different picture than the typical explorer hand (namely my company's logo).
See this link, among others:
[url]http://www.hypergurl.com/customcursor.html[/url]
--
E. Michael Brandt
[url]www.divahtml.com[/url]
[url]www.divahtml.com/products/scripts_dreamweaver_extensions.php[/url]
Standards-compliant scripts and Dreamweaver Extensions
[url]www.valleywebdesigns.com/vwd_Vdw.asp[/url]
JustSo PictureWindow
JustSo PhotoAlbum, et alia
--
E Michael Brandt Guest



Reply With Quote

