-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
82 lines (60 loc) · 2.07 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using Illustrator;
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Starting Illustrator...");
var application = new Application
{
UserInteractionLevel = AiUserInteractionLevel.aiDontDisplayAlerts
};
Console.WriteLine("Version: " + application.Version);
for (int i = 0; i < 10; i++)
{
Console.WriteLine("Iteration " + (i + 1));
Console.WriteLine("Opening file...");
var document = application.Open(GetFilePath("MD215_NG-6318-1.ai"));
// If we don't duplicate the Layer on run the script on the original Layer "MD_2_BEMASSUNG" it works fine.
//
Console.WriteLine("Duplicating layer");
var sourceLayer = GetLayer(document, "MD_2_BEMASSUNG");
Duplicate(document, sourceLayer, "MD_2_BEMASSUNG_NEW");
// System.Threading.Thread.Sleep(5000); // Doesn't help
Console.WriteLine("Running JavaScript...");
application.DoJavaScriptFile(GetFilePath("replaceDecimalSeparator.js"));
Console.WriteLine("Closing file...");
application.Documents[1].Close(AiSaveOptions.aiDoNotSaveChanges);
}
Console.ReadKey();
}
private static string GetFilePath(string fileName)
{
return Path.Combine(AppDomain.CurrentDomain.BaseDirectory,
fileName);
}
private static Layer GetLayer(Document document, string name)
{
for (int i = 1; i <= document.Layers.Count; i++)
{
if (document.Layers[i].Name == name)
{
return document.Layers[i];
}
;
}
return null;
}
private static Layer Duplicate(Document document,
Layer source,
string newLayerName)
{
var newLayer = document.Layers.Add();
newLayer.Name = newLayerName;
for (int i = 1; i <= source.GroupItems.Count; i++)
{
source.GroupItems[i].Duplicate(newLayer);
}
return newLayer;
}
}