ID:143775
 
Code:
Form/EditMessage
form_reusable = 1
var
area
area_interface = TEXTAREA
area_size = "30x30"
obj/object
DisplayForm(mob/U,Text)
area = Text
..()
ProcessForm()
object.desc = area
usr << browse("")
..()
HtmlLayout() return \
{"
[area]
[submit]
"}

obj/item
WritingBook
name = "Book"
desc = "EEK"
icon = 'Icons/Books.dmi'
icon_state = "WB"
verb/Write_in()
var/Form/EditMessage/frm = new()
frm.object = src
frm.area = src.desc
frm.DisplayForm(usr,desc)


Problem description:

I'm trying to make a book where you can add,erase or edit what the text is. But when i go to write on it the desc doesn't show up in the [area] box.

This is what i tried to do in my other post, a few months back.