ID:268990
![]() Jan 13 2005, 10:07 am
|
|
How do I make like more than one browser page and be able to link them together with a clickable button? Like in that character handling library with the html lib
|
Copyright © 2025 BYOND Software.
All rights reserved.
If you want to do it yourself, though...
Links that BYOND understands are in the form byond://?something=stuff&somethingelse=2
Whenever a link like that is clicked on in a game, client/Topic() gets called.
href is everything after the ? in the byond://? link. In the example, it's "something=stuff&somethingelse=2".
href_list is what you get if you run params2list(href). It turns href into an associative list.
href_list[1] would equal "something"
href_list["something"] would equal "stuff"
In client/Topic() check what href is to figure out what link the player clicked.