katie/data/scripts/eval.qs
Ivailo Monev a45f8b3bd8 convert resources to static data
images are in PNG format for now but that is likely to change

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-10-29 10:17:54 +03:00

21 lines
416 B
Text

name = "eval";
group = "running";
shortDescription = "Evaluate program";
longDescription = "";
argumentTypes = [ "script" ];
function execute() {
if (arguments.length == 0) {
message("Missing argument (program).");
return;
}
setEvaluateAction(0);
scheduleEvaluate(getCurrentFrameIndex(), arguments[0], "console input (" + Date() + ")");
};
function handleResponse(resp, id) {
}