spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column39


IE 5.0 Review, Part V: HTML Applications (HTAs) (3)

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

Creating HTAs

An HTA file looks exactly like an HTML file. The only thing that distinguishes it as an HTA file is its file extension: hta instead of html or htm. Here is the simplest HTA application:

Doc JavaScript's One-liner HTA

This is not a mistake. Both Internet Explorer and Netscape Navigator do not require the <HTML>, <BODY>, and <HEAD> tags. Click here to invoke this hta. Like any other Windows applications, the browser asks you whether to save it to disk or to open it. Select to open it. Examine the application window for a moment. Its title is the hta file name and its content area is what's included in the <BODY> tag. In this example, the one-liner above, Doc JavaScript's One-liner HTA, becomes the content of the <BODY> tag, by default.

Notice that the only way to close the application above is to click the x button at the window's top right corner. Normally, you would want to provide a more elegant exit from your application. Let's enhance the example above and add an exit button. Let's also be more formal and add the missing <HTML>, <BODY>, and <HEAD> tags:

<HTML>
<HEAD>
<TITLE>Doc JavaScript's HTA (docjavascript.com)</TITLE>
</HEAD>
<BODY>
This is Doc JavaScript's HTA<BR>
<BUTTON onclick="self.close()">Go Away</BUTTON>
</BODY>
</HTML>

Now launch the ATA and open this application when asked by the browser. Examine the application window. Notice that its title is no longer the hta file name, but rather the <TITLE> of the page. Also notice the usage of JavaScript to handle the onclick event of the Go Away <BUTTON>. In this application, as opposed to the previous one, your user has a way to exit the window in a more elegant fashion.

http://www.internet.com

Produced by Yehuda Shiran and Tomer Shiran

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint


Created: May 12, 1999
Revised: May 12, 1999

URL: http://www.webreference.com/js/column39/create.html