点線が動いて見えるよう(photoshopとかで選択範囲指定した時みたいな感じの)にしたいな。
shape = new createjs.Shape();
let ofs = 0;
const draw = ()=>{
shape.graphics.setStrokeDash([4,4],ofs);
shape.graphics.beginStroke("#00ff00");
shape.graphics.setStrokeStyle(2,0,0,10,true);
shape.graphics.drawRoundRect(0,0,100,100,10);
shape.graphics.endStroke();
ofs++;
ofs = ofs % 8;
}
draw();
setInterval(draw,250);