Table in illustrator
Hi,
how to create the table in illustrator through script?
pls help
Hi,
how to create the table in illustrator through script?
pls help
Thanks all for your replies and suggestions.. and sorry for late reply..
there is no more options to use other applications.. the user wants to place the result as a table in illustrator... So I have created table using rectangles.. like,
x=0;
y=0;
w=100;
h=30;
for(y=0;y<2;y++){
x = 0;
for(x=0;x<2;x++){
var rectRef = targetLayer.pathItems.rectangle(y,x,w,h);
var areaTextRef =targetLayer.textFrames.areaText(rectRef);
areaTextRef.contents ="content";
x = x+w;
}
y = y - h;
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.