Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function ChangeSize(){
  2. var myDoc = app.activeDocument;
  3.  
  4. //Here's where I need to make a proper selection
  5. var selection = activeDocument.selection;
  6.  
  7. //begin resize function
  8. for (var i=0; i<characters.length; i++){
  9. characters[i].characterstyle.textheight -= i * .05;
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement