Converting text, language options?

Hello everyone,
I'm trying to convert a pdf-document (about 200 pages) and make it into a word-document, so that I can make small edits to the text (the pdf is scanned from a book). Under "Content editing" i choose "export file to.." and then selects word document. All good. The pdf is converted to a word document with editable text, BUT, this pdf is written in swedish and this is where the problem lies. We have some letters that don't exists in the english language: å, ä & ö. These letters wont convert properly.
Can anyone help me so that i don't have to fix this manually?
Kind Regards, Robert

As a scanner's output is an image / picture of the text that is on the paper being scanned there is no textual content to export to another file format once the image / picture is in a PDF.
That is where OCR comes into play.
Rather than using English as the language when using Acrobat's OCR change the language to Swedixh.
When you have the Text Recognition (OCR) dialog open click on the "Edit" button.
Be well...

Similar Messages

  • Convert Text

    Since I have been posting to these forms, I have been annoyed by the conversions that are done to my posts. A word surrounded by asterisks gets bolded. When I decide to make a link to a post, I can never remember the exact format. When I posted AppleScript code, I found that it is squish to the left. The AppleScript I have posted here gets around these problems.
    usage: What you need to do is copy the text that you wish to post to the clipboard then run this AppleScript then paste the text into your post.
    Robert
    This AppleScript program is designed to convert HTML links to forum posts, to convert special characters to their HTML symbols, and to preserve formatting.  
    1)  When the clipboard contains a link to a forum reply page.
     The AppleScript forums designers  specify a roundabout way for you to reference a particular web post.  Here is that way:
     a) Find the particular post you wish to reference.  
     b) Click on the reply icon.  
     c) Copy  the Web address to the clipboard .  
     d) Run this AppleScript to convert the Web address.  
     e) Paste the converted Web address into your post.
      For example,  this AppleScript will convert this Web address:
        http://discussions.apple.com/post!reply.jspa?messageID=9003196
      into this Web address:
              http://discussions.apple.com/message.jspa?messageID=9003196#9003196
    2)  Assume that the clipboard contains text to convert.  
     Many of the special characters are used to indicate formatting in the forums.
     See "Other formating tags are available as shown below" in
     http://discussions.apple.com/help.jspa
     This AppleScript will converted to HTML these special symbols in order to preserve the original characters. Also, this AppleScript preserves indentation used in programs or Terminal output.
     a) Copy  the text to the clipboard .  
     b) Run this AppleScript to convert the text
     c) Paste the converted text into your post.
     For example,  the asterisks will be preserved:
       mac $ ls *oup*
       Youpi Key Editor.plist  Youpi Key.app alias  
     For example,  the indentation will be preserved:
       on adding folder items to this_folder after receiving dropped_items
         repeat with dropped_item_ref in dropped_items
           display dialog "dropped files is " & dropped_item_ref
         end repeat
       end adding folder items to
     Author: rccharles
    -- Write a message into the event log.
    log "  --- Starting on " & ((current date) as string) & " --- "
    set theClip to the clipboard
    if characters 1 thru 33 of theClip as string = "http://discussions.apple.com/post" then
           http://discussions.apple.com/post!reply.jspa?messageID=9003196
           http://discussions.apple.com/message.jspa?messageID=9003196#9003196
     set theClip to alterString(theClip, "post!reply", "message")
     set {frontPart, postNumber} to textToList(theClip, "=")
     set theClip to theClip & "#" & postNumber
    else
     -- must be the first change so as not to cause problems.
     --  and there must not be any HTML numbers on the clipboard.
     set theClip to alterString(theClip, "#", "#")
     set theClip to alterString(theClip, "&", "&")
     set theClip to alterString(theClip, " ", " ")
     set theClip to alterString(theClip, "  ", "  ") --  contains two spaces
     set theClip to alterString(theClip, "!", "!")
     set theClip to alterString(theClip, "[", "[")
     set theClip to alterString(theClip, "]", "]")
     set theClip to alterString(theClip, "<", "&lt;")
     set theClip to alterString(theClip, "*", "&#042;")
     set theClip to alterString(theClip, "+", "&#043;")
     set theClip to alterString(theClip, "_", "&#095;")
     set theClip to alterString(theClip, "--", "&#045;&#045;")
     set theClip to alterString(theClip, tab, "  ")
     set theClip to "<tt>" & theClip & "</tt>"
    end if
    set the clipboard to theClip
    on alterString(thisText, delim, replacement)
     set resultList to {}
     set {tid, my text item delimiters} to {my text item delimiters, delim}
     try
       set resultList to every text item of thisText
       set text item delimiters to replacement
       set resultString to resultList as string
       set my text item delimiters to tid
     on error
       set my text item delimiters to tid
     end try
     return resultString
    end alterString
    -- textToList was found here:
    -- http://macscripter.net/viewtopic.php?id=15423
    on textToList(thisText, delim)
     set resultList to {}
     set {tid, my text item delimiters} to {my text item delimiters, delim}
     try
       set resultList to every text item of thisText
       set my text item delimiters to tid
     on error
       set my text item delimiters to tid
     end try
     return resultList
    end textToList

    The first thing that you need to do is to make the text into an AppleScript program.
    start the AppleScript Editor
    /Applications/AppleScript/Script Editor.app
    copy the text to the Applescript editor.
    save the text to a file as an application and do not check any of the boxes below.
    !http://farm4.static.flickr.com/3544/3390737677_645a847e28.jpg?v=0!
    now, let's build a link to a post.
    get the link to a reply.
    Goto this Webpage:
    http://discussions.apple.com/post!reply.jspa?messageID=9003196
    Copy the Web page address from the top of your Web browser page. This is the standard highlight the address then do a command+c
    Now you should run my AppleScript program by going back to the Script Editor. Optional, click the words *event log* to see the debug information. Click on the run icon.
    !http://farm4.static.flickr.com/3423/3391549168_9ce8b6fcd9.jpg?v=0!
    The link has been modified. Paste the link onto your Web page. This is the standard command+v.
    For a more typical usage, placed the program on the dock or make an alias on the desktop.
    Robert
    Name: alter-clipboard
    Input: Clipboard
    Output: Clipboard
    This AppleScript program is designed to convert a forum-reply web address  to a link to a forum post, to convert special characters to their HTML symbols, and to convert programming language code to a  form that does not get mangled.
    1)   When you wish to reference another Apple discussion forum post, I found the process convoluted.  The Apple form software does not provide for the display of a form post link.  Instead, you must  construct the link from a reply post.  This AppleScript simplifies the process.
     When the clipboard contains a link to a forum reply page, do the conversion.
     Here is that way:
     a) Find the particular post you wish to reference.  
     b) Click on the reply icon.  
     c) Copy  the Web address to the clipboard  (command+c).  
     d) Run this AppleScript to convert the Web address.  
     e) Paste (command+v) the converted Web address into your post.
      For example, you:  
      • Want to reference a post on how to improve the performance of Tiger.  You find a post by Texas Mac Man with a list of possibilities.  
      • Click on the Reply option and highlight the Web address because you know the address contains a reference to this post.
      • Type command+c to copy the address to the clipboard.  The clipboard now contains:
       http://discussions.apple.com/post&#033;reply.jspa?messageID=9124252
      •  Run this AppleScript to convert the Web address. The clipboard now contains:  
             http://discussions.apple.com/message.jspa?messageID=9124252&#035;9124252
      • Type command+v to paste the address  into your new post.
    2)  Assume that the clipboard contains  special symbols or formated programming language code to convert.  
     This AppleScript will converted special symbols used in these forums to a form not used by the forum software in order to preserve the original characters.
     For the symbols, see:
     See "Other formating tags are available as shown below" in
     http://discussions.apple.com/help.jspa&#035;format
     An alternative to using these symbols is document in this post:
     http://discussions.apple.com/thread.jspa?messageID=607563
     Also, this AppleScript preserves indentation used in programs or Terminal output.
     a) Copy  the text to the clipboard .  
     b) Run this AppleScript to convert the text
     c) Paste the converted text into your post.
     For example,  the asterisks will be preserved:
       mac $ ls *oup*
       Youpi Key Editor.plist  Youpi Key.app alias  
     For example,  the indentation will be preserved:
       on adding folder items to this_folder after receiving dropped_items
         repeat with dropped_item_ref in dropped_items
           display dialog "dropped files is " & dropped_item_ref
         end repeat
       end adding folder items to
     Author: rccharles
     Copyright 2009 rccharles
     GNU General Public License
       This program is free software: you can redistribute it and/or modify
       it under the terms of the GNU General Public License as published by
       the Free Software Foundation,  version 3
       This program is distributed in the hope that it will be useful,
       but WITHOUT ANY WARRANTY; without even the implied warranty of
       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       GNU General Public License for more details.
       For a copy of the GNU General Public License see <http://www.gnu.org/licenses/>.
    -- Write a message into the event log.
    log "  --- Starting on " & ((current date) as string) & " --- "
    set theClip to the clipboard
    if characters 1 thru 33 of theClip as string = "http://discussions.apple.com/post" then
           http://discussions.apple.com/post&#033;reply.jspa?messageID=9003196
      convert to:
           http://discussions.apple.com/message.jspa?messageID=9003196&#035;9003196
     set theClip to alterString(theClip, "post!reply", "message")
     set {frontPart, postNumber} to textToList(theClip, "=")
     set theClip to theClip & "#" & postNumber
    else
     -- must be the first change so as not to cause problems.
     --  and there must not be any HTML numbers on the clipboard.
     set theClip to alterString(theClip, "#", "&#035;")
     --  You need to use either the numeric form of the HTML symbol or to
     --  do the translation has seen below.
     set theClip to alterString(theClip, "&amp;", "&amp;amp;")
     set theClip to alterString(theClip, " ", "&amp;nbsp;")
     set theClip to alterString(theClip, "  ", "  ") --  contains two spaces
     set theClip to alterString(theClip, "!", "&#033;")
     set theClip to alterString(theClip, "[", "&#091;")
     set theClip to alterString(theClip, "]", "&#093;")
     set theClip to alterString(theClip, "<", "&#060;")
     set theClip to alterString(theClip, "*", "&#042;")
     set theClip to alterString(theClip, "+", "&#043;")
     set theClip to alterString(theClip, "_", "&#095;")
     set theClip to alterString(theClip, "--", "&#045;&#045;")
     set theClip to alterString(theClip, tab, "  ")
     set theClip to "<tt>" & theClip & "</tt>"
    end if
    set the clipboard to theClip
    on alterString(thisText, delim, replacement)
     set resultList to {}
     set {tid, my text item delimiters} to {my text item delimiters, delim}
     try
       set resultList to every text item of thisText
       set text item delimiters to replacement
       set resultString to resultList as string
       set my text item delimiters to tid
     on error
       set my text item delimiters to tid
     end try
     return resultString
    end alterString
    -- textToList was found here:
    -- http://macscripter.net/viewtopic.php?id=15423
    on textToList(thisText, delim)
     set resultList to {}
     set {tid, my text item delimiters} to {my text item delimiters, delim}
     try
       set resultList to every text item of thisText
       set my text item delimiters to tid
     on error
       set my text item delimiters to tid
     end try
     return resultList
    end textToList

  • Need to convert original language to EN in SAPscript

    Hi all
    I have copied a standard form and need to convert the language to EN but when I go to Utilities the option of convert original language is disable.
    How can I go for it.
    Regrds
    Mona

    Hi,
    Goto SE71 of your script and identify the original language in header details.
    Now goto SE71, form name with original language and click change, usually if you check the radio button trnslate to all languages it is available in all languages... now if you want the form to be avialable in only few languages, click radio button to individual languages and click arror language selelction and select ES... and EN now form will be available in EN and Spanish...save and activate.
    Or
    Go to se71->changeform->form menu->copy from.
    u will find the option to change langauage.
    Regards,
    Satish
    Edited by: Satish Panakala on Apr 17, 2008 12:51 PM

  • How do I use the Services menu to convert text to an iTunes track?

    I'm trying to convert text to an iTunes track using the Services option on the Firefox drop down menu, but having trouble with it. I have set my preferences to turn on that option, but all that happens is I get a spinning wheel at the top of my screen, and it doesn't record. I can't see anything in the iTunes settings that I need to change, but wondering if that could be the problem? Any help would be appreciated.

    Then you may be much better off posting your question in the ExportPDF forum,
    http://forums.adobe.com/community/exportpdf

  • Set top and bottom inset spacing values in Text Frame Options via jsx script

    I am looking for a way to set the top and bottom inset spacing values only to 2 points in Text Frame Options via a .jsx scrpt.
    For years, I have used a script that sets Preferences, such as:
    with(app.storyPreferences){
        opticalMarginAlignment = false;
        opticalMarginSize = 12;                // pts
    I would like to add the code to this same script that would make Top = 0p2 and Bottom 0p2 but leave Left and Right as 0p0.
    Any help would be greatly appreciated.

    Here is the full .jsx file that we now use to set preferences.
    Ideally, this could be modified to include setting any text frame created to have 0p2 inset Top and Bottom, but 0p0 Left and Right:
    //ApplicationTextDefaults
    //An InDesign CS2 JavaScript
    //Sets the application text defaults, which will become the text defaults for all
    //new documents. Existing documents will remain unchanged.
    with(app.textDefaults){
        alignToBaseline = false;        // align to baseline grid
        try {
    //        appliedFont = app.fonts.item("Times New Roman");
            appliedFont = app.fonts.item("Helvetica");
        catch (e) {}
        try {
            fontStyle = "Medium";
        catch (e) {}
        autoleading = 100;
        balanceRaggedLines = false;
        baselineShift = 0;
        capitalization = Capitalization.normal;
        composer = "Adobe Paragraph Composer";
        desiredGlyphScaling = 100;
        desiredLetterSpacing = 0;
        desiredWordSpacing = 100;
        dropCapCharacters = 0;
        if (dropCapCharacters != 0) {
            dropCapLines = 3;
            //Assumes that the application has a default character style named "myDropCap"
            //dropCapStyle = app.characterStyles.item("myDropCap");
        fillColor = app.colors.item("Black");
        fillTint = 100;
        firstLineIndent = "0pt";
    //    firstLineIndent = "14pt";
        gridAlignFirstLineOnly = false;
        horizontalScale = 100;
        hyphenateAfterFirst = 3;
        hyphenateBeforeLast = 4;
        hyphenateCapitalizedWords = false;
        hyphenateLadderLimit = 1;
        hyphenateWordsLongerThan = 5;
        hyphenation = true;
        hyphenationZone = "3p";
        hyphenWeight = 9;
        justification = Justification.leftAlign;
        keepAllLinesTogether = false;
        keepLinesTogether = true;
        keepFirstLines = 2;
        keepLastLines = 2;
        keepWithNext = 0;
        kerningMethod = "Optical";
        kerningValue = 0;
        leading = 6.3;
    //    leading = 14;
        leftIndent = 0;
        ligatures = true;
        maximumGlyphScaling = 100;
        maximumLetterSpacing = 0;
        maximumWordSpacing = 160;
        minimumGlyphScaling = 100;
        minimumLetterSpacing = 0;
        minimumWordSpacing = 80;
        noBreak = false;
        otfContextualAlternate = true;
        otfDiscretionaryLigature = true;
        otfFigureStyle = OTFFigureStyle.proportionalOldstyle;
        otfFraction = true;
        otfHistorical = true;
        otfOrdinal = false;
        otfSlashedZero = true;
        otfSwash = false;
        otfTitling = false;
        overprintFill = false;
        overprintStroke = false;
        pointSize = 6.3;
    //    pointSize = 11;
        position = Position.normal;
        rightIndent = 0;
        ruleAbove = false;
        if(ruleAbove == true){
            ruleAboveColor = app.colors.item("Black");
            ruleAboveGapColor = app.swatches.item("None");
            ruleAboveGapOverprint = false;
            ruleAboveGapTint = 100;
            ruleAboveLeftIndent = 0;
            ruleAboveLineWeight = .25;
            ruleAboveOffset = 14;
            ruleAboveOverprint = false;
            ruleAboveRightIndent = 0;
            ruleAboveTint = 100;
            ruleAboveType = app.strokeStyles.item("Solid");
            ruleAboveWidth = RuleWidth.columnWidth;
        ruleBelow = false;
        if(ruleBelow == true){
            ruleBelowColor = app.colors.item("Black");
            ruleBelowGapColor = app.swatches.item("None");
            ruleBelowGapOverprint = false;
            ruleBelowGapTint = 100;
            ruleBelowLeftIndent = 0;
            ruleBelowLineWeight = .25;
            ruleBelowOffset = 0;
            ruleBelowOverprint = false;
            ruleBelowRightIndent = 0;
            ruleBelowTint = 100;
            ruleBelowType = app.strokeStyles.item("Solid");
            ruleBelowWidth = RuleWidth.columnWidth;
        singleWordJustification = SingleWordJustification.leftAlign;
        skew = 0;
        spaceAfter = 0;
        spaceBefore = 0;
        startParagraph = StartParagraph.anywhere;
        strikeThru = false;
        if(strikeThru == true){
            strikeThroughColor = app.colors.item("Black");
            strikeThroughGapColor = app.swatches.item("None");
            strikeThroughGapOverprint = false;
            strikeThroughGapTint = 100;
            strikeThroughOffset = 3;
            strikeThroughOverprint = false;
            strikeThroughTint = 100;
            strikeThroughType = app.strokeStyles.item("Solid");
            strikeThroughWeight = .25;
        strokeColor = app.swatches.item("None");
        strokeTint = 100;
        strokeWeight = 0;
        tracking = 0;
        underline = false;
        if(underline == true){
            underlineColor = app.colors.item("Black");
            underlineGapColor = app.swatches.item("None");
            underlineGapOverprint = false;
            underlineGapTint = 100;
            underlineOffset = 3;
            underlineOverprint = false;
            underlineTint = 100;
            underlineType = app.strokeStyles.item("Solid");
            underlineWeight = .25
        verticalScale = 100;
    //Units & Increments preference panel
    //Must do this to make sure our units that we set are in points. The vert and horiz
    //units that get set default to the current measurement unit. We set it to points
    //so we can be sure of the value. We'll reset it later to the desired setting.
    with(app.viewPreferences){
        horizontalMeasurementUnits = MeasurementUnits.points;    // Ruler Units, horizontal
        verticalMeasurementUnits = MeasurementUnits.points;        // Ruler Units, vertical
    //General preference panel
    with(app.generalPreferences){
        pageNumbering = PageNumberingOptions.section;    // Page Numbering, View
        toolTips = ToolTipOptions.normal;                    // Tool Tips
    // Not supported in CS4
    //    toolsPalette = ToolsPaletteOptions.doubleColumn;    // Floating Tool Palette
        completeFontDownloadGlyphLimit = 2000;                // Always Subset Fonts...
        try {
            //Wrapped in try/catch in case it is run with CS4 and earlier to avoid the error
            preventSelectingLockedItems = false;                // Needed for CS5+
        catch (e) {}
    //Type preference panel
    with (app.textEditingPreferences){
        tripleClickSelectsLine = true;    // Triple Click to Select a Line
        smartCutAndPaste = true;        // Adjust Spacing Automatically when Cutting and Pasting Words
        dragAndDropTextInLayout = false;    // Enable in Layout View
        allowDragAndDropTextInStory = true;    // Enable in Story Editor
    with(app.textPreferences){
        typographersQuotes = true;            // Use Typographer's Quotes
        useOpticalSize = true;                // Automatically Use Correct Optical Size
        scalingAdjustsText = true;            // Adjust Text Attributes when Scaling
        useParagraphLeading = false;    // Apply Leading to Entire Paragraphs
        linkTextFilesWhenImporting = false;    // Create Links when Placing Text and Spreadsheet Files
    // Missing following (Font Preview Size, Past All Information/Text Only)
    //Advanced Type preference panel
    with(app.textPreferences){
        superscriptSize = 58.3;                // Superscript, size
        superscriptPosition = 33.3;            // Superscript, position
        subscriptSize = 58.3;                // Subscript, size
        subscriptPosition = 33.3;            // Subscript, position
        smallCap = 70;                        // Smallcap
    with(app.imePreferences){
        inlineInput = false;                // Use Inline Input for Non-Latin Text
    //Composition preference panel
    with(app.textPreferences){
        highlightKeeps = false;                    // Keep Violations
        highlightHjViolations = false;            // H&J Violations
        highlightCustomSpacing = false;            // Custom Tracking/Kerning
        highlightSubstitutedFonts = true;    // Substituted Fonts
        highlightSubstitutedGlyphs = false;    // Substituted Glyphs
        justifyTextWraps = false;                // Justify Text Next to an Object
        abutTextToTextWrap = true;                // Skip by Leading
        zOrderTextWrap = false;                    // Text Wrap Only Affects Text Beneath
    //Units & Increments preference panel
    with(app.viewPreferences){
        rulerOrigin = RulerOrigin.spreadOrigin;                    // Ruler Units, origin
    //    These are set at the end of the script after all the changes have been made
    //    horizontalMeasurementUnits = MeasurementUnits.points;    // Ruler Units, horizontal
    //    verticalMeasurementUnits = MeasurementUnits.inches;        // Ruler Units, vertical
        pointsPerInch = 72;                    // Point/Pica Size, Points/Inch
        cursorKeyIncrement = 1;                // Keyboard Increment, Cursor Key
    with(app.textPreferences){
        baselineShiftKeyIncrement = 2;    // Keyboard Increment, Baseline Shift
        leadingKeyIncrement = 2;        // Keyboard Increment, Size/Leading
        kerningKeyIncrement = 20;            // Keyboard Increment, Kerning
    //Grids preference panel
    with(app.gridPreferences){
        baselineColor = UIColors.lightBlue;    // Baseline Grid, Color
        baselineStart = 48;                        // Baseline Grid, Start
        baselineDivision = 6;                    // Baseline Grid, Increment Every
        baselineViewThreshold = 50;                // Baseline Grid, View Threshold
        baselineGridRelativeOption = BaselineGridRelativeOption.topOfPageOfBaselineGridRelativeOption;    // Baseline Grid, Relative To
        gridColor = UIColors.lightGray;            // Document Grid, Color
        horizontalGridlineDivision = 12;    // Document Grid, Horizontal, Gridline Every
        horizontalGridSubdivision = 12;            // Document Grid, Horizontal, Subdivisions
        verticalGridlineDivision = 12;            // Document Gird, Vertical, Gridline Every
        verticalGridSubdivision = 12;            // Document Grid, Vertical, Subdivisions
        gridsInBack = true;                        // Grids in Back
        documentGridSnapto = false;                // snap to grid or not
        documentGridShown = false;                // show document grid
    //Guides & Pasteboard preference panel
    with(app.documentPreferences){
        marginGuideColor = UIColors.violet;                // Color, Margins
        columnGuideColor = UIColors.magenta;            // Color, Columns
    with(app.pasteboardPreferences){
        bleedGuideColor = UIColors.fiesta;                // Color, Bleed
        slugGuideColor = UIColors.gridBlue;                // Color, Slug
        previewBackgroundColor = UIColors.lightGray;    // Color, Preview Background
        minimumSpaceAboveAndBelow = 72;                    // Minimum Vertical Offset
    with(app.viewPreferences){
        guideSnaptoZone = 4;                            // Snap to Zone
    with(app.guidePreferences){
        guidesInBack = false;                            // Guides in Back
    //Dictionary preference panel
    with(app.dictionaryPreferences){
        composition = ComposeUsing.both;    // Hyphenatin Exceptions, Compose Using
        mergeUserDictionary = false;    // Merge User Dictionary into Document
        recomposeWhenChanged = true;    // Recompose All Stories When Modified
    // Missing (Lang, Hyph, Spelling, Double Quotes, Single Quotes)
    //Spelling preference panel
    with(app.spellPreferences){
        checkMisspelledWords = true;                    // Find, Misspelled Words
        checkRepeatedWords = true;                        // Find, Repeated Words
        checkCapitalizedWords = true;                    // Find, Uncapitalized Words
        checkCapitalizedSentences = true;                // Find, Uncapitalized Sentences
        dynamicSpellCheck = true;                        // Enable Dynamic Spelling
        misspelledWordColor = UIColors.red;                // Color, Misspelled Words
        repeatedWordColor = UIColors.green;                // Color, Repeated Words
        uncapitalizedWordColor = UIColors.green;    // Color, Uncapitalized Words
        uncapitalizedSentenceColor = UIColors.green;    // Color, Uncapitalized Sentences
    //Autocorrect preference panel
    with(app.autoCorrectPreferences){
        autoCorrect = true;                            // Enable Autocorrect
        autoCorrectCapitalizationErrors = false;    // Autocorrect Capitalization
    // Missing (Language, Misspelled word pairs)
    //Display Performance preference panel
    with(app.displayPerformancePreferences){
        defaultDisplaySettings = ViewDisplaySettings.typical;    // Preserve Object-Level
        persistLocalSettings = false;
    // Missing (antialiasiing, greek below
    //Story Editor Display preference panel
    with(app.galleyPreferences){
        textColor = InCopyUIColors.black;                // Text Color
        backgroundColor = InCopyUIColors.white;            // Background
        smoothText = true;                                // Enable Anti-Aliasing
        antiAliasType = AntiAliasType.grayAntialiasing;    // Type
        cursorType = CursorTypes.standardCursor;    // Cursor Type
        blinkCursor = true;                                // Blink
    // Missing (Font, Size, Line Spacing & Theme)
    //File Handling preference panel
    with(app.generalPreferences){
        includePreview = true;                        // Always Save Preview Images with Doc
        previewSize = PreviewSizeOptions.medium;    // Preview Size
    with(app.clipboardPreferences){
        preferPDFWhenPasting = false;                // Prefer PDF When Pasting
        copyPDFToClipboard = true;                    // Copy PDF to Clipboard
        preservePdfClipboardAtQuit = false;            // Preserve PDF Data at Quit
    // Missing (Enable Version Cue)
    //    Optical margin (hanging punctuation, outside margins)
    with(app.storyPreferences){
        opticalMarginAlignment = false;
        opticalMarginSize = 12;                // pts
    //Wrap Up (do at end of script)
    //Units & Increments preference panel
    //Must do this to make sure our units that we set are in points. The vert and horiz
    //units that get set default to the current measurement unit. We set it to points
    //so we can be sure of the value. We'll reset it later to the desired setting.
    with(app.viewPreferences){
        horizontalMeasurementUnits = MeasurementUnits.picas;    // Ruler Units, horizontal
        verticalMeasurementUnits = MeasurementUnits.inches;    // Ruler Units, vertical
    //    These two flags are turned off to avoid the error message about
    //    missing image links when InDesign opens an ad. This can especially
    //    be a problem when doing batch processes.
    with(app.linkingPreferences){
        checkLinksAtOpen = false;            // checkbox: true/false
        findMissingLinksAtOpen = false;        // checkbox: true/false

  • How to maintained the Text  language for CKF keyfigure

    Dear All,
    Please let me know how to maintained the text language for CKF I am using only keyfigures in CKF.
    Issue is text is not showing in Spain language when user exeuted the report (longin Spain) for CKF keyfigures .
    As per report design there are formuals and direct keyfigures and CKF has defined and we keep it under in Row struture in the report.
    After exeuted the report (Login Spain)Text has converted in all languages along with spain except for CKF keyfigures.
    Issue in text CKF's:
    There is a main  CKF (Cost) under this again we defined two sub CKF's those are total cost and average cost. We able to see the text in Spain language for Main CKF(cost) and also cheked in RSZELTTXT(Texts of reporting component elements) for the same.
    We can able to see the text in all languages for main CKF(cost) and enteries are there in RSZELTTXT table.
    We can see only  the text in english for  total cost and average cost and also enteris are there only in EN in RSZELTTXT table.
    It would help to me if any one can answer my question.
    Thanks in advance .
    Regards,
    MQ

    U can fetch the texts for the items using
    Read_text.
    Example:
        g_f_tdname = xvttp-vbeln.
        g_f_obj = p_obj.
        g_f_langu = 'DE'.
        REFRESH g_t_lines.
        CLEAR g_t_lines.
        CALL FUNCTION 'READ_TEXT'
             EXPORTING
                  id                      = p_var
                  language                = g_f_langu
                  name                    = g_f_tdname
                  object                  = g_f_obj
             TABLES
                  lines                   = g_t_lines
             EXCEPTIONS
                  id                      = 1
                  language                = 2
                  name                    = 3
                  not_found               = 4
                  object                  = 5
                  reference_check         = 6
                  wrong_access_to_archive = 7
                  OTHERS                  = 8.
        IF sy-subrc <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    The Required fields are,
    Text-id ,language,name,object.
    Let me know if you further require help.
    Regards

  • Is Japanese language option available when I subscribed to Creative Cloud in abroad?

    Recently I renewed my Creative Cloud membership with full-paid one year subscription. When I bought the subscription last year, I bought it by upgrading from CS3 through discount campaign. I could use Japanese language option since my CS3 was a Japanese version. However, when I updated to CC from CS6 yesterday, all the sudden I could no longer use any applications in Japanese. Because I'm using Mac OSX 10.8 with a Japanese operating system, I need the Japanese language option particularly when editing Japanese text.   
    If anyone living in the abroad as a foreigner plans to purchase Creative Cloud membership, they should be able to use any applications in their own native language, shouldn't they? I'm really disappointed this major upgrade if this couldn't provide a multi-linguistic platform.

    Hide-sobue which country/region did you purchase your subscription?  You can find information on the type of subscription you have under your account at http://www.adobe.com/.  For information on how to manage your subscription please see http://forums.adobe.com/thread/1146459.
    Have you subscribe to a multi-language subscription or English only?

  • Illustrator CC 2014 Graph function, SVG conversion to text outline option for web Firefox etc. compatibility

    In order to have Firefox and other browsers display text as designed in Illustrator, I've been converting text to outline when exporting to SVG. It's not ideal but it works generally - except now I am using the graphing function and it won't create outline fonts even when that option is selected.
    I've not been able to break the link with the graph function, e.g. by exporting to SVG or EPS and then opening those files and trying to export to SVG from there.
    Any suggestions e.g. about other ways of forcing illustrator to break the link with the graph data function - I'd keep the original file, this is just about getting a SVG file that will display text as intended in all browsers
    Cheers, Malcolm

    Make a copy of the AI file, select the graph object and expand is one way of doing it. You might also find this interesting, esp the later messages
    Does anybody know why type might render strangely when viewing a PDF in Chrome, Firefox and IE?

  • How to convert text to outline in photoshop elements 11

    I need to give my business card file to my printer to print, and for some reason I cannot find the convert text to shape option (it is not visible under layer-type as all my googling suggests). I basically need to do this as the printer doesnt have my font.
    Thanks so much.

    That option is one of the many tools provided by the affordable Elements+ add-on:
    http://elementsplus.net/
    In the Paths section:
    http://elementsplus.net/v6/en/path-from-selection.htm

  • CS5 Chinese to English Language Option?

    Hi everybody,
    I'm an English native currently living in Taiwan, and I'd like to purchase CS5, but there are only Chinese copies available to buy.
    My question is: does the installation DVD come with an English language option?
    I've reading Adobe's specs and I guess not, but I found some posts here that suggest there's an English fallback option by placing a specially named text file in a certain location post-installation.
    Just to be clear, I don't want to use two installation languages, it's just there's no choice at purchase, and my Chinese isn't good enough (yet ) to understand all the technical interface terms.
    Thanks in advance.
    Jonti

    Hi,
    I just want to share my experiences with the above posted problems and possible solutions. Do not hesitate to correct me if I'm wrong!!! And sorry for the mixture of problems and the long post
    Lock Screen I was able to reactivate the Bubbles UI Lock Screen by changing the default language from German to English US. I really don't know why this works, but it works. Now I can see the Bubbles UI on the Lock Screen. That's a nice feature, but I'm not sure if they are able to learn. The displayed applications are not the one I use really often. We will see....
    FDD-LTE:B3, B7 MHZ which are integrated in a Vibe X2 CU version should work in Europe or in Germany, respectively. So if the phone provider supports FDD-LTE:B3, B7 there should be a 4G signal even in a Vibe X2 with a CU rom version. I haven't found a signal yet. But I keep trying. And I will improve my physical fitness by running around and looking for a 4G signal
    Theme center and Mobile assistant To my knowledge there is no simple or easy way to change the Chinese language into English language or to connect the applications to other Lenovo servers which provide the English language. At the moment possible ways to deal with the problem are:
    Wait and look for a EU rom version for X2-CU model which also supports dual-sim.
    Learn either Chinese or prepare yourself to root your phone with a new EU version (if available). But be careful you will lost your warranty if you do so and probably brick your phone if your are not competent enough to root a mobile phone
    Don't buy a Vibe X2-TO or X2-CU if your are not able to read and understand Chinese and if you would like  to enjoy the full functionality of a Vibe X2
    If you know better solutions, information's or ideas please do not hesitate to share!!! There will be many users and Lenovo friends from different markets who will be very happy!!!
    Best regards
    Lenovo Vibe X2
    32GB
    Android 4.4.2

  • Facebook sets the value of spellchecker.dictionary to ru_RU every time I start entering text (language doesn't matter) in a textbox on FB

    Facebook sets the value of <spellchecker.dictionary> to <ru_RU> every time I start entering text (language doesn't matter) in a textbox on FB.
    FF: Firefox 20.0 - Mozilla Firefox for Linux Mint
    OS: Linux Mint 13
    I haven't noticed any other website I use causing that problem: all of them use the predefined (in prefs.js) value of <spellchecker.dictionary> and don't change it unless I change the speller language manually.
    The only way I can change the value of <spellchecker.dictionary> back to <en_US> is manually choosing English in context menu of a textbox, or editing "prefs.js", every time Facebook messes it up.
    Why does FB always sets <spellchecker.dictionary> to <ru_RU>???
    My default locale is "en-US": <general.useragent.locale> = "en-US".
    Please help.

    Websites should not be able to change a pref setting.<br />
    Only an extension can do this.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    What is the order of the installed languages?
    You can check the order of the installed Languages.
    *Tools > Options > Content > Languages

  • How to provide text formatting options to user from a text field

    Hi,
    My requirement is - in the interactive form, a comments field needs to be provided where user should be able to enter text with formatting options like
    Headers
    indentations
    bold/italic
    bullet points and numbers
    Once user enters the formatted texts in a text field, data needs to be displayed/printed in the same format. Could you help me on how to provide these formatting options to the user for a particular text field?
    I understand that once I define the text field with format XHTML (with RTF), user formatting can be captured and displayed in the same way. But I am not sure on how to provide the formatting options for the text field.
    Thank you,
    Madhu

    Hi,
    if you select a text field for Rich Text and the press Ctrl + E you'll get a bar for all available text formatting options in Acrobat/Reader.

  • Text Wrap Options have Disappeared ID CS4

    All the icons in my Text Wrap window have disappeared. The tab/pallet is still there, but empty. The pop out still lists “Show Options” and “Apply to Master Page Only” are still there, but grayed out. Thanks in advance for any help!!

    Yipee.
    Should have remembered that one.
    Thanks for the help!
    wally
    = = = = = = = = = = = = = =
    Wally Flick
    Director Creative Services
    [email protected]
    314-854-0718 (voice)
    847-953-0774 (fax)
    Designer's Corner
    Designer's Blog
    www.aon.com
    BobLevine <[email protected]>
    02/01/2010 04:55 PM
    Please respond to
    [email protected]
    To
    Walter Flick <[email protected]>
    cc
    Subject
    Text Wrap Options have Disappeared ID CS4
    http://forums.adobe.com/thread/526990
    Bob

  • Text Wrap options not showing in InDesign CS3

    Using InDesign CS3 on a Mac 10.4.  I've had this problem for a couple of months now and it's getting past the point of annoying.  When I open my text wrap options pallete it's blank even when I expand options.  I can see the text wrap icons in my header panel, but I no longer have options to change the right/left/top/bottom margins.  Just a general "add wrap" and "remove wrap".  Is there any way I can get my pallete back?  I've tried defaulting my tools, but still it does not show up.  I don't know what to do to get it back.

    Did you try resetting preferences? While pressing Shift+Option+Command+Control, start InDesign. Click Yes when asked if you want to delete preference files. If you don't get the message about deleting preferences, you weren't fast enough.
    http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6d1e.html
    Ken

  • Text formatting options

    Hi,
    Is there a list somewhere which outlines more text formatting options than what is shown in the FAQ?
    In particular I'm wondering how to make text that does not suppress white space other than using the "code" tag.
    Also, the insert link option a shown above does not seem to work, or am I just stupid?
    Thanks.

    Dude wrote:
    Also, the insert link option a shown above does not seem to work, or am I just stupid?That one has not been working for a couple of years or so. There should be a thread about it in this forum.
    Instead, I'm using [ url=<insert link here> ] text [ /url ] (without the extra spaces in tags). Normal html link tag might work as well.

Maybe you are looking for

  • HT201250 how do i add external hard drive to my time machine back up

    how do i add external hard drive to my time machine back up so that I may view the files independently on apple tv please?

  • Can't import JSF taglibs?

    can't import JSF taglibs? I'm newbie in JSF tryig to write simple example from as result server error org.apache.jasper.JasperException: An exception occurred processing JSP page /main.jsp at line 4 1: <?xml version="1.0" encoding="UTF-8"?> 2: <%@tag

  • Vendor Transfer ALE failing

    we're transferring vendors from our ECC 6 client to a new GTS client using ALE. The distribution model looks good - we're using /SAPSLL/CREMAS_SLL to transfer the vendors. The data is being sent from the feeder just fine. but it's erroring on the rec

  • Best way to move data and programs to another profile on same Mac?

    Hello, What is the best way to move data and programs to another profile on the same Mac? I have a user who's profile is corrupt, I know that most programs will work on both the new and old profile however when trying to copy the Desktop folder, or D

  • Uploading excel file into internal table with field length more than 255

    I am trying to upload the data from an excel file through function module 'TEXT_CONVERT_XLS_TO_SAP'. I have tested by changing the field type from string, and char2000. But it is accepting only 255 chars from the cell content. How to get the total co