var/searchform = {"<form name='searchform' action='byond://' method='get'>
<p>
<input type='hidden' name='action' value='searchedit' />
Search<br />
<input type='text' name='searchedit' size='15' /><input type='submit' value='Search' />
"}
var/searchformend = {"
</p>
</form>
"}
Problem description:
I'm trying to use forms with an edit system, and I can't seem to figure out a way to include a \ref macro reference to an object. This is a search form to traverse an object's variables. Does anyone have experience with this?
As you're using a variable to hold your html, you'd probably want to build the variable in Login() or New(), or simply as needed when the form is being displayed.