Open
Description
- create a document with 2 pages
- go to page 2
- draw something to the page e.g.:
#includepath "~/Documents/;%USERPROFILE%Documents";
#include "basiljs/bundle/basil.js";
function draw() {
b.rect(0,0,300,300);
}
// b.go();
// b.go(b.MODESILENT);
b.go(b.MODEHIDDEN);
running the script with b.go() or b.go(b.MODESILENT) will draw the rect to page 2, whereas b.go(b.MODEHIDDEN) to page 1 :(
@bescreen could you look into this?