| 2 | | """Export and import UFOs with metadata. Version 0.6.1 beta""" |
|---|
| | 2 | """Export and import UFOs. Version 1.0""" |
|---|
| | 3 | |
|---|
| | 4 | help = """ |
|---|
| | 5 | UFO Central |
|---|
| | 6 | Version 1.0 |
|---|
| | 7 | |
|---|
| | 8 | This script gives you fine-grained control over |
|---|
| | 9 | importing and exporting UFO data. |
|---|
| | 10 | |
|---|
| | 11 | Import |
|---|
| | 12 | ------ |
|---|
| | 13 | |
|---|
| | 14 | Select UFOs |
|---|
| | 15 | Select the UFOs you wish to import data from. |
|---|
| | 16 | You can select a directory and all UFOs from |
|---|
| | 17 | the directory will be imported. |
|---|
| | 18 | |
|---|
| | 19 | Save After Importing |
|---|
| | 20 | Check to save the VFB files after importing. |
|---|
| | 21 | |
|---|
| | 22 | Close After Importing |
|---|
| | 23 | Check to close the VFBs after importing. |
|---|
| | 24 | |
|---|
| | 25 | |
|---|
| | 26 | Export |
|---|
| | 27 | ------ |
|---|
| | 28 | |
|---|
| | 29 | Current Font |
|---|
| | 30 | Check to export data from the current font. |
|---|
| | 31 | |
|---|
| | 32 | All Open Fonts |
|---|
| | 33 | Check to export data from all open fonts. |
|---|
| | 34 | |
|---|
| | 35 | |
|---|
| | 36 | File Options |
|---|
| | 37 | ------------ |
|---|
| | 38 | |
|---|
| | 39 | Make New Files |
|---|
| | 40 | Check to write new UFO or VFB files. The file name |
|---|
| | 41 | will be same as the file being exported or imported |
|---|
| | 42 | except that it will have a different file suffix. |
|---|
| | 43 | If that file name already exists, a date stamp will |
|---|
| | 44 | be added to the file name. |
|---|
| | 45 | |
|---|
| | 46 | Write Into Existing Files |
|---|
| | 47 | Check to write data into existing UFO or VFB files. |
|---|
| | 48 | The file name will be exported or imported except |
|---|
| | 49 | that it will have a different file suffix. |
|---|
| | 50 | |
|---|
| | 51 | |
|---|
| | 52 | Data Options |
|---|
| | 53 | ------------ |
|---|
| | 54 | |
|---|
| | 55 | Font Info |
|---|
| | 56 | Check to read/write font info data. |
|---|
| | 57 | |
|---|
| | 58 | Kerning |
|---|
| | 59 | Check to read/write kerning data. |
|---|
| | 60 | |
|---|
| | 61 | Groups |
|---|
| | 62 | Check to read/write group data. |
|---|
| | 63 | |
|---|
| | 64 | Lib |
|---|
| | 65 | Check to read/write font lib data. |
|---|
| | 66 | |
|---|
| | 67 | Hints |
|---|
| | 68 | Check to read/write hint data. |
|---|
| | 69 | |
|---|
| | 70 | Glyphs |
|---|
| | 71 | This button brings up a dialog that will allow |
|---|
| | 72 | you to select which glyphs should be exported |
|---|
| | 73 | or imported. |
|---|
| | 74 | |
|---|
| | 75 | Glyph Marks |
|---|
| | 76 | Check to read/write glyph marks. |
|---|
| | 77 | |
|---|
| | 78 | Glyph Masks |
|---|
| | 79 | Check to read/write glyph masks. |
|---|
| | 80 | """.strip() |
|---|
| | 81 | |
|---|