ID:174529
 
Alright this will be awkward since Im not sure on technical terms, but I want a box (similar to alert but not quite) to pop on the screen. In this box I want text to show up (again not alert) but text I put in with HTML, I know how to do it in browser but I wish to know how to do a pop up.

Rifthaven
This is easier than you think.
var/const/test = {"Test"}

^This will create the message that will be shown.^
 

src << browse(test,"window=Test")


^This is how you call it^

Well, I think this is what you want.

-Camaro-
In response to Camaro
Thanks, that was exactly what I was trying to figure out!
In response to Camaro
How can you do things in the pop up window? Like in games i've seen where they have you create your characters in windows like that?
In response to Sir Ham
Look up:
Topic proc (client)
in the DM Helpfiles. To make things click-able in pop-up windows.
In response to Sir Ham
You might want to check out Dantom.htmllib.
In response to Rifthaven
Does this help:


var/const/help = {"
<html>
<head><title>Help!</title></head>
<body>

You are beyond help!

</body>
</html>
"}
client/verb/help()
usr << browse(help,"window=help")