Question
line to line
i am trying to draw line in adobe animate html5
i wrote this code, but it is not work
var c = stage.document.getElementById("canvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.moveTo(30,67);
ctx.lineTo(45,78);
ctx.stroke();
