javascriptarraysextendscript

Why isn't the variable being added to the array in this ExtendScript code?


What am I doing wrong here?

if ( app.documents.length > 0 ) {

    for ( i = 0; i< app.activeDocument.textFrames.length; i++) {
         var allSizes = []; //set up empty array
        
        textArtRange = app.activeDocument.textFrames[i].textRange;
        var fontName =  textFonts.getByName("Nobile");
        alert (fontName);
        textArtRange.characterAttributes.textFont = fontName;
        var fontSizes = textArtRange.characterAttributes.size;
        
        allSizes.push(fontSizes)
        alert (fontSizes);

    }
        alert (allSizes);
}

the alerts for allSizes only return single values, not the array.


Solution

  • Move the definition of allSizes = [] outside the loop.

    Currently, you're "resetting" the value of allSizes at each loop.