Open Adobe Illustrator file via VB Script

109 Views Asked by At

I'm new in Adobe Illustrator and VB script. I would like to know how to open Adobe Illustrator file using VB Script. I would like to automate few process of doing task.

1

There are 1 best solutions below

1
Yuri Khristich On

I'm not an expert in Visual Basic so here is the quote from the official documentation (p. 13):

Set appRef = CreateObject("Illustrator.Application")
Set docRef = appRef.Open("C:\temp\aFile.ai")