Quantcast
Viewing all articles
Browse latest Browse all 24

Re: Shrinking text on spiral path

Here's a hacked up version of another script that was posted a month or so ago. You can play with the starting size and the amount of decrease by changing the numbers.

 

Image may be NSFW.
Clik here to view.
Picture 1.png

 

// change size of paragraph text

 

 

 

//$.bp();

 

 

 

ChangeSize();

 

 

 

function ChangeSize()
{
    selectedItems = selection;
    // check to make sure something is selected.
    if (selectedItems.length == 0)
    {
        alert("Nothing is selected");
        return;
    }

 

 

 

    endIndex = selectedItems.length;

 

 

 

    for (index = 0; index < endIndex; index++)
    {
        pageObject = selectedItems[index];
        pageItemType = pageObject.typename;

 

 

 

        if (pageItemType == "TextFrame")
        {
            // get the paragraphs from the selection.
            theTextRange = pageObject.textRange;
            paraTextRange = theTextRange.paragraphs;           
            numParagraphs = paraTextRange.length;

 

 

 

            for (i = 0 ; i < numParagraphs ; i++)
            {
                aParagraph = paraTextRange[i];

 

 

 

                charTextRange = aParagraph.characters;
                charCount = charTextRange.length;

 

 

 

                if (charCount > 1)
                {
                    end = charCount;
                    fontSizeChanger = 14/end;
                    currentFontSize = 18;
                    for (j = 0 ; j < end; j++)
                    {
                        theChar = charTextRange[j];
                        theChar.size = currentFontSize;  
                        currentFontSize = currentFontSize - fontSizeChanger;
                    }
                  
                }
            }
        }
    }
}

 

 

You might check here for  simplier version

 

http://forums.adobe.com/message/2037393#2037393


Viewing all articles
Browse latest Browse all 24

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>