Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Audio rollover

    I'd like to play the sound of ocean waves when a mouse pointer goes over the "Welcome" title on my wife's web site. I've tried out some scripts I picked up from various sites, but none seem to work "onMouseover(Some work when I click "Welcome" but only to the extent that they open a new page with the QT player). Does anybody know of a simple script that will accomplish this? Thanks [url]www.mycapehome.net[/url]



    Jeff_X webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. linux flash player 9, audio out ok, audio in ko, videoin ko
      hello! I try to use wengomeeting, a website for videoconferences (5 peoples max) and I have problem with linux version the flash player is...
    2. Audio Stream distorted when passing audio streams to/from mac andpc
      We are having the oddest problem. We have a video conference room of sorts, where a main moderator has video/audio to all other users. All other...
    3. Sync of Recording Audio with an Audio Stream
      Hello, I badly need advice/ views/pointers to information on how one can record through the MIC and maintain syncronization with another file...
    4. audio test / earcons = audio icons in director
      hi, we have implemented an short usability test about EARCONS (= audio icons). it was done with director and if you are interested try it. it...
    5. Rollover and making another rollover with links
      Hi, This website is nicely designed and the rollover menu design is simple, but clear and effective. http://earthtrends.wri.org/ Does...
  3. #2

    Default Re: Audio rollover

    Let me look in too it...

    Šark Templer im also i know as ultimate Gamerx

    i currently Make proboard codes/Hacks like portals and stuff

    Staff: 4
    Šark Templer webforumsuser@macromedia.com Guest

  4. #3

    Default Re: Audio rollover

    You can try something like..
    <script type="text/javascript">
    function troyan_play(sound,place) { place.src=sound; }
    function troyan_stop(place) { place.src=""; place.src=null; }
    </script>
    <embed id="oceanSound" style="position: absolute; display: none;" />

    And in the image...
    <img src="logo.gif" alt="" onmouseover="troyan_play('ocean.wav','oceanSound') ;"
    onmouseout="troyan_stop('oceanSound');" />


    --
    - Troyan <dnunes@email.com>


    Troyan Guest

  5. #4

    Default Re: Audio rollover

    thanks i might use it :)


    Šark Templer im also i know as ultimate Gamerx

    i currently Make proboard codes/Hacks like portals and stuff

    Staff: 4
    Šark Templer webforumsuser@macromedia.com 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