Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers
Ray Mooney Ray Mooney is offline
external usenet poster
 
Posts: 3
Default Embeded Background Sound Mp3

Is it possible to create a Word Document that will have an MP3 sound file as
a background sound, that can be 'embedded' in the document so that the
document can be sent to multiple users?

Thanks in adavcne for any help!!


  #2   Report Post  
Posted to microsoft.public.word.newusers
JoAnn Paules [MVP] JoAnn Paules [MVP] is offline
external usenet poster
 
Posts: 2,113
Default Embeded Background Sound Mp3

Oh heavens, I hope not.

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




"Ray Mooney" wrote in message
...
Is it possible to create a Word Document that will have an MP3 sound file
as
a background sound, that can be 'embedded' in the document so that the
document can be sent to multiple users?

Thanks in adavcne for any help!!




  #3   Report Post  
Posted to microsoft.public.word.newusers
Ray Mooney Ray Mooney is offline
external usenet poster
 
Posts: 3
Default Embeded Background Sound Mp3

I'm looking for a solution to this question if it's possible. If that's not
possible just say so, rather than some ****y comment.

I understand that you can 'embed' all sorts of sound file types into a MS
Word document. It would be very helpful if you can do that with an MP3 file.
If there is a way to do that, I would like to know how.

Again, thanks in advance to anyone with some good information about how to
possibly do this!!



"JoAnn Paules [MVP]" wrote in message
...
Oh heavens, I hope not.

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




"Ray Mooney" wrote in message
...
Is it possible to create a Word Document that will have an MP3 sound

file
as
a background sound, that can be 'embedded' in the document so that the
document can be sent to multiple users?

Thanks in adavcne for any help!!






  #4   Report Post  
Posted to microsoft.public.word.newusers
Greg Maxey Greg Maxey is offline
external usenet poster
 
Posts: 264
Default Embeded Background Sound Mp3

On Feb 5, 9:58 am, "Ray Mooney" wrote:
I'm looking for a solution to this question if it's possible. If that's not
possible just say so, rather than some ****y comment.

I understand that you can 'embed' all sorts of sound file types into a MS
Word document. It would be very helpful if you can do that with an MP3 file.
If there is a way to do that, I would like to know how.

Again, thanks in advance to anyone with some good information about how to
possibly do this!!

"JoAnn Paules [MVP]" wrote in . ..



Oh heavens, I hope not.


--


JoAnn Paules
MVP Microsoft [Publisher]


~~~~~
How to ask a question
http://support.microsoft.com/KB/555375


"Ray Mooney" wrote in message
...
Is it possible to create a Word Document that will have an MP3 sound

file
as
a background sound, that can be 'embedded' in the document so that the
document can be sent to multiple users?


Thanks in adavcne for any help!!- Hide quoted text -


- Show quoted text -


Not tested with MP3, but you might try something along the lines shown
he

http://gregmaxey.mvps.org/Sound_On_Document_Open.htm

  #5   Report Post  
Posted to microsoft.public.word.newusers
Ray Mooney Ray Mooney is offline
external usenet poster
 
Posts: 3
Default Embeded Background Sound Mp3

I tried to insert the macro for playing sound in a word document. The steps
are very straight forward. When I try to test the script in the editor I get
a comple error that goes something like ..."Only comments may appear after
End-Sub, End-Function or End-Property".

What should I do to correct this error?

Here is what the script looks like in the editor;

Sub Sound()

Option Explicit
Private Declare Sub PlaySound Lib "winmm.dll" _
(ByVal lpszName As String, _
ByVal hModule As Long, _
ByVal dwFlags As Long)
Private Const SOUND_FILENAME = &H20000

Sub AutoOpen()
Dim sndFileName As String
Dim i As Long
'Note: Change the next line to point to your sound file.
sndFileName = "C:\Documents and Settings\Administrator\My Documents\My
Stuff\Chicago Bears\SuperBowlShuffle.mp3"
PlaySound sndFileName, 0&, SOUND_FILENAME
End Sub





"Greg Maxey" wrote in message
oups.com...
On Feb 5, 9:58 am, "Ray Mooney" wrote:
I'm looking for a solution to this question if it's possible. If that's

not
possible just say so, rather than some ****y comment.

I understand that you can 'embed' all sorts of sound file types into a

MS
Word document. It would be very helpful if you can do that with an MP3

file.
If there is a way to do that, I would like to know how.

Again, thanks in advance to anyone with some good information about how

to
possibly do this!!

"JoAnn Paules [MVP]" wrote in

. ..



Oh heavens, I hope not.


--


JoAnn Paules
MVP Microsoft [Publisher]


~~~~~
How to ask a question
http://support.microsoft.com/KB/555375


"Ray Mooney" wrote in message
...
Is it possible to create a Word Document that will have an MP3 sound

file
as
a background sound, that can be 'embedded' in the document so that

the
document can be sent to multiple users?


Thanks in adavcne for any help!!- Hide quoted text -


- Show quoted text -


Not tested with MP3, but you might try something along the lines shown
he

http://gregmaxey.mvps.org/Sound_On_Document_Open.htm





  #6   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Embeded Background Sound Mp3

You would do better if you compared what you have reproduced here with what
is actually on Greg's web page (albeit there is a typo in his instructions)?

Sub Sound() ?

See also http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Ray Mooney wrote:
I tried to insert the macro for playing sound in a word document. The
steps are very straight forward. When I try to test the script in the
editor I get a comple error that goes something like ..."Only
comments may appear after End-Sub, End-Function or End-Property".

What should I do to correct this error?

Here is what the script looks like in the editor;

Sub Sound()

Option Explicit
Private Declare Sub PlaySound Lib "winmm.dll" _
(ByVal lpszName As String, _
ByVal hModule As Long, _
ByVal dwFlags As Long)
Private Const SOUND_FILENAME = &H20000

Sub AutoOpen()
Dim sndFileName As String
Dim i As Long
'Note: Change the next line to point to your sound file.
sndFileName = "C:\Documents and Settings\Administrator\My Documents\My
Stuff\Chicago Bears\SuperBowlShuffle.mp3"
PlaySound sndFileName, 0&, SOUND_FILENAME
End Sub





"Greg Maxey" wrote in message
oups.com...
On Feb 5, 9:58 am, "Ray Mooney" wrote:
I'm looking for a solution to this question if it's possible. If
that's not possible just say so, rather than some ****y comment.

I understand that you can 'embed' all sorts of sound file types
into a MS Word document. It would be very helpful if you can do
that with an MP3 file. If there is a way to do that, I would like
to know how.

Again, thanks in advance to anyone with some good information about
how to possibly do this!!

"JoAnn Paules [MVP]" wrote in

. ..



Oh heavens, I hope not.

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375

"Ray Mooney" wrote in message
...
Is it possible to create a Word Document that will have an MP3
sound file as
a background sound, that can be 'embedded' in the document so
that the document can be sent to multiple users?

Thanks in adavcne for any help!!- Hide quoted text -

- Show quoted text -


Not tested with MP3, but you might try something along the lines
shown he

http://gregmaxey.mvps.org/Sound_On_Document_Open.htm



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Cannot Insert background sound as object created HTMLInlineSoundCt DOSrelic Microsoft Word Help 13 February 1st 07 11:34 PM
Formatting a Background RajKohli Microsoft Word Help 6 November 24th 06 06:56 AM
Form Field Background Jet Microsoft Word Help 2 January 19th 06 03:36 PM
cell's background color not printed correctly [email protected] Tables 2 December 19th 05 12:44 PM
How do you add background sound to a web page? KC Microsoft Word Help 1 August 31st 05 02:15 AM


All times are GMT +1. The time now is 04:15 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"