You can also modify the New Window in the event handler to make the new window more informative if needed (that is also one possibly place to scale the image)
This isn't event handler but an example script what could be done
Names Default To Here(1);
img = New Image(
New HTTP Request(
url("https://archives.bulbagarden.net/media/upload/2/21/001Bulbasaur.png"),
Method("GET")
) << send
);
img << scale(0.5);
New Window("001 - Bulbasaur", << Show Toolbars(0), << Show Menu(0),
V List Box(
align("center"),
Text Box("001 - Bulbasaur", <<Set Font Style("Bold")),
H List Box(align("center"),
img,
Table Box(
String Col Box("Attribute",
{"Type 1", "Type 2", "Total", "HP", "Attack", "Defense", "Sp. Atk",
"Sp. Def", "Speed", "Generation", "Legendary"}
),
String Col Box("Value",
{"Grass", "Poison", "318", "45", "49", "49", "65", "65", "45", "1",
"False"}
)
)
)
)
);
-Jarmo