[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.frontpage.programming

Playing *.wav files with non-Frontpage buttons?

=?Utf-8?B?cm9kY2hhcg==?=

4/23/2004 11:15:00 PM

Greetings, I have for the most part developed a website
with FrontPage 2002, SP3. I created most of the art with
JASC Paint Shop Pro 8, including an Image Map from their
File-->Export menu options.

I would like to have very simple *.wav file play depending
on different rollovers, but FrontPage only has that cheesy
hover buttons and does not handle *.wav files anyway.

The code generated by Paint Shop Pro is below, I had read
about PlayWav(), by Microsoft, but haven't tried it yet.

***************
<IMG NAME="PathLogoButtonOut0" SRC="images/PathLogoButton-
Out.gif" BORDER="0" USEMAP="#PathLogoButton-Out"
width="108" height="108">

<MAP NAME="PathLogoButton-Out">
<AREA SHAPE="rect" COORDS="2,3,107,107"
HREF="http://www.pathfinders-kumc.org/index...
TARGET="_self" ALT="Click to go to Pathfinders Home Page"
onClick="if(document.images)
document.PathLogoButtonOut0.src='images/PathLogoButton-
In.gif';"
onMouseDown="if(document.images)
document.PathLogoButtonOut0.src='images/PathLogoButton-
In.gif';"
onMouseOver="if(document.images)
document.PathLogoButtonOut0.src='images/PathLogoButton-
In.gif';"
onMouseUp="if(document.images)
document.PathLogoButtonOut0.src='images/PathLogoButton-
Out.gif';"
onMouseOut="if(document.images)
document.PathLogoButtonOut0.src='images/PathLogoButton-
Out.gif';" >
</MAP>
********************

Thanks for your inputs...
Sixbells

1 Answer

=?Utf-8?B?cm9kY2hhcg==?=

4/24/2004 2:06:00 AM

0

Sorry, I miss-typed, FrontPage supports *.wav files!! :-

Basically I just want to make some basic *.wav sounds for audio feedback when a button is pushed...you are welcome to check out the site if you wish, the URL is below, the button is in the top left corner

Thanks
sixbell

----- sixbells wrote: ----

Greetings, I have for the most part developed a website
with FrontPage 2002, SP3. I created most of the art with
JASC Paint Shop Pro 8, including an Image Map from their
File-->Export menu options

I would like to have very simple *.wav file play depending
on different rollovers

The code generated by Paint Shop Pro is below, I had read
about PlayWav(), by Microsoft, but haven't tried it yet

**************
<IMG NAME="PathLogoButtonOut0" SRC="images/PathLogoButton Out.gif" BORDER="0" USEMAP="#PathLogoButton-Out" width="108" height="108"><MAP NAME="PathLogoButton-Out"><AREA SHAPE="rect" COORDS="2,3,107,107"
HREF="http://www.pathfinders-kumc.org/index...
TARGET="_self" ALT="Click to go to Pathfinders Home Page
onClick="if(document.images) document.PathLogoButtonOut0.src='images/PathLogoButton-In.gif';"
onMouseDown="if(document.images) document.PathLogoButtonOut0.src='images/PathLogoButton-In.gif';
onMouseOver="if(document.images) document.PathLogoButtonOut0.src='images/PathLogoButton-In.gif';"
onMouseUp="if(document.images) document.PathLogoButtonOut0.src='images/PathLogoButton-Out.gif';"
onMouseOut="if(document.images) document.PathLogoButtonOut0.src='images/PathLogoButton-Out.gif';" ></MAP
*******************

Thanks for your inputs..
Sixbell