Voreinstellungen Layouter
// ---------- Application Preferences ------------- // OSX: Lucida Grande ist auf jedem System installiert app.paragraphStyles.item('[Einfacher Absatz]').appliedFont = "Lucida Grande"; app.paragraphStyles.item('[Einfacher Absatz]').fontStyle = "Regular"; with (app.textPreferences) { typographersQuotes = true baselineShiftKeyIncrement = 1 kerningKeyIncrement = 5 leadingKeyIncrement = 1 // showInvisibles = true; // Redakteure showInvisibles = false; highlightSubstitutedFonts = true; } with (app.textImportPreferences) { stripReturnsBetweenLines = false; stripReturnsBetweenParagraphs = true; } with(app.gridPreferences){ //baselineStart = 56; //baselineDivision = 10; // millimeter Raster horizontalGridlineDivision = 10; horizontalGridSubdivision = 10; verticalGridlineDivision = 10; verticalGridSubdivision = 10; documentGridShown = false; documentGridSnapTo = false; //Objects "snap" to the baseline grid when //guidePreferences.guideSnapTo is set to true. baselineGridShown = false; // soll das Grundlinienraster angezeigt werden } // View Preferences with (app.viewPreferences) { horizontalMeasurementUnits = MeasurementUnits.millimeters verticalMeasurementUnits = MeasurementUnits.millimeters cursorKeyIncrement = 0.1; rulerOrigin = RulerOrigin.spreadOrigin; showRulers = true; //showRulers = false; // Redakteur guideSnaptoZone = 4; showFrameEdges = false; // für Layouter // showFrameEdges = true; // für Redakteur } // Hilfslinien with (app.guidePreferences) { guidesShown = true; guidesInBack = false; guidesLocked = false; guidesSnapTo = true; } with (app.clipboardPreferences) { // Ebenen bleiben bei Copy & Paste erhalten pasteRemembersLayers = true; } with (app.pasteboardPreferences) { minimumSpaceAboveAndBelow = 100; } with (app.transformPreferences) { // ToDo } with (app.galleyPreferences) { showDepthRuler = false; } with (app.wordRTFImportPreferences) { importEndnotes = false; importFootnotes = false; importIndex = false; importTOC = false; importUnusedStyles = false; removeFormatting = true; useTypographersQuotes = true; } with (app.pdfExportPreferences) { exportReaderSpreads = true; } with (app.epsImportPreferences) { //epsProxy = CreateProxy.asNeeded; //epsProxy = CreateProxy.always; } // Farbmanagement - Einstellungen with (app.colorSettings) { //enableColorManagement = true; //cmsSettings = "Monitorfarben"; //rgbPolicy = ColorSettingsPolicy.colorPolicyOff; //cmykPolicy = ColorSettingsPolicy.colorPolicyOff; //workingSpaceRGB = "sRGB IEC61966-2.1" //workingSpaceCMYK = "Europe ISO Coated FOGRA27"; } with (app.displayPerformancePreferences) { defaultDisplaySettings = ViewDisplaySettings.highQuality; //defaultDisplaySettings = ViewDisplaySettings.typical; //defaultDisplaySettings = ViewDisplaySettings.optimized; } // Preview im Dokument speichern app.generalPreferences.includePreview = false; alert("Voreinstellungen Layout eingerichtet!");