windows - bad image error on Vista

A

Andrew Poulos

I use an OBJECT tag to play an MP3 file in IE. When I test on the
client's Vista machine IE throws up this error:


Windows - Bad Image
Exception Processing Message 0xc000007b Parameters 0x7631023C
0x7631023C 0x7631023C 0x7631023C


This is the HTML:


<object
id="audiomedia0"
type="audio/mpeg"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"

codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715">
<param name="FileName" value="media/samp.mp3">
<param name="AutoStart" value="1">
<param name="Loop" value="0">
<embed
name="audiomedia0"
type="audio/mpeg"
src="media/samp.mp3"
autostart="true"
loop="false">
</object>


Is there a way to fix this, prevent this, or to at least suppress the error?

Andrew Poulos
 
T

Toby A Inkster

Andrew said:
<object
id="audiomedia0"
type="audio/mpeg"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"

codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/ nsmp2inf.cab#Version=6,4,5,715">
<param name="FileName" value="media/samp.mp3"> <param
name="AutoStart" value="1">
<param name="Loop" value="0">
<embed
name="audiomedia0"
type="audio/mpeg"
src="media/samp.mp3"
autostart="true"
loop="false">
</object>

Leave out all the Windows-specific and Netscape-specific crud. You're left
with:

<object type="audio/mpeg" data="media/samp.mp3">
<param name=filename value="media/samp.mp3">
<param name=autostart value=1>
<param name=loop value=0>
</object>

How does that do you?

--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 5 days, 19:28.]

Sharing Music with Apple iTunes
http://tobyinkster.co.uk/blog/2007/11/28/itunes-sharing/
 
A

Andrew Poulos

Toby said:
Leave out all the Windows-specific and Netscape-specific crud. You're left
with:

<object type="audio/mpeg" data="media/samp.mp3">
<param name=filename value="media/samp.mp3">
<param name=autostart value=1>
<param name=loop value=0>
</object>

How does that do you?

Still the same error with Vista.

Andrew Poulos
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top