Click to return to the DHTML, HTML     
AddChannel Method     AddFavorite Method     DHTML Methods    
Web Workshop  |  DHTML, HTML & CSS

AddDesktopComponent Method


Adds a Web site or image to the Microsoft® Active Desktop™.

Syntax

window.external.AddDesktopComponent(sURL, sType [, iLeft, iTop, iWidth, iHeight])

Parameters

sURLRequired. String that specifies the location of the Web site or image to be added to the Active Desktop.
sTypeRequired. String that specifies the type of item to add. The value image specifies the component is an image. The value website specifies the component is a Web site.
iLeftOptional. Integer that specifies the position of the left edge, in screen coordinates.
iTopOptional. Integer that specifies the position of the top edge, in screen coordinates.
iWidthOptional. Integer that specifies the width, in screen units.
iHeightOptional. Integer that specifies the height, in screen units.

Return Value

No return value.

Remarks

The user must have Active Desktop installed for the AddDesktopComponent method to work. If Active Desktop is not installed, the method is not invoked.

This method is not supported in HTML Applications.

Example

This example uses the AddDesktopComponent method to add the Microsoft Web site as an Active Desktop component.

window.external.AddDesktopComponent(
   "http://www.microsoft.com",
   "website",
   100,100,200,200
);

Applies To

[ Object Name ]
PlatformVersion
Win16:
Win32:
Mac:
Unix:
WinCE:
external


Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.