vote up 1 vote down star

I have written an HTML Application (hta file) and am wondering if there is a way to embed an icon file into the hta file itself.

I have seen html emails that include embedded graphic files, is there any way to do this with html applications and icons?

HTA files have an HTA:APPLICATION tag that allows you to specify an icon, but I want to have only a single file for download. I don't want to have an external icon file. Is this possible?

More info on hta files here: HTA files.

flag

7 Answers

vote up 1 vote down check

Consider using one of the applications in System32 for your icon.

This won't change the icon for an HTA file that's on the desktop, but once it's running it will add some personality to the task bar and such.

I often use the following to add a bit of charm to my HTAs.

<hta:application icon="magnify.exe" />

I don't believe it's possible to use icons from a library, but just open System32 in Explorer and change it to icon view and see if there are any icons that catch your fancy at all.

link|flag
This seems to be the simplest solution. Thanks. Works like a charm. – BoltBait Jul 16 at 17:56
vote up 1 vote down

I remember seeing this a looong time ago:

<img src="data:image/gif;base64,R0lGODlhEAAOALMAAOazToeHh0tLS/7LZv/0jvb29t/f3//Ub//ge8WSLf/rhf/3kdbW1mxsbP//mf///yH5BAAAAAAALAAAAAAQAA4AAARe8L1Ekyky67QZ1hLnjM5UUde0ECwLJoExKcppV0aCcGCmTIHEIUEqjgaORCMxIC6e0CcguWw6aFjsVMkkIr7g77ZKPJjPZqIyd7sJAgVGoEGv2xsBxqNgYPj/gAwXEQA7"width="16" height="14" alt="embedded folder icon">

I've never tried it myself though.

link|flag
That is a dataURL, and it would be a good solution except IE doesn't support them until version 8. – Joel Anair Oct 9 '08 at 0:00
vote up 0 vote down

Quite possibly ... there is a way to embed images directly into an html file that may work for this http://www.sveinbjorn.org/news/2005-11-28-02-39-23

link|flag
vote up 0 vote down

IE doesn't support data URIs, so you're going to have to use an external file if you use the img tag.

The only thing I can think of is to use VML, which has been around since IE5. It's an SVG-like vector image format that can be used inline. For example, draw something using this VML editor and click "Get code". You can plop that in your HTA. I'm not aware of anything that will convert your image to VML directly, but I believe there is a way to export to VML from some Office products.

link|flag
A good point for graphics in the HTA, but not for the icon specified in the <hta:application> tag. – Joel Anair Oct 9 '08 at 0:01
Ah, you're right. Whoops. – seisyll Oct 9 '08 at 2:57
vote up 0 vote down

It's a pretty far-fetched answer, but you could embed the icon as base64-encoded XML in the HTA, then use JavaScript onload and save the icon file to a temporary location. The ActiveX Object MSXML.DomDocument can encode and decode base64 nodes.

link|flag
This sounds very promising. Could you show me some sample code? My HTA file can be downloaded from boltbait.com/htmleditor Thanks! – BoltBait Oct 13 '08 at 16:28
vote up 0 vote down

I've tried this myself, and never got it to work correctly... I tried with a smaller image, and still no luck... I will have a look at this again, and see if I can figure out what is going on, and will post my results...

link|flag
vote up 0 vote down

As soon as you need an <iframe> or other HTML dialog you're going to want additional files anyway. You'll generaly find that .CSS and .VBS files separate from the .HTA make programming and support a lot easier for any non-trivial HTA too.

One alternative for doing this as "a single EXE" is to wrap everything up as a self-extracting archive or via IExpress. When the user "runs your program" it extracts everything from your archive into a temp directory and runs the item of your choice.

There are 3rd party alternatives like HTMLApp too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.