This is a very basic question but I'm having trouble getting a path to change size. In this example I want to change the selected paths to an absolute size.
var paths = document.getItems({
selected: true
});
if (paths.length > 0 ){
for(i=0; i<paths.length; i++) {
var path = paths[i];
path.size = new Size(100);
}
}
This script doesn't do anything. I can add points to the paths and change their color without any trouble. I've used path.scale to scale the objects but I can't seem to get them to size to one value.
I'll continue to look through the provided scripts until I find one that uses this function but just in case I can't find anything, I'd love some help.
Thanks