Hello
I need access to AI guides in AfterEffects
shift+alt+ctrl double click doesn't always work.
Is there a script to convert all guides to paths?\
Have I asked this before?!
Tristan
Don't you just want…?
#target illustrator var doc = app.activeDocument; var paths = doc.pathItems; for ( var i = 0; i < paths.length; i++ ) { if ( paths[i].guides ) { paths[i].guides = false; } };
Fantastic. Thank uou.