InDesign Layout Voreinstellungen

HomeScript KatalogForumSkripteSuDokuNummerierungWörterbuchFaszinierendes
 
PlugInsKatalogImNuJavaScriptDokumenteBücherLinksSchulungenVideosInDesign Tipps

Voreinstellungen Layouter
  1. // ---------- Application Preferences -------------
  2.  
  3. // OSX: Lucida Grande ist auf jedem System installiert
  4.  
  5. app.paragraphStyles.item('[Einfacher Absatz]').appliedFont = "Lucida Grande";
  6. app.paragraphStyles.item('[Einfacher Absatz]').fontStyle = "Regular";
  7.  
  8. with (app.textPreferences) {
  9. typographersQuotes = true
  10. baselineShiftKeyIncrement = 1
  11. kerningKeyIncrement = 5
  12. leadingKeyIncrement = 1
  13. // showInvisibles = true; // Redakteure
  14. showInvisibles = false;
  15. highlightSubstitutedFonts = true;
  16. }
  17.  
  18.  
  19. with (app.textImportPreferences) {
  20. stripReturnsBetweenLines = false;
  21. stripReturnsBetweenParagraphs = true;
  22. }
  23.  
  24. with(app.gridPreferences){
  25. //baselineStart = 56;
  26. //baselineDivision = 10;
  27.  
  28. // millimeter Raster
  29. horizontalGridlineDivision = 10;
  30. horizontalGridSubdivision = 10;
  31. verticalGridlineDivision = 10;
  32. verticalGridSubdivision = 10;
  33.  
  34. documentGridShown = false;
  35. documentGridSnapTo = false;
  36. //Objects "snap" to the baseline grid when
  37. //guidePreferences.guideSnapTo is set to true.
  38. baselineGridShown = false; // soll das Grundlinienraster angezeigt werden
  39. }
  40.  
  41. // View Preferences
  42. with (app.viewPreferences) {
  43.  
  44. horizontalMeasurementUnits = MeasurementUnits.millimeters
  45. verticalMeasurementUnits = MeasurementUnits.millimeters
  46. cursorKeyIncrement = 0.1;
  47. rulerOrigin = RulerOrigin.spreadOrigin;
  48. showRulers = true;
  49. //showRulers = false; // Redakteur
  50. guideSnaptoZone = 4;
  51. showFrameEdges = false; // für Layouter
  52. // showFrameEdges = true; // für Redakteur
  53.  
  54. }
  55. // Hilfslinien
  56.  
  57. with (app.guidePreferences) {
  58. guidesShown = true;
  59. guidesInBack = false;
  60. guidesLocked = false;
  61. guidesSnapTo = true;
  62.  
  63. }
  64.  
  65.  
  66. with (app.clipboardPreferences) {
  67. // Ebenen bleiben bei Copy & Paste erhalten
  68. pasteRemembersLayers = true;
  69.  
  70. }
  71.  
  72. with (app.pasteboardPreferences) {
  73. minimumSpaceAboveAndBelow = 100;
  74.  
  75. }
  76.  
  77. with (app.transformPreferences) {
  78. // ToDo
  79. }
  80.  
  81. with (app.galleyPreferences) {
  82. showDepthRuler = false;
  83.  
  84. }
  85.  
  86. with (app.wordRTFImportPreferences) {
  87.  
  88. importEndnotes = false;
  89. importFootnotes = false;
  90. importIndex = false;
  91. importTOC = false;
  92. importUnusedStyles = false;
  93. removeFormatting = true;
  94. useTypographersQuotes = true;
  95.  
  96. }
  97.  
  98. with (app.pdfExportPreferences) {
  99.  
  100. exportReaderSpreads = true;
  101.  
  102. }
  103.  
  104. with (app.epsImportPreferences) {
  105.  
  106. //epsProxy = CreateProxy.asNeeded;
  107. //epsProxy = CreateProxy.always;
  108.  
  109. }
  110.  
  111.  
  112. // Farbmanagement - Einstellungen
  113. with (app.colorSettings) {
  114.  
  115. //enableColorManagement = true;
  116. //cmsSettings = "Monitorfarben";
  117.  
  118. //rgbPolicy = ColorSettingsPolicy.colorPolicyOff;
  119. //cmykPolicy = ColorSettingsPolicy.colorPolicyOff;
  120.  
  121. //workingSpaceRGB = "sRGB IEC61966-2.1"
  122. //workingSpaceCMYK = "Europe ISO Coated FOGRA27";
  123.  
  124. }
  125.  
  126.  
  127. with (app.displayPerformancePreferences) {
  128.  
  129. defaultDisplaySettings = ViewDisplaySettings.highQuality;
  130. //defaultDisplaySettings = ViewDisplaySettings.typical;
  131. //defaultDisplaySettings = ViewDisplaySettings.optimized;
  132.  
  133. }
  134.  
  135. // Preview im Dokument speichern
  136. app.generalPreferences.includePreview = false;
  137. alert("Voreinstellungen Layout eingerichtet!");