Showing posts with label Internet Explorer. Show all posts
Showing posts with label Internet Explorer. Show all posts

Wednesday, October 22, 2008

Creating an IE 8 Web Slice to display your Google Mail Gmail Inbox

This is another very simple example of how to add an authenticated Web Slice that displays the contents of your Gmail inbox in the IE 8 web slice.

Creating a simple Internet Explorer 8 web slice to display RSS Feed

Creating a simple Internet Explorer 8 web slice is pretty easy to do. This example shows how to add a button to your page that will add a web slice to display any valid RSS feed. Again this web slice will display an RSS feed. In this case the web slice displays the RSS feed from this blog.

<input type="button" value="Add Web Slice" class="addButton"

onclick='window.external.AddToFavoritesBar(

"http://feeds.feedburner.com/Officepoint?format=xml",

"OfficePoint RSS Feed", "slice");' />



IE 8 Accelerator Sample Example

This is an example of an IE 8 Accelerator. It doesn't tell you how to create one but it is itself a definition for an accelerator. This is a very simple one that adds an Accelerator that will just redirect the user to OfficePoint when clicked.

<?xml version="1.0" encoding="UTF-8" ?>

    <os:openServiceDescription xmlns:os="http://www.microsoft.com/schemas/openservicedescription/1.0">

        <os:homepageUrl>http://officepoint.blogspot.com</os:homepageUrl>

            <os:display>

                <os:name>Visit OfficePoint</os:name>

                <os:icon>http://blogitems.googlepages.com/office.ico</os:icon>

                <os:description>Visit my site</os:description>

            </os:display>

            <os:activity category="Visit">

                <os:activityAction context="document">

                    <os:execute action="http://officepoint.blogspot.com" method="get" />

                </os:activityAction>

            </os:activity>

    </os:openServiceDescription>


 

In order to add an Accelerator you'll need add a button that adds the service.


 

<html>

<head>

<title>Untitled Page</title>

</head>

<body>

<form id="form1">

<div>

<button id="myButton1" onclick="window.external.AddService('http://localhost/OfficePointAccelerator.xml')">

Add OfficePoint Accelerator

</button>

</div>

</form>

</body>

</html>



Thursday, August 28, 2008

IE 8 Download

The Internet Explorer 8 beta 2 is now available download IE 8 from http://www.microsoft.com/windows/internet-explorer/beta/default.aspx

Friday, August 1, 2008

IE 8 Beta Program

Speaking of beta programs, I have been invited to participate in the Windows Internet Explorer 8 beta tester program.

I look forward to getting prereleases of the software and providing direct feedback to MS about any bugs I find.

If you would like to apply see this post View article...