We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4c6c9 commit 94e3caaCopy full SHA for 94e3caa
SetTabStops.jsx
@@ -0,0 +1,8 @@
1
+//Sets Illustrator's tab stops in one time.
2
+
3
+var tabPos = [30,60,90], tb = new Array(3);
4
+for(var i=0; i<tabPos.length; i++){
5
+ tb[i] = new TabStopInfo;
6
+ tb[i].position = tabPos[i];
7
+ }
8
+app.selection[0].paragraphs[0].tabStops = tb;
0 commit comments