Hi,
I need to copy the active artboard from Illustrator to Photoshop. Can this be accomplished? I got a handle to active artboard like this
//get artboard collection
var myArtboards = myDocument.artboards;
var activeArtBoardIndex = myArtboards.getActiveArtboardIndex();
var myActiveArtboard = myArtboards [activeArtBoardIndex];
any ideas on copying this artboard to a file in PhotoShop?
thanks for your help.