Is there a way to open Opus's internal viewer when clicking on a static control with an image? I tried creating a button the same size as the thumbnail and placing it on top, but it didn't work. The button would have to be transparent.
case "btn_visor":
cmd.RunCommand("Show AUTOFILELIST");
break;
while (true) {
var msg = dlg.GetMsg();
if (!msg.result) break;
if (msg.event === "click" && msg.control) {
if (msg.control === "thumbnail") {
var cmd = DOpus.Create.Command();
cmd.RunCommand("Show AUTOFILELIST");
}
}