ID:1669003
 
<div id="map" byondclass="map" byondparams="letterbox:false;icon-size:64;"></div>


I am trying to make the map zoom in to a bigger icon size, but this doesn't seem to work. Can anyone else confirm this before I go and post a bug report?
Zoom levels other than 0 (stretch) and 1 aren't supported yet. It's in the doc!
While I'm at it I may as well clear up another question:

<div id=output byondclass="output" style="float:right;display:inline-block;width:30%;"></div>

...


<byondclass name="output">
<script>
{
fn: {
onShow: function() {
byond.skin.output("output", {text: "Lol!"});
}
}
}
</script>
</byondclass>


I'm attempting to make a simple message display when the client enters. Is there already a logical entrypoint I should be using for this?
In response to Doohl
Doohl wrote:
I'm attempting to make a simple message display when the client enters. Is there already a logical entrypoint I should be using for this?

Use onshow instead of onShow. That should work.

Bear in mind if you also want the default behavior of calling the command from the on-show param, you'll want byond.fn.onshow.call(this) as well.