proc/sysmess(mob/M,T as text)
T+="
"
M.sysmess+=T
if(length(M.sysmess)>500)
var/pos=findtext(M.sysmess,"")
M.sysmess = copytext(M.sysmess,pos+18)
M<< browse(M.sysmess,"display=1;window=Sysmess")
I want this to go into a browser window.
How would I make this be displayed in a frame page? like..
(MAIN WINDOW)(AKA Map) | (SYSTEMMESS) (AKA Text Box)
ID:268079
Mar 7 2004, 10:02 am
|
|
Mar 7 2004, 6:23 pm
|
|
If you mean an actual HTML frameset, that will work differently. There might be a way to do this in one file, but I can't remember how.
|