-
Notifications
You must be signed in to change notification settings - Fork 6
Fonts
fabiantheblind edited this page Sep 30, 2012
·
3 revisions
###fonts
/**
* Fonts can be a pain in the ***
* You can call them by name, but than you have to be very precise
* by writing their name in the script
* an easier way is to call them by number
* but there you will face problems when you activate or deacitvate fonts
* because their numbers will change
*
* This script writes a list of all available fonts
* on your system to the desktop
* have a look into new file
* the weight is separated by a TAB
* if you want to call a font by the name
* you have to write that TAB.
* some IDEs translate TAB into for whitespaces
* so be carfull
*
*/
main(); // main everyhing is in here
function main(){
var list = new Array(); // a list
// loop thru the fonts and add ther info in a list
for (var i = 0; i < app.fonts.length;i++){
list.push("app.fonts.item("+ String(i) +") --> " +app.fonts[i].name);
}; // end loop
// get the textfile
var txtFile = File("~/Desktop/id_fontslist.txt");
if(!txtFile.exists){
// if the file does not exist create one
txtFile = new File("~/Desktop/id_fontslist.txt");
}else{
// if it exsists ask the user if it should be overwritten
var res = confirm ("The file already exists. Should I overwrite it", true, "titleWINonly");
// if the user hits no stop the script
if(res != true){
return;
};
};
var out;// our output
// we know already that the file exist
// but to be shure
if( txtFile!='' ){
//Open the file for writing.
out = txtFile.open( 'e', undefined, undefined );
txtFile.encoding = "UTF-8";
txtFile.lineFeed = "Unix"; //convert to UNIX lineFeed
// txtFile.lineFeed = "Windows";
// txtFile.lineFeed = "Macintosh";
};
// got an output?
if( out != false ){
// loop the list and write each item to the file
for(var i in list){
txtFile.writeln(list[i]);
};
// allways close files!
txtFile.close();
txtFile.execute();
};
// this is more the C or C++ style
// but it is good for the console
// we know everything went fine
return 0;
};
This wiki is maintained by:
fabiantheblind
Collaborators:
- How To Install And Run Scripts
- References And Links
- Tools
- First Session
- Comments
- Extended JavaScript Guide
- Variables And Operations
- Conditionals
- Arrays
- Output And Interaction
- Objects
- Classes
- Loops
- Functions
- Recursive Functions
- The ID Scripting DOM
- ExtendScript
- Inspect Properties
- app
- Documents
- Pages And Margins
- Masterspreads
- Layers
- GeometricBounds and Coordinates
- Text
- Line Feeds And Carrige Returns
- Simple Find And Change Grep
- Simple Find And Change Text
- Text Analysis
- Text Analysis ID FC
- Text Find Locations
- InsertionPoints
- Styles
- Objectstyles
- Rectangles Ovals Polygons
- Matrix
- Outlines Groups Alignment
- Graphic Lines
- Spiro
- Colors And Swatches
- HSL Color Wheel
- Pathfinder
- Fonts
- Transformation Matricies
- Duplicate And Transform
- Includes
- Storing Data In A Target Engine
- Create And Read Files
- Read In JSON From File And Eval
- Delay And View
- ScriptUI Resource Strings