| |
adminkoe
Posts: 117
Score: 0
Joined: 12/23/2000
From:
Status: offline
|
Cobra, I just did an expirement with VBScript. It can be done, just modify the script below to suit your need. <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> <form name=form1> <textarea rows=5 cols=40 name=listbox> </textarea> </form> <script language="vbs"> Sub writeTolistBox(val) document.form1.listbox.value=val End Sub </script> <img src="cover.jpg" border="0" usemap="#frontMap" alt="" title="Main Menu"><map name="frontMap"><area shape="poly" coords="235,64,235,54,246,53,251,55,257,61,258,54,271,53,286,53,297,53,307,53,322,53,335,53,346,52,346,62,344,69,330,71,298,71,277,71,266,71,260,66,253,68,242,72,235,65" onClick="vbscript:writeTolistBox('hello world')"></map> </BODY> </HTML> Hope this can help, Andy Regards, Andi Zain
|
|