The silverlight app wont load in any browser. The outline is there when highlight the area.
Here’s the code
<div id="silverlightControlHost" class="content" style="border-style: none">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2"
width="400" height="200">
<param name="source"value="http://www.shortwavelog.com/ClientBin/RCSRemote.xap" />
<param name="onerror" value="onSilverlightError" />
<param name="background" value="white" />
<param name="minRuntimeVersion" value="4.0.60129.0" />
<param name="autoUpgrade" value="true" />
<param name="initParams" value="Mode=Mini" />
<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.60129.0" style="text-decoration: none;">
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"
style="border-style: none" />
</a>
</object>
<iframe id="Iframe1" style='visibility: hidden; height: 0; width: 0; border: 0px'>
</iframe>
</div>
This isnt my app its from a website and its created by someone else.
I believe you’re going to need to host this page on a website. See the relevant information here and here.
Since the app loads fine when I host it on a site I would assume you’re hitting some kind of cross-domain error going from file:// to http://
I was also able to just download the xap file referenced in the object tag and then put that file in the same directory as the html page and it worked.
So you can try that as well.