// Set the font used to Arial
style.setFont("ArialMT")
// Set the font size to 80
style.setFontSize(80);
// Enable Faux Bold with a Boolean
style.setFauxBold(true)
// Enable Faux Italics with a Boolean
style.setFauxItalics(true)
// Enable All Caps with a Boolean
style.setAllCaps(true)
// Enable Small Caps with a Boolean
style.setSmallCaps(true)
// Set the Tracking as a number
style.setTracking(10);
// Set the Leading as a number
style.setLeading(10);
// Enable Auto Leading with a Boolean
style.setAutoLeading(true);
// Set the Baseline Shift as a number
style.setBaselineShift(10);
// Set the Stroke Width as a number
style.setStrokeWidth(10);
// Set the first line of a text layer to bold and make it larger
text.sourceText.style.setFontSize(100, 0, 30).setFauxBold(true, 0, 30)
// Sets uperscript for characters
text.sourceText.style.setBaselineOption("superscript",1,2).setBaselineOption("superscript", 9, 2)