changing pointer on mouse over

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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....
    4. 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...
    5. 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. ...
  3. #2

    Default 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

  4. #3

    Default Re: changing pointer on mouse over

    leontine06 wrote:
    > 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).
    It is not possible in all browsers, or so it seems.

    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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139