Incorrect Character Print out

I have through eprint to print out Chinese character on the Tiltle and content, but the print out was dispalyed some of unexpected symbols. And after I logon to eprint website, the Chinese character title can be display correctly, Could you help me to solve it? Thanks
Printer MODEL:MFP1536-DNF

Hi,
Most likely due to fonts. Your machine may have those fonts therefore you can see properly BUT the ePrint may not. My suggestion: change to another font and try again.
Regards,
BH
**Click the KUDOS thumb up on the left to say 'Thanks'**
Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Similar Messages

  • Infix to postfix printing out incorrectly sometimes..any ideas?

    alright, my program this time is to make an infix to postfix converter.
    I have it coded, and it works fine except when I use parenthesis. I'm supposed to test it with these expressions:
    a + b
    a * b + c
    a * ( b + c )
    a + b * c - d
    ( a + b ) * ( c - d )
    a - ( b - ( v - ( d - ( e - f ))))
         // initialize two stacks: operator and operand
         private Stack operatorStack = new Stack();
         private Stack operandStack = new Stack();
         // method converts infix expression to postfix notation
         public String toPostfix(String infix)
              StringTokenizer s = new StringTokenizer(infix);
              // divides the input into tokens for input
              String symbol, postfix = "";
              while (s.hasMoreTokens())
              // while there is input to be read
                   symbol = s.nextToken();
                   // if it's a number, add it to the string
                   if (Character.isDigit(symbol.charAt(0)))
                        postfix = postfix + " " + (Integer.parseInt(symbol));
                   else if (symbol.equals("("))
                   // push "("
                        Character operator = new Character('(');
                        operatorStack.push(operator);
                   else if (symbol.equals(")"))
                   // push everything back to "("
                        /** ERROR OCCURS HERE !!!! **/
                                 while (((Character)operatorStack.peek()).charValue() != '(')
                             postfix = postfix + " " + operatorStack.pop();
                        operatorStack.pop();
                   else
                   // print operatorStack occurring before it that have greater precedence
                        while (!operatorStack.isEmpty() && !(operatorStack.peek()).equals("(") && prec(symbol.charAt(0)) <= prec(((Character)operatorStack.peek()).charValue()))
                             postfix = postfix + " " + operatorStack.pop();
                        Character operator = new Character(symbol.charAt(0));
                        operatorStack.push(operator);
              while (!operatorStack.isEmpty())
                   postfix = postfix + " " + operatorStack.pop();
              return postfix;
    // method compares operators to establish precedence
         public int prec(char x)
              if (x == '+' || x == '-')
                   return 1;
              if (x == '*' || x == '/' || x == '%')
                   return 2;
              return 3;
    /** MY STACK **/
    import java.util.LinkedList;
    public class StackL {
      private LinkedList list = new LinkedList();
      public void push(Object v) {
        list.addFirst(v);
      public Object peek() {
        return list.getFirst();
      public Object pop() {
        return list.removeFirst();
      public boolean isEmpty()
          return (list.size() == 0);
    }weird, it erased my question/errors I put in...
    When I use any of the expressions with parenthesis (except the 2nd to last one) I get an emptystackexception pointing to the area noted in the code.
    When I test the 2nd to last one (the one I would expect it to give me the most trouble) it prints out an answer, but it is incorrect. It prints out this : "Expression in postfix: a ( b - ( c - ( d - ( e - f ) -" which is incorrect, as it hsould have no parenthesis
    Edited by: Taco_John on Apr 6, 2008 12:46 PM
    Edited by: Taco_John on Apr 6, 2008 12:47 PM
    Edited by: Taco_John on Apr 6, 2008 12:49 PM

    the algorithm we were told to use is here:
    While not stack error and not the end of infix expression
    a.) Extract the next input token from the infix expression (can be constant value, variable, arithmetic operator, left or right parenthesis)
    b.) If token is
    - left parenthesis : push it onto the stack
    - right parenthesis : pop and display stack elements until the left parenthesis is popped (don't sisplay right parenthesis). It's an error if stack becomes empty with no matching right parenthesis found.
    - Operator : if the stack is empty or token is higher priority than the top element, push it onto the stack. Otherwise, pop and display the top stack element and repeat comparison of token with new top element
    Note : left parenthesis in the stack is assumed to have a lower priority than any operator.
    - operand : display it
    When the end of the infix expression is reached, pop and display remaining stack elements until it is empty.
    it works fine on anything without a parenthesis, and it prints an answer (however it is incorrect) for the a - (b-(c-(d-(e-f)))) expression.
    still looking for an idea if I can get one
    Ok, I just noticed this. If i do a * ( b + c ) I get the error. But if I type " a * ( ( b + c ))" with spaces between the left parenthesis and adding an extra parenthesis as well, and NOT spacing the right parenthesis, I get a result that works just like that 2nd to last was doing. So it's something about the spaces...The answer is incorrect when I use the parenthesis as well. So it's not ignoring white space correctly for some reason and it's printing incorrect answers when I use parenthesis.

  • Printing out a character set

    The old ALDUS PageMaker (circa 1992) used to have a file that printed out all the characters in a font - you merely changed the font to see all the characters; i.e., times roman showed all the characters in that font, changing to symbol showed all the characters in the symbol font. It listed 255 characters available. It was called Character Set Publication. I cannot find this file in any CS2-5 programs. And the "help" is worthless. Anybody have one of these or know where it is kept in the program? I probably won't be calling up this "Adobe Community Help" again, so please email me at [email address deleted by host] - and Thanks!

    Simply use a font manager. They all have options to print font sets.
    Mylenium

  • Colors print out incorrectly

    When I print out an Illustrator file the color on the paper appears different then on Illustrator. Sometimes it might even be the same exact color, but it would print in two different shades of that color. How can I resolve?
    Any help would be greatly appreciated, thanks!

    Calibrate and profile your monitor, turn off color management in your printer driver, let Photoshop manage color and assign the correct ICC profile for your ink/paper combination.
    Let us know if that doesn't work.

  • #(hash) sign printed out for spaces material description in PO

    Hi All,
    I have problem with my sapscript form for PO, when preview, the material description is ok
    but when print out,  the space between the word of the material description become # sign like
    Leif#Eriksson#1oz#Silver#Coin###, this not happen to all item, only for certain material.
    When checked, these material are not created manually in system but is uploaded by BDC.
    In material master screen, there are no #sign either.
    Any solution or what should I check ?
    Thanks

    Well, as you've probably discovered by searching the forums, the # is a substitution for an unprintable character.   I would look at the data value in debug, convert that to a hex value with a chart, and see what needed to be done to either clean up the data values or substitute a space for whatever character(s) the # values represent in the output.

  • Why can't I print out the body of my emails,they come out with the right missing.

    When ever I try to print out my emails(gmail) everything under the Mail column prints,but the right side is missing. I have tried everything I know and nothing works. I can't move it over and I can use the print selection. Also I can't print out the entire email if it is more than 1 page.

    First try to reset Firefox printer settings, if you are still unable to print you can then reset '''all '''firefox printer settings.
    ''Reset firefox printer settings:''
    1. In the Location bar, type about:config and press Enter.
    2. In the Filter field, type print.print_printer.
    3. Right-click on the print.print_printer setting and select Reset.
    4. At the top of the Firefox window, click on the Firefox button (File menu in Windows XP) and then click Exit.
    ''The first way was just simple reset of firefox printer settings. However, if it failed to solve the problem then you need a full reset of all firefox printer settings. ''
    1. Open your profile folder: At the top of the Firefox window, click on the Firefox button, go over to the Help menu (on Windows XP, click on the Help menu) and select Troubleshooting Information. The Troubleshooting Information tab will open.
    2. Under the Application Basics section, click on Open Containing Folder. A window with your profile files will open. Note: If you are unable to open or use Fire​fox, follow the instructions in Finding your profile without opening Firefox.
    3. At the top of the Firefox window, click on the Firefox button (File menu in Windows XP) and then click Exit.
    4. In your profile folder, copy the prefs.js file to another folder to make a backup of it.
    5. Open the original prefs.js file in a text editor (such as Wordpad).
    6. Remove all lines in prefs.js that start with print. and save the file.
    See:
    [[Firefox prints incorrectly]]

  • Why can't I print out google maps on my hp photosmart premium c410?

    I'm set up wireless and it works good except when I try to print out a map from google maps and sometimes from yahoo maps. Can someone help with this? I also have a hp 1350 all in one I have to usb plug in when printing from google maps. I'm running win7 64bit home premium.

    What happens when you print from those map programs? Does it fail to print or is the size incorrect? 
    If it is a size/formatting issue, then this document may help:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=buu01105&cc=us&dlc=en&lc=en
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • Can I print out the document formatting information for review

    Is there a way to print out, for example, all the paragraph format with their formatting details? I'd like the same for character formats, conditional text etc.?
    I'm a long time FrameMaker use and have built numerous templates over the years. The one thing I always found missing was the ability to printout a list of the various formats so that you can review them (much more easily one at a time on screen) to make sure they all have the correct settings. MS Word, back in the DOS days, had this capability and it was fast and efficient way of double checking all the formatting.
    Does this functionality exist in FrameMaker? Or are there any utilities out there that would do this?
    Thanks,
    Inge

    The Format List utility from Squidds does this really well. It creates
    tables that contain the various formats and their settings. It's really
    easy to look down a column and see which paragraph or character formats
    use, for example, a particular font or space above setting. Format List
    is one of the Finalyser utilities.
    The Squidds website is notoriously user unfriendly, but here is a link
    for the price lists page. If you can find the right list for your
    FrameMaker version, it will give you prices for the complete Finalyser
    or Toolbox utility set, and prices for the individual utilities. I
    believe Format List is $49 USD.
    http://www.squidds.de/en/products/price-lists-order-form.html#c321
    It seems like someone else makes a utility that creates a separate
    one-column table for each format. I can't seem to find that one. Perhaps
    someone else remembers what it is. Separate tables are not nearly as
    easy to use for comparison, though.

  • Error during COA print out from QC21

    Hi All.
    I am facing an error during COA print out form Trx.QC21.
    The error along with it's diagnosis is paster here.
    Message no. QC138
    Diagnosis
    No data is printed for batch number A070030 material 000000000550000063 , plant 1001.
    This can be caused by the following:
    Not all data was found for a characteristic in the certificate profile that is marked as obligatory.
    No requested data was found for any characteristic in the certificate profile.
    System Response
    The creation of the certificate profile is canceled.
    If the certificate is for a delivery item, the status of the message is set to Incorrectly processed.
    I have:
    Created the profile
    Assigned the material to it.
    The same MICs are maintained in the I.Plan, Lot, Profile.
    The profile is released.
    Pls HELP!!!!!
    With Best Regards,
    Shyamal Joshi

    Hi Shymal,
    after reading above thread i tried the cycle and succeed only thing i used MIC as ref. char.
    just ensure following thingsss.... i wil suggest u try with new data
    i wil brief with T_code for other reader also.
    1. activate material  with batch mangt. (MM01)
    2. create Batch wrt above above matl. (MSC1)
    3. create Char (CT04)
    4. create class (Cl02)
    5. create MIC with class char. (QS21) (i think here u used copy model MIC)
    6. create cert. profile (QC01 with above MIC)
    7. assign matl. to above cert. profile (QC15)
    8.Create Insp. Plan (QP01 with above MIC only)
    9.create insp. lot (auto or QA01)
    10.Do RR, UD (QA32) click on cert. (OR QC22) view Print preview by giving proper inputs.
    hope this wil help.......
    SANTOSH KAMBLE

  • PO print OUT And material Document Print Out is coming In English

    HI all.
    I have Created Vendor In ZH(chinese Language,)and in material master I have maintained description in Chinese language.
    I'M taking PO and material Documents print outs  in Chinese Server log-in.
    even Though Im taking Print outs in Chinese Log-In server, IM getting Print outs in English Language only not In chines language..
    At the Time Of PO creation the Communication Language is ZH(Chines)..
    I have read some related post even 89899..
    But I have not find solution
    plz help me.
    thanks and regards
    ramesh reddy.'

    Check SAP Note 894444 - Tool for server-based printing on Windows (SAPSprint) for your requirement,
      Installation
    Before you install SAPSprint, delete SAPLPD manually. To do this, you normally need to completely delete the installation directory only. If you installed SAPLPD as a service using the srvany tool, you can remove the service by calling 'Instsrv SAPLPD remove'.
    You can download SAPSprint as a self-extracting executable file from SAP Service Marketplace:
    1. Entry by Application Group (on the left)
    2. SAP Frontend Components (on the right)
    3. SAPSPRINT (on the right)
    4. SAPSPRINT <Release> (on the right)
    5. SAPSPRINT <Release> (on the right)
    6. Win32 (on the right)
    Start the program. After you enter the installation path, the system prompts you to enter the TCP/IP port.
    Normally, the default setting of 515 is suitable for the port. You should only change this setting if the Windows TCP/IP print service is also running on the computer. The SAPSprint Windows service starts as soon as the installation is over.
    We recommend that you set up the following options for the service in the Windows Service Control Manager:
    The service should run under a domain user that has the relevant authorizations for the required printers. After the installation, the service runs under "Local system account". This can access locally-defined printers only. You can set the user in the Windows Service Control Manager, in the options of the SAPSprint service.
    If you want to delete SAPSprint, you can do so using the normal Windows uninstall tool.
    We recommend that you install the SAPSprint service on a separate computer and not together with a SAP system, especially if you use a large number of printers. All printers that SAPSprint uses must be installed on the SAPSprint computer. This applies particularly to released printers from other computers. These should be installed as a queue on the SAPSprint server.
    Also note further settings in accordance with Note 1069483.
    Settings
    You can display the call parameters available for SAPSprint by calling 'sapsprint -?' on the command line. The most important parameters are those that set options, especially log options for troubleshooting.
    You can set the log level to 5 by specifying 'sapsprint -oi LogLevel 5'. Immediately after installation, no log level is set up, which means that no log file is created. By setting the log level to 1, 5, or 9, you can ensure that more information is available in the directory that you specified during the installation. A file called sapsprint.dbg and a print job specific file with a variable name are generated. The second file is deleted after successful printing. It is only retained if the printout is recognized as incorrect. If you set the option 'sapsprint -oi KeepFile 1', then both this file and the print file are retained. This is primarily intended for troubleshooting by SAP Support.
    All options are case-sensitive. You can display the most important SAPSprint options by calling 'sapsprint -?'. All possible options are described in Note 85469. Normally, the options described there are not necessary - you should use them only in exceptional circumstances.

  • Chinese Character Printing in Smartform (Different Question)

    Hi all,
    Can anyone explain to me further the OSS Note 776507 that Anji Reddy Vangala recently posted?  It involves the preview and printing of different character sets.  Currently I've managed to preview my form correctly, but it still prints out #'s.  Do I need to re-assign the fonts to the printer device or something, or do I need to use a different printer?  The printer I am currently using is an HP 2100.  Please please help, anyone?
    <b>EDIT:</b> Probably a better question would be how to map the conversion font of CNSONG to something that can be read by the printer?
    A copy of the note for everyone's reference:
    OSS Note: 776507
    Symptom
    Documents printed via SAPscript or SmartForms do not print with correct special characters, e.g. ### prints instead of Japanese or Russian characters. What to do?
    Other terms
    SAPscript, SmartForms, printing, device types, OTF
    Reason and Prerequisites
    Help required to choose proper fonts in a SAPscript or SmartForm
    Solution
    When using SAPscript or SmartForms to print (or email or fax) a form from a business application, many factors influence the outcome of the actual text within the form. All these factors must be checked in order to ensure a correct printout:
    1) The language version of the form used to produce the printout.
    Example: If you want to print a French invoice, you need to have a FR version of your SAPscript or SmartForms invoice form RVINVOICE01. And the application program must specify the corresponding language key (FR) when calling the SAPscript or SmartForms API.
    2) The font selections specified in the form (possibly also in a SAPscript style or SmartStyle used in a form).
    Example: In a SAPscript form or a SmartStyle you need to specify HELVE if you want to print German text in Helvetica (or similar) font. If you want to print Japanese text, HELVE is not a valid choice but you need to specify a Japanese font like JPMINCHO in your Japanese form.
    3) The output character set of the device type
    Every printer in transaction SPAD has a "device type" assigned. Device types used by the spooler for printing support only one single specific output character set. All text from the form has to be converted (using SAP's built-in character conversion mechanism) to this output character set.
    A character set can typically support either a single language (e.g. Shift-JIS which supports only Japanese) or a set of languages (e.g. ISO 8859-1, which supports Western-European languages). It is possible that a given language (such as German) can be supported by several output character sets, e.g. you may use either ISO 8895-1 (Latin-1) or ISO 8859-2 (Latin-2) to represent German text. This is so because both character sets contain the special characters used in German.
    Example: HPLJ4000 is a HP LaserJet device type supporting the ISO 8859-1 (Latin-1) character set. ISO 8859-1 can be used to represent e.g. Dutch, English, French, German, Spanish, Swedish but NOT Russian or Japanese.
    As a consequence, it is ok to use HPLJ4000 to print English, German French etc. but not for Japanese or Russian.
    4) The set of available printer fonts for a given device type
    When formatting a document, SAPscript and SmartForms perform an automatic mapping of the font definitions in the form (e.g. "HELVE 14 point bold") and the available printer fonts of the device type. A replacement printer font is chosen, should the specified font selection not be available in the device type. Now this replacement can be problematic if a language-specific font, such as Chinese CNSONG, is specified in a form and it gets replaced by a font which does not support this language, e.g. COURIER.
    To solve this problem, font families in SE73 have language attribute assigned, e.g. some fonts are characterized as being suitable only for certain languages. And when a replacement has to be chosen because the original font from the form is not available in the device type, a replacement font is chosen which has the same language attributes.
    If no fonts for the language in question exist in the device type, the resulting font will not be able to print the special characters and you will see "wrong" output characters in the printout.
    Note on SAPscript/SmartForms Print Preview:
    The OTF Print Preview available in Windows GUI (e.g. from transaction SP01) will sometimes not show the "wrong" characters which appear on the final printout. Here is the reason: since the Print Preview runs in Windows environment, it will use Windows fonts to represent the actual printer fonts. A Windows font typically has more available characters (i.e. covers more character sets) than are actually available in a printer's resident font.
    A typical example where the Print Preview will differ from the printout is here: if you have a Chinese PCL5 printer such as CNHPLJ4 and use the Western Latin font COURIER in your document, the print preview will show you Chinese characters if you (by accident) tried to format Chinese characters in COURIER font. This is because Windows will automatically choose a font that can output Chinese characters (which is actually not Courier). But when you print the job on an actual PCL5 printer with resident Western and Chinese fonts, the Courier font will not print any Chinese characters but Western special characters instead, because the printer's resident Courier font does not include Chinese characters.
    Rule of thumb: all Asian device types (e.g. CNHPLJ4, JPHPLJ4, JPPOST, KPHPLJ4) support not only Asian fonts but also COURIER, HELVE and TIMES fonts. But these Latin fonts can only be used to print English text, not Chinese/Japanese/Korean characters.
    Which fonts are suitable for a given language?
    Language(s): Font family to use in a form:
    Latin-1 (Western Europe/Americas) *******
    DE,EN,FR,ES,NL,SV COURIER, HELVE, TIMES
    (LETGOTH, LNPRINT)
    Latin-2 (Central Europe) ****************
    PL, CZ COURIER, HELVE, TIMES
    ISO 8859-4 (Baltic) *********************
    ET, LT, LV COURIER, HELVE, TIMES
    ISO 8859-5 (Cyrillic) *******************
    BG, RU, SR, UK COURCYR, HELVCYR, TIMECYR
    ISO 8859-7 (Greek) **********************
    EL COUR_I7, HELV_I7, TIME_I7
    ISO 8859-8 (Hebrew) *********************
    HE COURIER, HELVE, TIMES
    ISO 8859-9 (Turkish) ********************
    TR COURIER, HELVE, TIMES
    Simplified Chinese **********************
    ZH CNHEI, CNKAI, CNSONG
    Japanese ********************************
    JA JPMINCHO, DBMINCHO, DBGOTHIC
    Korean **********************************
    KP KPBATANG, KPDODUM, KPGULIM
    KPGUNGSE, KPSAMMUL
    Traditional Chinese *********************
    ZF TWDPHEI, TWMING, TWSONG
    Thai ************************************
    TH THANGSAN, THDRAFT, THVIJIT
    Arabic (Unicode systems only) ***********
    AR ANDALE_J
    Verify your output by examining the OTF data
    When analysing printing problems of this type, be sure to check the OTF data which gets produced by SAPscript or SmartForms. OTF or "Output Text Format" is the intermediate page-description format generated from SAPscript or SmartForms. OTF will contain the final printer font names and character set/language identifiers which help to solve the problem. OTF will even name the form and the language of the form used to create the output.
    The easiest way to do this is to create a spool request from your application, run transaction SP01, use menu
    Goto->Display Requests->Settings
    and choose
    Display Mode: Raw
    Now display your spool request. If this is a SAPscript or SmartForms spool request, you will see OTF data. Each line represents one OTF command, every command starts with a 2-character cmd identifier and possibly some cmd parameters follow.
    Here is an excerpt from a sample OTF file where we highlight the most interesting commands:
    //XHPLJ8000 0700 00000000001
    IN04EALEXTEST_ZEBRA
    IN05%PAGE1
    OPDINA4 P 144 240 1683811906000010000100001
    IN06%WINDOW2
    MT0024401289
    CP11000000E
    FCHELVE 120 00109XSF100SF101110000067E X
    UL +0000000000000
    SW00067
    CT00000000
    ST0453037Dieses SF hat Stil ALEXTEST_ZEBRA mit
    The 1st line with the // (Control) command reveals the device type usedto print: HPLJ8000
    //XHPLJ8000 0700 00000000001
    The 2nd line (IN = Info command) shows the name and (internal 1-char)language key of the form:
    IN04EALEXTEST_ZEBRA
    In this case it is the English (E = EN) SmartForm ALEXTEST_ZEBRA
    The OP-line (OP = Open Page) gives the page format used in the form, it is DINA4 Portrait orientation:
    OPDINA4 P 144 240 1683811906000010000100001
    The CP (CodePage) cmd shows the SAP system codepage used to code the text and the active language. In our case it is codepage 1100 and language E = EN = English.
    CP11000000E
    Finally, the FC-cmd (Font Call) lists a printer font selected within SmartForms. Please note that every SmartForm has a designated default SmartStyle under "Form Attributes->Output Options". In addition, every text node can have a SmartStyle attached (which will override the definitions from the default style for the text). In our case the resulting printer font that was selected is HELVE 12.0 pt bold-off, italic-off.
    FCHELVE 120 00109XSF100SF101110000067E X<b></b><b></b><b></b>

    Hi,
    there a different things to know.
    I produce sapscript forms with cinese and english characters for frontend / backend and archiv printing.
    Please check:
    Editor displays ###: You have to install the chinese language in your e.g. windows-system to display them.
    Script: You have to chose the the font family "CNSONG" (customized for chinese simplified and LATIN).
    Transaction I18N: May you have to set correct subfonts for the unicode areas (Cascading fonts, Standard is Courier).
    You can print in different ways:
    For archiv/PDF: Install the unicode truetype font with chinese characters for the pdf-converter.
    For Frontend: Use the Frontendprinter SAPWIN or SAPWIN*CF (Cascading Font) to send it to the gui (note: SAPLPD does not support it, use the newer technology.....)
    Backend printing: POSTSCRIPT is not yet implemented :-((
    PLease note: What you see in spool / print preview is a simulation of the possible print, but backend print is not frontend preview!!!!
    Regards,
    Christian

  • Printing Non Modal External Window - print out additional blank page

    Hi All,
    I am printing out a content of a web dynpro view as a non modal external window with the browser print functionality.
    Even if the content of the web dynpro view is not more than the half of a page the browser print functionality prints 2 pages. The second page is a blank page.
    I tried to change the external window size in web dynpro, but it is still printing 2 pages.
    How can I set / configure the browser print functionality, so it prints only the page that contains the web dynpro view content?
    Thanks,
    Yasar

    Hi,
    I'm guessing the concurrent program is outputting text (character mode) as opposed to PDF?
    This could be a number of reasons:
    1. Printer driver issue, e.g. the number of lines printed on the page is more than is defined for the printer driver: Try reducing the "Rows" on the current program definition
    2. Printer PRT issue, extra page break could be being inserted.
    3. The "box" in the report definition containing the address could be being expanding due to the extra address line, but not enough space so it forces a new page to be printed.
    Gareth
    Blog: http://garethroberts.blogspot.com
    Web: http://www.virtuate.com

  • Print out lists of formats with their settings

    I would like the ability to print out a complete list of paragraph, character, table, and cross-reference formats (with their settings) for inclusion in a local style guide.

    Julee,
    Those files were .zip files wrapped in 7zip wrappers - very strange. Any way, I've attached the MIF_munch here in a single .zip file.
    Note: the file is named Mif_munch.zip.txt to fool the upload file type restrictions. Just delete the .txt extension and unzip.
    It might take a few hours or so to clear the scanning queue.

  • CR10 Exported MS word doc file not print out

    My application (CR10, VB6, Oracle10.2) exports MS word doc file to disk, But when I try to print out, not print out at some printer and print out legal size (8.5x14) at some printer. It set up as Letter (8.5x11) I think in CR, page footer is wrong place. How I can change page footer location to move up in the report?
    one more thing...
    When I try to open this MS doc file, always prompt pop up and ask "You want to convert to RTF?" I don't understand.
    Thank you.

    Sachiko,
    You might want to try exporting to MS Word from within the Crystal Reports Deisgner and see if you get the same behaviour. If it appears correctly from the Designer then it would suggest an issue with the coding in your application and the issue would be better answered in the BO SDK Application Development forums.
    I think the footer is in the wrong place due to the incorrect paper size and don't believe that any formatting of the report itself will correct it.

  • Photoshop Batch Bulk Print Action Printing Out of Order

    I have 900 files I need to print out. I created an action that simply prints the current document, then closes it. The problem is, photoshop is printing the files out in random order. The files are numerically ordered, it should print in order.
    I go to File -> Automate -> Batch and select the printing action that I recorded and set the folder that contains the image files. The image files are all labeled numerically from the data set merge I did within photoshop.
    The problem is, even though this list is in numerical order, photoshop will print these out in random order. For example, the file folder containing the image files is listed below in correct order.
    Instead photoshop printed them in this order: CustomMailer_Data Set 1, CustomMailer_Data Set 10, CustomMailer_Data Set 11, CustomMailer_Data Set 12, CustomMailer_Data Set 13, CustomMailer_Data Set 14, CustomMailer_Data Set 16
    Please help, I really need this bulk action to print them out in order, I have no idea what the program is doing.

    @Paul Riggott,
    Thanks for taking the time to write the script, I really appreciate it. However, I seem to be using it incorrectly since its not renaming my files.
    here is what I did.
    1. Launched Adobe ExtendScript & Pasted your code in
    2. Saved out script file to desktop
    3. Launch Photoshop, file ->script->browse to locate where script was saved to
    5. Select source file containing PSDs to rename
    Below shows the results.
    Tried running it directly within extend script as well with no luck.

Maybe you are looking for