<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>HD View SL</title><link>http://hdviewsl.codeplex.com/project/feeds/rss</link><description>HD View SL is a Silverlight application for viewing large, stitched panoramic images in a variety of formats -- especially those created by Microsoft Image Composite Editor.  HD View SL relies on Silverlight&amp;#39;s &amp;#34;Deep Zoom&amp;#34; features to enable smooth panning and zooming.</description><item><title>Closed Issue: Fix problems uncovered by Code Analysis [211]</title><link>http://hdviewsl.codeplex.com/workitem/211</link><description>The Code Analysis feature of VSTS reveals several issues that ought to be corrected, including assumptions about the parsing of numbers.&lt;br /&gt;</description><author>estollnitz</author><pubDate>Thu, 16 May 2013 04:04:11 GMT</pubDate><guid isPermaLink="false">Closed Issue: Fix problems uncovered by Code Analysis [211] 20130516040411A</guid></item><item><title>Source code checked in, #79962</title><link>http://hdviewsl.codeplex.com/SourceControl/changeset/changes/79962</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:14:48 GMT</pubDate><guid isPermaLink="false">Source code checked in, #79962 20121001091448P</guid></item><item><title>Source code checked in, #79961</title><link>http://hdviewsl.codeplex.com/SourceControl/changeset/changes/79961</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:08:39 GMT</pubDate><guid isPermaLink="false">Source code checked in, #79961 20121001090839P</guid></item><item><title>Reviewed: HD View SL release 1.2 (May 09, 2012)</title><link>http://hdviewsl.codeplex.com/releases/view/30168#ReviewBy-Lysergia</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - great awesome exciting newasdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff&amp;#10;ra</description><author>Lysergia</author><pubDate>Wed, 09 May 2012 14:56:52 GMT</pubDate><guid isPermaLink="false">Reviewed: HD View SL release 1.2 (May 09, 2012) 20120509025652P</guid></item><item><title>Created Issue: hd view in password protected website [10567]</title><link>http://hdviewsl.codeplex.com/workitem/10567</link><description>I have a panorama which works great when the files are in my local hard drive. When I upload it to a password-protected website, it still works fine in internet explorer, but it doesn&amp;#39;t ask for a password when viewed in chrome, so it keeps saying buffering... Can anyone replicate this problem, please&amp;#63;&lt;br /&gt;Thanks,&lt;br /&gt;-Felipe.&lt;br /&gt;</description><author>fgnievinski</author><pubDate>Tue, 27 Mar 2012 00:37:55 GMT</pubDate><guid isPermaLink="false">Created Issue: hd view in password protected website [10567] 20120327123755A</guid></item><item><title>New Post: Howto: Adding Full Screen Scroll Wheel Support</title><link>http://hdviewsl.codeplex.com/discussions/245739</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Marvelous! Thank you so much for posting this full and accurate process for enabling scroll wheel operation in full screen mode. It worked like a charm and probably saved me a day of research into behaviors, etc.&lt;/p&gt;&lt;/div&gt;</description><author>dwrogers</author><pubDate>Sat, 06 Aug 2011 16:17:29 GMT</pubDate><guid isPermaLink="false">New Post: Howto: Adding Full Screen Scroll Wheel Support 20110806041729P</guid></item><item><title>New Post: Howto: Adding Full Screen Scroll Wheel Support</title><link>http://hdviewsl.codeplex.com/discussions/245739</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;HD View SL is currently built as a Visual Studio 2008 project&amp;nbsp;targeted&amp;nbsp;against Silverlight 3, Silverlight 4 added native mouse scrolling support (including in full screen mode) which the current Silverlight 3 based player doesn't support. Here's how to get full  screen mouse wheel scrolling:&lt;/p&gt;
&lt;p&gt;1.) Download the latest source code for &lt;strong&gt;HD View SL&lt;/strong&gt; from this CodePlex website&lt;/p&gt;
&lt;p&gt;2.) Open up the solution in &lt;strong&gt;Visual Studio 2010&lt;/strong&gt;, say &lt;strong&gt;yes&lt;/strong&gt; when the conversion wizard asks you to upgrade the web project to &lt;strong&gt;.Net 4.0&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;3.) In the &lt;strong&gt;Visual Studio Solution Explorer&lt;/strong&gt; right click and choose "&lt;strong&gt;Properties&lt;/strong&gt;" on the &lt;strong&gt;HDViewSL &lt;/strong&gt;Silverlight project.&lt;/p&gt;
&lt;p&gt;4.) Set "&lt;strong&gt;Target Silverlight Version&lt;/strong&gt;" to "&lt;strong&gt;Silverlight 4&lt;/strong&gt;" then close the properties screen.&lt;/p&gt;
&lt;p&gt;5.) &lt;strong&gt;Delete&lt;/strong&gt; "&lt;strong&gt;MouseWheelHelper.cs&lt;/strong&gt;", it will no longer be needed.&lt;/p&gt;
&lt;p&gt;6.) In &lt;strong&gt;Page.xaml.cs&lt;/strong&gt;'s constructor &lt;strong&gt;delete&lt;/strong&gt; the following lines:&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: blue;"&gt;new&lt;/span&gt; MouseWheelHelper(&lt;span style="color: blue;"&gt;this&lt;/span&gt;.multiScaleImage).MouseWheel += &lt;span style="color: blue;"&gt;this&lt;/span&gt;.MultiScaleImage_MouseWheel;
&lt;span style="color: blue;"&gt;new&lt;/span&gt; MouseWheelHelper(&lt;span style="color: blue;"&gt;this&lt;/span&gt;.multiScaleImage2).MouseWheel += &lt;span style="color: blue;"&gt;this&lt;/span&gt;.MultiScaleImage_MouseWheel;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;7.) &lt;strong&gt;D&lt;/strong&gt;&lt;strong&gt;elete&lt;/strong&gt; the now unused "&lt;strong&gt;MultiScaleImage_MouseWheel&lt;/strong&gt;" event handler, the new handler will have the exact same code as the old handler but uses Silverlight 4's native mousewheel events.&lt;/p&gt;
&lt;p&gt;8.) &lt;strong&gt;Add&lt;/strong&gt; the following lines to &lt;strong&gt;Page.xaml.cs&lt;/strong&gt;'s constructor:&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;multiScaleImage.MouseWheel += multiScaleImage_MouseWheel;
multiScaleImage2.MouseWheel += multiScaleImage_MouseWheel;
multiScaleImage.Loaded += multiScaleImage_Loaded;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;9.)&amp;nbsp;&lt;strong&gt;Add&lt;/strong&gt;&amp;nbsp;the following event handlers:&lt;/p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre style="color: black;"&gt;&lt;span style="color: blue;"&gt;void&lt;/span&gt; multiScaleImage_Loaded(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, RoutedEventArgs e)
{
    &lt;span style="color: green;"&gt;// On load set focus to the web page hosting the xap so focus can be set&lt;/span&gt;
    &lt;span style="color: green;"&gt;// to the Silverlight Page.xaml for mouse wheel events&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;    &lt;span style="color: blue;"&gt;if&lt;/span&gt; (!(Application.Current.IsRunningOutOfBrowser))
    {
        HtmlPage.Plugin.Focus();
    }

    Focus();
}&lt;/pre&gt;
&lt;/div&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre style="color: black;"&gt;&lt;span style="color: blue;"&gt;void&lt;/span&gt; multiScaleImage_MouseWheel(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, System.Windows.Input.MouseWheelEventArgs e)
{
    &lt;span style="color: blue;"&gt;if&lt;/span&gt; (!e.Handled &amp;amp;&amp;amp; &lt;span style="color: blue;"&gt;this&lt;/span&gt;.isOpen)
    {
        &lt;span style="color: blue;"&gt;this&lt;/span&gt;.InvokeHandler(&lt;span style="color: blue;"&gt;this&lt;/span&gt;.ReceivedInput);
        &lt;span style="color: blue;"&gt;var&lt;/span&gt; zoomFactor = e.Delta &amp;gt; 0 ? ZoomChangeFactor : 1 / ZoomChangeFactor;
        &lt;span style="color: blue;"&gt;var&lt;/span&gt; p = &lt;span style="color: blue;"&gt;this&lt;/span&gt;.multiScaleImage.ElementToLogicalPoint(&lt;span style="color: blue;"&gt;this&lt;/span&gt;.mousePosition);
        p = &lt;span style="color: blue;"&gt;this&lt;/span&gt;.ClosestPoint(p);
        &lt;span style="color: blue;"&gt;this&lt;/span&gt;.ZoomBy(zoomFactor, p);
        e.Handled = &lt;span style="color: blue;"&gt;true&lt;/span&gt;;
    }
}&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;10.) Compile and you're done!&lt;/p&gt;&lt;/div&gt;</description><author>JoeGershgorin</author><pubDate>Sat, 12 Feb 2011 11:12:59 GMT</pubDate><guid isPermaLink="false">New Post: Howto: Adding Full Screen Scroll Wheel Support 20110212111259A</guid></item><item><title>Source code checked in, #52406</title><link>http://hdviewsl.codeplex.com/SourceControl/changeset/changes/52406</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Tue, 20 Jul 2010 20:45:25 GMT</pubDate><guid isPermaLink="false">Source code checked in, #52406 20100720084525P</guid></item><item><title>New Post: Problem in HD View SL</title><link>http://hdviewsl.codeplex.com/Thread/View.aspx?ThreadId=207115</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi, I had a problem on HDViewSL.&lt;/p&gt;
&lt;p&gt;After i had download the project, compile and run it. The result given doesn't show any panorama effect. May I know what i am going wrong?&lt;/p&gt;
&lt;p&gt;Thanks....&lt;/p&gt;&lt;/div&gt;</description><author>tiramisung</author><pubDate>Wed, 24 Mar 2010 09:14:27 GMT</pubDate><guid isPermaLink="false">New Post: Problem in HD View SL 20100324091427A</guid></item><item><title>New Post: Using HDViewSL with URL parameters</title><link>http://hdviewsl.codeplex.com/Thread/View.aspx?ThreadId=63236</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Problem solved!&lt;/p&gt;
&lt;p&gt;I was working with the basic html template and I did not see where this template is sending my arguments to the Viewer.&lt;/p&gt;
&lt;p&gt;Thanks Eric for pointing this out to me!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Cool Technology!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;&lt;/div&gt;</description><author>tribalsketch</author><pubDate>Wed, 22 Jul 2009 22:16:21 GMT</pubDate><guid isPermaLink="false">New Post: Using HDViewSL with URL parameters 20090722101621P</guid></item><item><title>New Post: Using HDViewSL with URL parameters</title><link>http://hdviewsl.codeplex.com/Thread/View.aspx?ThreadId=63236</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am trying to use this tool and pass some parameters to my supporting javascript via URL.&lt;/p&gt;
&lt;p&gt;As an example here is a Deep Zoom image&lt;/p&gt;
&lt;p&gt;http://www.trappdf.com/public/666-LucidTrapTest.html&lt;/p&gt;
&lt;p&gt;As part of this project I need to pass some variables to some javascript running on this page so I need the URL to be:&lt;/p&gt;
&lt;p&gt;http://www.trappdf.com/public/666-LucidTrapTest.html?run=111&amp;amp;jobId=222&lt;/p&gt;
&lt;p&gt;However when I use this kind of URL the HDViewSL stops working. Any ideas would be greatly appreciated!&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;&lt;/div&gt;</description><author>tribalsketch</author><pubDate>Wed, 22 Jul 2009 20:33:55 GMT</pubDate><guid isPermaLink="false">New Post: Using HDViewSL with URL parameters 20090722083355P</guid></item><item><title>Updated Release: HD View SL release 1.2 (Jul 14, 2009)</title><link>http://hdviewsl.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30168</link><description>&lt;div class="wikidoc"&gt;Many significant changes since the previous release:&lt;br /&gt;- Added HDViewSettings class to interface with javascript using the same API that HD View uses.&lt;br /&gt;- Changed the look and placement of the toolbar buttons to match HD View, including a new full-screen button.&lt;br /&gt;- Added Parser class to handle XML parsing, which now includes support for KML and Zoomify XML files.&lt;br /&gt;- Changed the viewer to provide 360-degree wraparound using only two MultiScaleImage elements, instead of three.&lt;br /&gt;- Added support to the viewer for tile sets that are grouped in directories (Zoomify) or padded to be square (KML).&lt;br /&gt;- Fixed a few cross-platform and cross-browser issues with mouse wheel zooming.&lt;br /&gt;- Moved code analysis supressions into GlobalSupressions file.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>estollnitz</author><pubDate>Wed, 15 Jul 2009 00:29:24 GMT</pubDate><guid isPermaLink="false">Updated Release: HD View SL release 1.2 (Jul 14, 2009) 20090715122924A</guid></item><item><title>Released: HD View SL release 1.2 (Jul 14, 2009)</title><link>http://hdviewsl.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30168</link><description>&lt;div&gt;Many significant changes since the previous release:&lt;br&gt;- Added HDViewSettings class to interface with javascript using the same API that HD View uses.&lt;br&gt;- Changed the look and placement of the toolbar buttons to match HD View, including a new full-screen button.&lt;br&gt;- Added Parser class to handle XML parsing, which now includes support for KML and Zoomify XML files.&lt;br&gt;- Changed the viewer to provide 360-degree wraparound using only two MultiScaleImage elements, instead of three.&lt;br&gt;- Added support to the viewer for tile sets that are grouped in directories (Zoomify) or padded to be square (KML).&lt;br&gt;- Fixed a few cross-platform and cross-browser issues with mouse wheel zooming.&lt;br&gt;- Moved code analysis supressions into GlobalSupressions file.&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</description><author></author><pubDate>Wed, 15 Jul 2009 00:29:24 GMT</pubDate><guid isPermaLink="false">Released: HD View SL release 1.2 (Jul 14, 2009) 20090715122924A</guid></item><item><title>Updated Wiki: Home</title><link>http://hdviewsl.codeplex.com/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;&lt;h3&gt;About HD View SL&lt;/h3&gt;
HD View SL is a Silverlight application for viewing large, stitched panoramic images in a variety of formats -- especially those created by Microsoft Image Composite Editor.  HD View SL relies on Silverlight&amp;#39;s &amp;#34;Deep Zoom&amp;#34; features to enable smooth panning and zooming.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;New:&lt;/b&gt; HD View SL is now capable of viewing KML PhotoOverlays and Zoomify images, in addition to Deep Zoom and HD View XML files.  To preview files in these formats and embed HD View SL in your blog or web page, see our &lt;a href="http://research.microsoft.com/en-us/um/redmond/groups/ivm/HDView/Preview/" class="externalLink"&gt;HD View Preview page&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://research.microsoft.com/en-us/um/redmond/groups/ivm/HDViewSL/" class="externalLink"&gt;Try HD View SL&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=HDViewSL&amp;DownloadId=46132" alt="Screenshot-480.jpg" title="Screenshot-480.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;We have several goals in sharing the source of HD View SL with the community:
&lt;ul&gt;&lt;li&gt;Improve the panorama viewer.&lt;/li&gt;
&lt;li&gt;Encourage customization of the panorama viewer.&lt;/li&gt;
&lt;li&gt;Help developers learn about and understand Silverlight.&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Creating Panoramic Images&lt;/h3&gt;
You can use a wide variety of programs to stitch a panoramic image together from several overlapping photos.  HD View SL is designed to be used with panoramic images created by &lt;b&gt;&lt;a href="http://research.microsoft.com/en-us/um/redmond/groups/ivm/ICE/" class="externalLink"&gt;Microsoft Image Composite Editor&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; (also known as ICE).  Once you provide ICE with a set of overlapping photos, the program will automatically align them and blend them into a seamless panorama.  You can adjust the projection surface and orientation, then export to a variety of formats.  When you tell ICE to export an image in the Deep Zoom tileset format, it will produce the image tiles as well as a web page for viewing the panorama; the Silverlight application used within that web page is HD View SL.&lt;br /&gt;&lt;br /&gt;You can also use our &lt;b&gt;&lt;a href="http://research.microsoft.com/en-us/um/redmond/groups/ivm/HDView/HDPhotoshopPlugin.htm" class="externalLink"&gt;HD View Photoshop Plugin&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; to create image tiles for use with HD View SL.  Once you've installed the plugin, you can export from Photoshop to HD View SL by selecting &amp;quot;HD View &amp;amp; Deep Zoom...&amp;quot; from the File:Export menu and choosing &amp;quot;Silverlight Deep Zoom&amp;quot; as the output type.&lt;br /&gt;
&lt;h3&gt;Viewing Panoramic Images&lt;/h3&gt;
There are several ways to view a panoramic image.  QuickTime VR, for example, displays images by projecting them onto the interior of a 3D cylinder or cube.  By contrast, &lt;b&gt;&lt;a href="http://research.microsoft.com/en-us/um/redmond/groups/ivm/HDView/" class="externalLink"&gt;HD View&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; projects images onto a surface that morphs from a cylinder or sphere into a flat plane, depending how far you zoom out.  This technique provides perspective-correct rendering (so straight lines don't appear warped) when you zoom in, but still permits you to see the whole image when you zoom out.&lt;br /&gt;&lt;br /&gt;HD View SL is a Silverlight-based alternative to the original HD View browser plug-in.  Here's a summary of the differences between the two viewers:&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt; &lt;/th&gt;&lt;th&gt; HD View &lt;/th&gt;&lt;th&gt; HD View SL &lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; rendering technology &lt;/td&gt;&lt;td&gt; DirectX &lt;/td&gt;&lt;td&gt; Silverlight &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; operating system &lt;/td&gt;&lt;td&gt; Microsoft Windows &lt;/td&gt;&lt;td&gt; Microsoft Windows or Mac OS &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; browser &lt;/td&gt;&lt;td&gt; IE or Firefox &lt;/td&gt;&lt;td&gt; IE, Firefox, or Safari &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; supported formats &lt;/td&gt;&lt;td&gt; HD View XML, KML, Zoomify XML, Deep Zoom XML, single JPEG &lt;/td&gt;&lt;td&gt; HD View XML, KML, Zoomify XML, Deep Zoom XML &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; projection &lt;/td&gt;&lt;td&gt; cylindrical, spherical, or fisheye (3D) &lt;/td&gt;&lt;td&gt; orthographic (2D), with wrapping for 360-degree panoramas &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; color correction &lt;/td&gt;&lt;td&gt; yes &lt;/td&gt;&lt;td&gt; no &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; tone mapping &lt;/td&gt;&lt;td&gt; yes &lt;/td&gt;&lt;td&gt; no &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; hardware acceleration &lt;/td&gt;&lt;td&gt; yes &lt;/td&gt;&lt;td&gt; no &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; open source &lt;/td&gt;&lt;td&gt; no &lt;/td&gt;&lt;td&gt; yes &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;While HD View provides better rendering and faster performance, HD View SL is available to a broader set of users and can be customized.&lt;br /&gt;
&lt;h3&gt;Building HD View SL&lt;/h3&gt;
The current version of HD View SL works with the released version of Silverlight 2.  To build the project, you'll need to have the usual tools for Silverlight 2 development, available from the Silverlight &lt;a href="http://silverlight.net/GetStarted/" class="externalLink"&gt;Get Started&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; web page:
&lt;ul&gt;&lt;li&gt;Visual Studio 2008 SP1 or Visual Web Developer Express with SP1&lt;/li&gt;
&lt;li&gt;Silverlight Tools for Visual Studio 2008 SP1&lt;/li&gt;
&lt;li&gt;optionally, Expression Blend 2 SP1&lt;/li&gt;&lt;/ul&gt;
Note that after you download the source code for HD View SL and open the solution file in Visual Studio, you will need to indicate which project and web page to use when running or debugging the application.  This is accomplished in two steps:
&lt;ol&gt;&lt;li&gt;Right-click on the HDViewSLWeb project and select &amp;quot;Set as StartUp Project&amp;quot;.&lt;/li&gt;
&lt;li&gt;Within the HDViewSLWeb project, Right-click on Examples.html and select &amp;quot;Set As Start Page&amp;quot;.&lt;/li&gt;&lt;/ol&gt;
Pressing F5 (Start Debugging) should now launch a local web server, start your default web browser, and display the examples web page.&lt;br /&gt;
&lt;h3&gt;Testing HD View SL&lt;/h3&gt;
HD View SL has been tested using the officially released version of Silverlight 2 and the following configurations:
&lt;ul&gt;&lt;li&gt;Windows Vista SP1 and Internet Explorer 8.0.6001.18783&lt;/li&gt;
&lt;li&gt;Windows Vista SP1 and Firefox 3.5&lt;/li&gt;
&lt;li&gt;Windows Vista SP1 and Chrome 2.0.172.33&lt;/li&gt;
&lt;li&gt;Windows Vista SP1 and Opera 9.64&lt;/li&gt;
&lt;li&gt;Windows Vista SP1 and Safari 4.0 (530.17)&lt;/li&gt;
&lt;li&gt;Mac OS X (10.5.7) and Safari 4.0.1 (5530.18)&lt;/li&gt;
&lt;li&gt;Mac OS X (10.5.7) and Firefox 3.5&lt;/li&gt;
&lt;li&gt;Mac OS X (10.5.7) and Opera 9.64&lt;/li&gt;
&lt;li&gt;Mac OS X (10.5.7) and Camino 1.6.8&lt;/li&gt;&lt;/ul&gt;
HD View SL is capable of opening images in five different ways:&lt;br /&gt;&lt;br /&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt; HTML &lt;/th&gt;&lt;th&gt; XML &lt;/th&gt;&lt;th&gt; image tiles &lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; from a web server &lt;/td&gt;&lt;td&gt; HD View XML embedded in the HTML &lt;/td&gt;&lt;td&gt; from a web server &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; from a web server &lt;/td&gt;&lt;td&gt; HD View XML from a web server &lt;/td&gt;&lt;td&gt; from a web server &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; from a web server &lt;/td&gt;&lt;td&gt; Deep Zoom XML from a web server &lt;/td&gt;&lt;td&gt; from a web server &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; from a local file &lt;/td&gt;&lt;td&gt; HD View XML embedded in the HTML &lt;/td&gt;&lt;td&gt; from local files &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; from a local file &lt;/td&gt;&lt;td&gt; Deep Zoom XML from a local file (same folder) &lt;/td&gt;&lt;td&gt; from local files &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;The first three techniques are tested by Examples.html in the Development\HDViewSLWeb project, which must be launched from a web server (typically, by debugging from Visual Studio).  These examples fetch high-resolution image tiles that are stored on the research.microsoft.com web server.  The last two techniques are tested by Examples.html in the LocalTest folder, which must be launched directly from the local disk after copying the latest HDViewSL.xap to that folder.  The image tiles for these tests are included in the LocalTest folder, but only low-resolution tiles are provided in order to reduce the storage requirements.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>estollnitz</author><pubDate>Wed, 15 Jul 2009 00:27:46 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090715122746A</guid></item><item><title>Source code checked in, #26013</title><link>http://hdviewsl.codeplex.com/SourceControl/ListDownloadableCommits.aspx</link><description>Many significant changes since the last release&amp;#58;&amp;#13;&amp;#10;- Added HDViewSettings class to interface with javascript using the same API that HD View uses.&amp;#13;&amp;#10;- Changed the look and placement of the toolbar buttons to match HD View, including a new full-screen button.&amp;#13;&amp;#10;- Added Parser class to handle XML parsing, which now includes support for KML and Zoomify XML files.&amp;#13;&amp;#10;- Changed the viewer to provide 360-degree wraparound using only two MultiScaleImage elements, instead of three.&amp;#13;&amp;#10;- Added support to the viewer for tile sets that are grouped in directories &amp;#40;Zoomify&amp;#41; or padded to be square &amp;#40;KML&amp;#41;.&amp;#13;&amp;#10;- Fixed a few cross-platform and cross-browser issues with mouse wheel zooming.&amp;#13;&amp;#10;- Moved code analysis supressions into GlobalSupressions file.</description><author>estollnitz</author><pubDate>Tue, 14 Jul 2009 23:41:09 GMT</pubDate><guid isPermaLink="false">Source code checked in, #26013 20090714114109P</guid></item><item><title>New Post: Customizing HD View SL</title><link>http://hdviewsl.codeplex.com/Thread/View.aspx?ThreadId=41905</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hey, awsome stuff.&lt;/p&gt;
&lt;p&gt;One question though. How well designed is this code to allow for an implementation of an anchored area feature (an area of the shown pic that could be cliked to open a new URL...and/or change the pic), please?&lt;/p&gt;
&lt;p&gt;TIA,&lt;/p&gt;
&lt;p&gt;a SL n00b...but would like to get into it by looking at your project and maybe adding that feature.&lt;/p&gt;&lt;/div&gt;</description><author>n00b</author><pubDate>Wed, 13 May 2009 14:30:06 GMT</pubDate><guid isPermaLink="false">New Post: Customizing HD View SL 20090513023006P</guid></item><item><title>New Post: Customizing HD View SL</title><link>http://www.codeplex.com/HDViewSL/Thread/View.aspx?ThreadId=41905</link><description>&lt;div style="line-height: normal;"&gt;Hey, awesome code. I don't think many people really get what you have done here.&lt;br&gt;
I'm going to look at extracting a basic example of what you have a done to make a really simple HScrollMSI, just the Horitontal panning, try to mimic a normal MSI as much as possible.&lt;br&gt;
For me it going to be useful to evaluate for the DeepEarth project but if it works I'll post back info here.&lt;br&gt;
John.
&lt;/div&gt;</description><author>soulsolutions</author><pubDate>Wed, 21 Jan 2009 05:31:57 GMT</pubDate><guid isPermaLink="false">New Post: Customizing HD View SL 20090121053157A</guid></item><item><title>New Post: Customizing HD View SL</title><link>http://www.codeplex.com/HDViewSL/Thread/View.aspx?ThreadId=41905</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;If you have any questions or comments on customizing HD View SL, please post them here!  We would also love to see your customized examples, so don't hesitate to include a link to your site.&lt;br&gt;
&lt;br&gt;
To get started, follow these steps:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Click on the &amp;quot;Source Code&amp;quot; tab above.&lt;/li&gt;
    &lt;li&gt;Click on the first &amp;quot;Download&amp;quot; link.&lt;/li&gt;
    &lt;li&gt;Accept the terms.&lt;/li&gt;
    &lt;li&gt;Save the ZIP file on disk.&lt;/li&gt;
    &lt;li&gt;Extract all files from the ZIP file.&lt;/li&gt;
    &lt;li&gt;Open the solution in Expression Blend 2 SP1 or Visual Studio 2008 SP1.&lt;/li&gt;
    &lt;li&gt;Make any desired changes to the user interface or the code.&lt;/li&gt;
    &lt;li&gt;Test things out.  Make sure HDViewSLWeb is set as the startup project and Examples.html is set as the startup page when debugging.&lt;/li&gt;
    &lt;li&gt;Copy HDViewSL.xap from the HDViewSLWeb directory to the directory containing your web page.&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;</description><author>estollnitz</author><pubDate>Tue, 09 Dec 2008 19:37:28 GMT</pubDate><guid isPermaLink="false">New Post: Customizing HD View SL 20081209073728P</guid></item><item><title>Commented Issue: Fix problems uncovered by Code Analysis</title><link>http://www.codeplex.com/HDViewSL/WorkItem/View.aspx?WorkItemId=211</link><description>The Code Analysis feature of VSTS reveals several issues that ought to be corrected, including assumptions about the parsing of numbers.&lt;br /&gt;Comments: Fixed in change 7182.</description><author>estollnitz</author><pubDate>Sun, 02 Nov 2008 19:50:41 GMT</pubDate><guid isPermaLink="false">Commented Issue: Fix problems uncovered by Code Analysis 20081102075041P</guid></item><item><title>Source code checked in, #7182</title><link>http://www.codeplex.com/HDViewSL/SourceControl/ListDownloadableCommits.aspx</link><description>Fixed issue 211&amp;#58; Problems uncovered by Code Analysis, including assumptions about the parsing of numbers that prevented correct loading when regional settings were set to use certain languages.</description><author>estollnitz</author><pubDate>Sun, 02 Nov 2008 19:40:46 GMT</pubDate><guid isPermaLink="false">Source code checked in, #7182 20081102074046P</guid></item></channel></rss>