| View previous topic :: View next topic |
| Author |
Message |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
Posted: Wed Aug 20, 2003 12:21 pm Post subject: Weblink with the INFO command? |
|
|
Hi,
Maybe it has been said, but I'm wondering if its possible to add a weblink(url) to a message box using the info command or @msgbox?
Like:
info Please go to -->url here <www.vdsworld.com>
With VDS 5 if possible...
Thanks.  |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Wed Aug 20, 2003 1:15 pm Post subject: |
|
|
Well you can just JavaScript or VBScript to make a message box appear
with a web link. For more compatibility (ex. in Netscape) you should use
JavaScript, but VBScript works with Internet Explorer.
Here's examples:
| Code: | <script language="JavaScript">
alert("This is my alert box");
confirm("This is my confirm box");
</script> |
| Code: | <script language="VBScript">
MsgBox "This is my error box",16,"WARNING!"
</script> |
For some good tutorials, check out these links:
http://www.google.com/search?q=javascript+message+box+tutorial
http://www.google.com/search?q=vbscript+message+box+tutorial _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Wed Aug 20, 2003 1:17 pm Post subject: |
|
|
Oh darn I misread your post!
Well I'll leave the previous one there for people that are interested. You
can do it with a realistic dialog box. Let me get you an example.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
|