I'm new to IE extension development and I'm trying to get a basic "hello world" extension together. I've hit a problem and would greatly appreciate your help.
I've followed the "Adding Toolbar Buttons" tutorial at http://msdn2.microsoft.com/en-us/library/aa753588.aspx
The button is showing up, but when I click it nothing happens. I'm not sure what the script language is meant to be - I assumed Javascript. I've created a file called test.htm and referenced it from the Script string in my extensions registry entry.
<html>
<head><title>Hello world</title></head>
<body>
<script type="text/javascript">
alert("Hello world");
</script>
</body>
</html>
1
I've also tried calling the file test.js and getting rid of the html markup, which makes no difference.
What language does Microsoft mean when they talk about scripts What have I done wrong I'm sure I'm missing something obvious.
Many thanks.
Steph
P.S. It's IE6 btw.