9.0.3 - setting font for printing?

(9.0.3 Preview)
In the prefences for printing,
the only option for font name is "DialogInput"
and the only options for font size are 10,12.
I hope this is bug.
I'd like to be able to print with a different font, esp. 8pt.

We've limited the fonts in the printing options to only DialogInput 10, 12 pt only as we've had problems with incorrect output alignment under JDK 1.3. I had filed Sun bug #4625837 about 8 months ago, but Sun closed it as fixed in JDK 1.4 (which means they won't fix it in JDK 1.3). In 9.0.4, we're currently planning to update JDeveloper to run under JDK 1.4, so at that time we will update the fonts in the printing options to allow more choices. (JDeveloper 9.0.3 will let you compile JDK 1.4 programs, but JDev itself still currently runs with JDK 1.3.)
- Jimmy
JDeveloper Team

Similar Messages

  • Setting Font for converting multiple text files into PDF using VB 6.0

    Dear All,
    Am converting multiple text files into PDF using VB6.0. Currently, am unable to control the font face and size for the generated files. Below is the procedure am using for each file;
    Public Sub proc_convert_to_PDF(srcFilename As String, destFilename As String)
    Dim p_AcroApp As CAcroApp
    Dim p_VDoc As CAcroAVDoc
    Dim p_DDoc As CAcroPDDoc
    Dim IsOk As Boolean
    Set p_AcroApp = CreateObject("AcroExch.App")
    Set p_VDoc = CreateObject("AcroExch.AVDoc")
    Call p_VDoc.Open(srcFilename, "")
    Set p_VDoc = p_AcroApp.GetActiveDoc
    If p_VDoc.IsValid Then
    Set p_DDoc = p_VDoc.GetPDDoc
    ' Fill in pdf properties.
    p_DDoc.SetInfo "Title", Format(Date, "dd-mm-yyy")
    p_DDoc.SetInfo "Subject", srcFilename
    If p_DDoc.Save(1 Or 4 Or 32, destFilename) <> True Then
    MsgBox "Failed to save " & srcFilename
    End If
    p_DDoc.Close
    End If
    'Close the PDF
    p_VDoc.Close True
    p_AcroApp.Exit
    'Clear Variables
    Set p_DDoc = Nothing
    Set p_VDoc = Nothing
    Set p_AcroApp = Nothing
    End Sub
    What I need;
    1) to be able to set the font face of the destination file ( destFilename)
    2) to be able to set the font size of the destination file ( destFilename)
    Am using Adobe Acrobat 7.0 Type Library
    Kindly Help.
    Thanks in advance

    We didn't say it doesn't work. We said it isn't supported.
    There are a number of other ways to make a PDF. The one which would
    give the most control is if your application directly printed to GDI,
    controlling the font directly. This could print to Adobe PDF.
    You could look for an application that gives control of font for
    printing.
    You could use a text-to-PostScript system and distill the result. You
    could even look for a non-Adobe text-to-PDF.
    Working in the unsupported and dangerous world you chose, the font
    size for text conversion is set (and this is very bad design from
    Adobe) in the settings for Create PDF > From Web Page. There is no API
    to this.
    Aandi Inston

  • Font for Print out and Print Preview

    Hi all,
    I am working in SAP R/3 4.6C and using SmartForm.I have a trouble :
    I uploaded  Arial Font into System Font and Printer Font and i want to use this font for print out and print preview.But this font is only applied for print out and the print preview uses still  Courier Font not Arial as I want.
    So, anybody tell me why and give some idea to solve this problem.
    Thanks .

    Hi,
    There is no  arial font option in 4.6..but it 4.6 scriptforms arial option is there,but  it will not work..it will give some other font...
    Mainly  4.6 version does not support ARAIL font..
    4.6 does not support all the fonts which are avilable in MS-WORD..only few fonts are uploaded into SAP 4.6 syatem...this is the problem
    Regards
    Kiran
    Edited by: Kiran Saka on Feb 11, 2009 8:19 AM

  • If I use a web font in my website can I use the same font for printed materials such as business car

    I am a graphic designer intending to design a portfolio website in Adobe Muse. I plan to use TypeKit web fonts to design my website. Upon completioin of the website I intend to design business cards and my resume to match the look of my website. I would like to use the same fonts as I used on the website. Is it possible to use web fonts for printing purposes? If not, what do people typically do in this situation. The last thing I want to do is use a font that "looks" like the ones used on my website.

    Hi redsoxfan15b,
    (I think I may have replied to your Typekit Support ticket earlier today, but I will post the same information here to be certain.)
    We have recently added a new feature to Typekit that allows you to sync fonts to your desktop and use them in print design. The announcement on our website has more information:
    http://blog.typekit.com/2014/01/16/the-fonts-you-love-from-typekit-now-on-your-desktop/
    Font sync is available on any Typekit Portfolio, Performance, or Business plan.  Here is a list of all the font available for desktop use:
    https://typekit.com/fonts?licenses=desktop
    We are continuing to license more of the library for desktop use, but for now you should confirm that the font you would like to use it available for both web and desktop.  And if there is a font you'd like to use that isn't available for desktop sync, you may also be able to purchase a license directly from the foundry.
    I hope that this helps; let me know if you have any other questions!  Best,
    -- liz

  • How to set font for title and message in JOptionPane?

    Hi,
    I have following test code.
    JOptionPane.showMessageDialog(null, "Some Alert Message", "Alert", JOptionPane.ERROR_MESSAGE);In this code can we set font for "Some Alert Message", "Alert"?
    Regards,
    Kalyani......

    roll-your-own?
    import javax.swing.*;
    class Testing
      public static void main(String[] args)
        JDialog.setDefaultLookAndFeelDecorated(true);
        JOptionPane optionPane = new JOptionPane("<html><font size='5'>Your message here</font></html>");
        optionPane.setOptionType(JOptionPane.DEFAULT_OPTION);
        optionPane.setMessageType(JOptionPane.ERROR_MESSAGE);
        JDialog dialog = optionPane.createDialog(null, "Alert");
        dialog.getLayeredPane().getComponent(1).setFont(dialog.getFont().deriveFont(18f));//size = 18/whatever
        dialog.setModal(true);
        dialog.setVisible(true);
    }

  • How to set font for  JOptionPane.showMessageDialog() ?

    Hi,
    I want to set font for JOptionPane.showMessageDialog(). I have tried with following but it did not worked.
    javax.swing.UIManager.put("JOptionPane.font", "Verdana"); Do any one have idea how to do this. Your suggestion would be helpfull to me.
    Thank you.

    Then you'll have to loop over the components in the JOptionPane and setFont for each JButton. My SwingUtils class (search the net using Darryl SwingUtils, I can't give you a link as it's blocked from my office) can make this easier.
    Sample code:import darrylbu.util.SwingUtils;
    import java.awt.Font;
    import javax.swing.*;
    import javax.swing.plaf.FontUIResource;
    public class OptionPaneFonts {
       public static void main(String[] args) {
          UIManager.put("OptionPane.messageFont", new FontUIResource(new Font(
                  "Verdana", Font.BOLD, 32)));
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new OptionPaneFonts().makeUI();
       public void makeUI() {
          JOptionPane pane = new JOptionPane("So it's a date?",
                  JOptionPane.QUESTION_MESSAGE,
                  JOptionPane.YES_NO_CANCEL_OPTION,
                  UIManager.getIcon("OptionPane.questionIcon"),
                  new String[]{"Okey-dokey", "Not on your life!",
                     "Let me think about it"
                  }, null);
          for (JButton button : SwingUtils.getDescendantsOfType(JButton.class, pane)) {
             button.setFont(new Font("Tahoma", Font.ITALIC, 18));
          JDialog dialog = new JDialog((JWindow) null);
          dialog.setModal(true);
          dialog.add(pane);
          dialog.pack();
          dialog.setLocationRelativeTo(null);
          dialog.setVisible(true);
    }db
    Edited by: DarrylBurke -- shortened the code

  • Change Font for Printing

    I have message fonts set large (14pt) for screen viewing, which is too large for printing. Is there a way to specify a font to use for screen viewing and another to use for printing? I don't see any way to do this in either Mail Preferences or in the extremely-limited options available in settings when in the Print dialog.
    Given the separation-of-function philosophy evident in OS X, I would expect this to be controlled in printer settings for mail. If it is there, it's hiding.

    I've never seen font size settings in any print dialogue, this is something you need to set in the app you are using.
    Print dialogues normally let you set a % reduction for anything you are printing in a Scale menu. If you do not see that, hit the triangle button to the right of the printer name to expand the choices.

  • HT3771 set up for printing with HP Designjet 500ps (Using Mac os 10.4.11 Printer is set up correctly showing on Mac-Updates installed but still won't print-Printer shows TIME OUT)

    Set up for HP Designjet 500ps using Mac os x 10.4.11 Does any one know where to upload
    Leopard os x 10.5 The printer will not print until I have the updated software. Ebay sell the
    disc on their auction site, but only on disc not a download which is more convenient & faster
    to get in a hurry.The software installed in the mac is working the way it should & showing up
    as it would but it seems as though there is a driver that's needed. The results in any articals
    that I have read suggest you don't need any drivers if you use HP EasyPhotoSoftware installed. 

    Welcome to Apple Support Communities. We're users here, not "Apple Inc."
    You might have better a response to your questions by posting them in the OS X 10.4 Tiger forums: https://discussions.apple.com/community/mac_os/mac_os_x_v10.4_tiger
    or in the PowerMac forums:
    https://discussions.apple.com/community/desktop_computers/power_macof
    This forum is for OS X 10.6 Snow Leopard. Since that version won't run on your PowerMac, you're not likely to get many helpful responses here.
    In any case, I'll try to offer some basic troubleshooting suggestions:
    The PS designation on your printer denotes the PostScript printer language. Is your applications software and current printer driver configured to send PostScript (or HP-GL or HP-PCL or ???)
    Does ANY application print anything (even gibberish) to the printer?
    HP still shows a DesignJet 500 series raster driver for OS X 10.4 Tiger available to download here:
    http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/? sp4ts.oid=377952&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Di dx%253D%257CswItem%253Dpl_97046_1%257CswEnvOID%253D2072%257CitemLocale%253D%257C swLang%253D%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTo k=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken
    Does the printer time-out with every program, or just one? Have you tried another cable?
    OS X 10.5 Leopard is no longer sold by Apple. It was never sold as a download, sold only on CD/DVD disc. Discs might still be available for purchase on eBay.
    OS X 10.6 "Snow Leopard" is the oldest version of OS X still sold by Apple, and it too is available ONLY on CD/DVD for $20, but it will not run on your PowerMac, because Snow Leopard requires an Intel processor: os x snow leopard requirements
    HP DesignJet 500 basic printer documentation is available as a pdf document and downloadable file here: http://h20566.www2.hp.com/portal/site/hpsc/public/psi/manualsResults?sp4ts.oid=2 5301&ac.admitted=1391720518005.876444892.199480143
    How is the printer connected to the computer? Are you using a USB interface, a Centronics 'Parallel' interface, or a JetDirect network interface?
    It appears that the network timeout default for the printer was 30 minutes, but it can apparently be set in the range of anything 30-seconds and longer. The manual notes that some software does not send an 'end of job' postscript marker, so that is the reason for the time-out setting.
    http://h20566.www2.hp.com/portal/site/hpsc/template.BINARYPORTLET/public/kb/docD isplay/resource.process/?spf_p.tpst=kbDocDisplay_ws_BI&spf_p.rid_kbDocDisplay=do cDisplayResURL&javax.portlet.begCacheTok=com.vignette.cachetoken&spf_p.rst_kbDoc Display=wsrp-resourceState%3DdocId%253Demr_na-c00749274-1%257CdocLocale%253Den_U S&javax.portlet.endCacheTok=com.vignette.cachetoken

  • NLS_LANG not set properly for printing

    Dear all,
    Am setting up pasta for printing using note : How to Setup Pasta Quickly and Effectively (Doc ID 356501.1) 12.0.4 on solaris 10
    a)    Verify the instance’s character set and ensure that the “ICX: Client IANA Encoding” and the “FND: NATIVE CLIENT ENCODING” profiles match the instance’s character set.
    select value from nls_database_parameters
    where parameter = 'NLS_CHARACTERSET';
    AR8MSWIN1256
    b)    Verify that the “Tk2Motif*fontMapCs” parameter within the file Tk2Motif.rgb or Tk2Motif_UTF8.rgb (for UTF8 instances) specifies the correct character set.
    EBS Release 12
    grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    bash-3.00$ grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    !Tk2Motif*fontMapCs: iso8859-2=EE8ISO8859P2
    !Tk2Motif*fontMapCs: iso8859-15=WE8ISO8859P15
    c)    Verify that the NLS_LANG within the Apps listener shows the correct character set.
    grep envs $TNS_ADMIN/listener.ora
    bash-3.00$ grep envs $TNS_ADMIN/listener.ora
                     ( envs='MYAPPSORA=/sets/backup/mar20/appl/MAR19/apps/apps_st/appl/APPSMAR19_setshapps01.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/admin/scripts/gsmstart.sh' )
                     ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,SHLIB_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,LIBPATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,APPLFSTT=MAR19,APPLFSWD=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appl/admin;/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appltmp;/sets/backup/mar20/appl/MAR19/apps/apps_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )The above doesn't reveal my character set properly. is this normal ?.. can I ignore this ?.If I have to change, how to change this ?
    Please advise
    Kai
    Edited by: KaiS on Mar 21, 2010 12:39 AM

    Kai,
    bash-3.00$ grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    !Tk2Motif*fontMapCs: iso8859-2=EE8ISO8859P2
    !Tk2Motif*fontMapCs: iso8859-15=WE8ISO8859P15Change the above to:
    Tk2Motif*fontMapCs: iso8859-6=AR8MSWIN1256
    See (Note: 816879.1 - HOW TO CONFIGURE PASTA FOR ARABIC) for details.
    bash-3.00$ grep envs $TNS_ADMIN/listener.ora
    ( envs='MYAPPSORA=/sets/backup/mar20/appl/MAR19/apps/apps_st/appl/APPSMAR19_setshapps01.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/admin/scripts/gsmstart.sh' )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,SHLIB_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,LIBPATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,APPLFSTT=MAR19,APPLFSWD=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appl/admin;/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appltmp;/sets/backup/mar20/appl/MAR19/apps/apps_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )Change the "NLS_LANG=American_America.AL32UTF8" to "NLS_LANG=American_America.AR8MSWIN1256) -- You could also leave the same line as you should be able to print Arabic with "AL32UTF8".
    Once you are done, bounce all the application services (including the CM) and check then.
    Regards,
    Hussein

  • Licensing font for print magazines

    I want your help about licensing the use of a font for a print magazines. What type of licensing does this fall under?
    Thanks.

    You can find all the information about fonts licensed from Adobe (including fonts bundled with Adobe applications) at:
    Font licensing information, end user licensing agreements | Adobe
    There is no restriction against use of any Adobe-licensed font in any print media to answer your specific question. Obviously, though, you can't “give” the font files to the printer or publisher, but you can embed them in print-ready PDF, EPS, and PostScript files.
    Note that for fonts from other font vendors (i.e. not Adobe), other licensing requirements including higher cost licenses or even royalties may apply.
            - Dov

  • JPopupMenu - setting font for entire menu

    I have JPopupMenu which contains menuitems, i would like to set the font for this entire menu...do i have to do .setFont() for each menuitem or can i just do myPopupMenu.setFont()?
    Thanks

    I have JPopupMenu which contains menuitems, i would like to set the font for this entire menu...do i have to do .setFont() for each menuitem or can i just do myPopupMenu.setFont()?
    Thanks

  • Set font for Oracle

    Hi all.
    Can somebody help me?
    I'm using:
    Linux redhat 9 and Oracle for linux: 8.0.5.
    I use a program run on window and insert data into oracle, the font of data show on oracle is true. but when I run a client on linux, also insert data into oracle, but font is failed.
    I exported: NLS_LANG and ORA_NLS33 in .bash_profile file but nothing change.
    How can i config font for oracle client?
    Thank you.

    Hi all.
    Can somebody help me?
    I'm using:
    Linux redhat 9 and Oracle for linux: 8.0.5.
    I use a program run on window and insert data into oracle, the font of data show on oracle is true. but when I run a client on linux, also insert data into oracle, but font is failed.
    I exported: NLS_LANG and ORA_NLS33 in .bash_profile file but nothing change.
    How can i config font for oracle client?
    Thank you.

  • Setting the Font for print

    I recently purchased an HP Deskjet D2500 Printer and it works great with one exception.  the Font size is very small.  when I go to Ancestry.com and print an early census page the entire page I am printing only covers 1/3 to 1/2 or the printing paper. and the print is so small as to be unreadable.  Question, could someone please tell me how to set my print font on this Printer?   Thank you for any help on this matter.  I am 72 years old so could you please simplify it as much as possible.

    I am using LineBreakMeasurer to get a TextLayout via
    foo.nextLayout(bar). Now i have the problem to make
    the Font display correctly.If you look at the API docs for LineBreakMeasurer there is an example that shows its use. If you have an AttributedCharacterIterator that has attributes of Font, then it works like magic.
    Perhaps your question is how to get the Font attribute into an AttributedCharacterIterator? What I did was use AttributedString and can add an attribute of TextAttribute.FONT.
    This is a very confusing area to me and I do not consider that I am an expert. I made it work, but that's all I will claim.

  • Embed font for print

    Good day
    I have recently started designing brochures for my company. I completed 4. I am quite new as a designer.
    all 4 printed well, had no problems.
    this last one, the printer gave the foll:
    1.  The is overprint issues on the pdf files.
    2. Some pages the fonts are not embedded.
    3. There is spot colours in the job.
    it is 24 pages
    I did not change my setting at all as from my previous brochures. So I am completely lost in how to solve it and not for it to happen again.
    We used the same printer for all the brochures.
    Even the flyers I recently did, saying the same problems. Am using the same printer
    I really need help as my job counts on successful brochures
    Thank you
    Kajal

    It means what it says
    a) you used a font that does not allow embedding in PDFs
    b) you used spot colors (Pantone et al) without converting them to process CMYK
    c) you didn't check the overprint/ trapping
    Most of that no doubt could easily be checked using the prepress toolset in Acrobat on your end as well. As for whjat the specific fixes are, nobody can tell based on your vague info. We would have to see screenshots or the resulting product, know what fonts you used, require system info...
    Mylenium

  • Packaging typekit fonts for print

    When you're collecting for output/packaging a print project from InDesign and you're using Adobe Typekit, the Typekit fonts will not be packaged. Will there be any sort of warning or message so that both the artist and the print vendor are aware those fonts need to be replaced? It would also be helpful if the message mentioned Typekit so that the vendor knew where to obtain the fonts. I speak from experience, being both a designer and working for a commercial printer. Knowing whether to apply our Typekit fonts or to go back to the client for the fonts is very important.

    http://forums.adobe.com/community/indesign
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

Maybe you are looking for