I'm trying to script the rotation property of an element in Adobe Edge, but can't work out the syntax.
I'm trying this:
var element = sym.$("Rectangle");
element.css("transform", "rotate(25deg)");
But it doesn't change the rotation at all. Using this exact same method works for other CSS properties, eg:
var element = sym.$("Rectangle");
element.css("left", 150+myVar);
Anyone know how I can access the transform:rotate property here? Thanks!