ID:170566
 
<dm>Is there like a way to refresh the browse() popup?

<dm>
usr << browse("hello","window=popup1") //Opens the popup



usr << browse(null,"window=popup") //Closes the popup


usr <browse(refresh,"window=popup") //refreshes? any command I don't know?</browse>
</<>
Just do another usr << browse() to the same window, that will change the content.

Such as:
mob/verb/Browse_Test()
usr << browse("<b>Hello!</b>", "window=popup")
sleep(50)
usr << browse("<b>Hi!</b>", "window=popup")
In response to Nova2000
Thanks that worked. I never even though of that easy one. Heh.