<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Emposha &#187; ie6</title>
	<atom:link href="http://www.emposha.com/tag/ie6/feed" rel="self" type="application/rss+xml" />
	<link>http://www.emposha.com</link>
	<description>Just another stupid wordpress blog ;)</description>
	<lastBuildDate>Thu, 08 Dec 2011 13:30:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Help kill Internet Explorer 6</title>
		<link>http://www.emposha.com/javascript/help-kill-internet-explorer-6.html</link>
		<comments>http://www.emposha.com/javascript/help-kill-internet-explorer-6.html#comments</comments>
		<pubDate>Thu, 14 May 2009 15:24:28 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ie sux]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[kill ie6]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=255</guid>
		<description><![CDATA[E6 is like an illness that just won’t go away, but we have the medicine. IE6 Update looks like IE’s Information Bar, but instead of offering your visitors an ActiveX plugin, it offers a browser update.]]></description>
			<content:encoded><![CDATA[<p>E6 is like an illness that just won’t go away, but we have the medicine.</p>
<p><strong><a href="http://ie6update.com/" target="_blank">IE6 Update</a> looks like IE’s Information Bar</strong>, but instead of offering your visitors an ActiveX plugin, it offers a <strong>browser update</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/javascript/help-kill-internet-explorer-6.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MIDI object cause to IE6 crash</title>
		<link>http://www.emposha.com/uncategorized/midi-object-cause-to-ie6-crash.html</link>
		<comments>http://www.emposha.com/uncategorized/midi-object-cause-to-ie6-crash.html#comments</comments>
		<pubDate>Tue, 14 Apr 2009 08:38:42 +0000</pubDate>
		<dc:creator>emposha</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie6 crash]]></category>
		<category><![CDATA[ie6 error]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[midi]]></category>

		<guid isPermaLink="false">http://www.emposha.com/?p=241</guid>
		<description><![CDATA[In one of project I use MIDI object to play midi files.  Everything work perfect in IE7, until I test it on IE6. After couple of seconds that I stop midi IE6 crash with some strange error.]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>In one of project I use MIDI object to play midi files.  Everything work perfect in IE7, until I test it on IE6. After couple of seconds that I stop midi IE6 crash with some strange error.</p>
<p style="text-align: center; "><a href="http://www.emposha.com/wp-content/uploads/2009/04/ole1.jpg"><img class="aligncenter size-medium wp-image-244" title="ole1" src="http://www.emposha.com/wp-content/uploads/2009/04/ole1-300x77.jpg" alt="ole1" width="300" height="77" /></a></p>
<p>So after my research I found that when you try to delete  MIDI object after that you stop him by default midi control IE6 crash. By the way sometimes it takes a while untils this error will apear and it`s probably depend on ie6 version.</p>
<p>Tested with: audio/x-midi, audio/midi withoud classid with same result</p>
<p>IE6 version:  6.0.2900.2180.xpsp_sp2_gdr.070227-2254 </p>
<p>Code:</p>
<blockquote><p><code><span style="color: black;"><span style="color: #0000ff;">&lt;!</span><span style="color: #800000;">DOCTYPE</span> <span style="color: #ff0000;">html</span> <span style="color: #ff0000;">PUBLIC</span> <span style="color: #0000ff;">"-//W3C//DTD HTML 4.01//EN"</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;</span><span style="color: #800000;">html</span><span style="color: #0000ff;">&gt;</span><br />
 <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">head</span><span style="color: #0000ff;">&gt;</span><br />
  <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">title</span><span style="color: #0000ff;">&gt;</span>Midi/Object Test Page<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">title</span><span style="color: #0000ff;">&gt;</span><br />
  <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">script</span><span style="color: #0000ff;">&gt;</span><br />
  <span style="color: #0000ff;">function</span> stopMusic()<br />
  {<br />
    <span style="color: #0000ff;">var</span> music = <span style="color: #0000ff;">document</span>.getElementById(<span style="color: #a31515;">'testme'</span>);<br />
    music.stop();<br />
    <span style="color: #0000ff;">document</span>.getElementById(<span style="color: #a31515;">'testme2'</span>).innerHTML = <span style="color: #a31515;">"123"</span>;<br />
  }<br />
  <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">script</span><span style="color: #0000ff;">&gt;</span><br />
 <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">head</span><span style="color: #0000ff;">&gt;</span><br />
 <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">body</span><span style="color: #0000ff;">&gt;</span><br />
    <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">div</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="testme2"</span><span style="color: #0000ff;">&gt;</span><br />
    <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">object</span> <span style="color: #ff0000;">classid</span><span style="color: #0000ff;">="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"</span> <span style="color: #ff0000;">id</span><span style="color: #0000ff;">="testme"</span><span style="color: #0000ff;">&gt;</span><br />
        <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">param</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">="autostart"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="true"</span><span style="color: #0000ff;">&gt;</span><br />
        <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">param</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">="FileName"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="1730199.mid"</span><span style="color: #0000ff;">&gt;</span><br />
    <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">object</span><span style="color: #0000ff;">&gt;</span><br />
    <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span><br />
  <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">input</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">="button"</span> <span style="color: #ff0000;">onclick</span><span style="color: #0000ff;">="stopMusic()"</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">="test me"</span> <span style="color: #0000ff;">/&gt;</span><br />
 <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">body</span><span style="color: #0000ff;">&gt;</span><br />
<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">html</span><span style="color: #0000ff;">&gt;</span></span><br />
</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.emposha.com/uncategorized/midi-object-cause-to-ie6-crash.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

