Changing font in a text area?

how do you change the font in a text area
i thought it might have been navi.setFont(Font.Verdana);
but no ...

Right idea, but it's off. Try this:
navi.setFont(new Font("Verdana", Font.PLAIN, 12));

Similar Messages

  • Change fonts of photoshop text layer via panel developed by Flex Builder

    Hi everyone,
    I am developing  photoshop cs5 plugin which will change font family of text layer. Changeing system font is ok but my embedded font is not loading on text layer.
    syntax used to change font on text layer.
    var AD = activeDocument;
    AD.activeLayer.textItem.font="Verdana";
    I have few webfonts on my local drive. how can i use this font so that it can reflect on text layer in runtime with out installing manually in system font.
    In developed panel, embedded fonts are rendering but I need to change font of text layer on clicking fonts list from panel.
    Does anyone have any idea on it? Please help me.
    Thanks,
    PluginBishnu

    Flash.text.Font.hasGlyphs()

  • How do I change fonts in a Text field ??

    Okay I've tried to implement a JComboBox that allows the user to change fonts in the text field. So far I've tried different methods to do it but to no avail. Could somebodoy here read the programs source code for me and tell me where I went wrong?
    /* * My GUI Client */
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import javax.swing.event.*;
    //for HTML Headers
    import javax.swing.text.StyledEditorKit.*;
    import javax.swing.text.html.HTMLEditorKit.*;
    import javax.swing.text.html.*;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.event.HyperlinkEvent.EventType;
    import javax.swing.text.html.HTMLFrameHyperlinkEvent;
    //for layout managers
    import java.awt.event.*;
    //for action and window events
    import java.io.*;
    import java.net.*;
    import java.awt.GraphicsEnvironment;
    //for font settings
    import java.lang.Integer;
    import java.util.Vector;
    import java.awt.font.*;
    import java.awt.geom.*;
    public class guiClient extends JFrame implements ActionListener {
    protected static final String textFieldString = "JTextField";
    protected static final String loadgraphicString = "LoadGraphic";
    protected static final String connectString = "Connect";
    static JEditorPane editorPane;
    static JPanel layoutPanel = new JPanel(new BorderLayout());
    static JPanel controlPanel = new JPanel(new BorderLayout());
    static JPanel buttonPanel = new JPanel(new BorderLayout());
    static JPanel fontPanel = new JPanel(new BorderLayout());
    static PrintStream out;
    static DrawPanel dPanel;
    static DrawPanel dPButton;
    static DrawPanel dFonts;
    static DrawControls dControls;
    static DrawButtons dButtons;
    static String userString;
    static String currentFont;
    String fontchoice;
    String fontlist;
    static JTextField userName = new JTextField();
    public static JMenuBar menuBar;
    private static JButton connectbutton = new JButton("Connect");
    static boolean CONNECTFLAG = false;
    //create the gui interface
    public guiClient() {
         super("My Client");
    // Create a ComboBox
    GraphicsEnvironment gEnv = GraphicsEnvironment.getLocalGraphicsEnvironment();
    String envfonts[] = gEnv.getAvailableFontFamilyNames();
    Vector vector = new Vector();
    for ( int i = 1; i < envfonts.length; i++ ) {
    vector.addElement(envfonts);
    JComboBox fontlist = new JComboBox (envfonts);
         fontlist.setSelectedIndex(0);
         fontlist.setEditable(true);
         fontlist.addActionListener(this);
         fontchoice = envfonts[0];     
    //Create a regular text field.
         JTextField textField = new JTextField(10);
         textField.setActionCommand(textFieldString);
         textField.addActionListener(this);          
    //Create an editor pane.
    editorPane = new JEditorPane();
         editorPane.setContentType("text");
         editorPane.setEditable(false);
    //set up HTML editor kit
         HTMLDocument m_doc = new HTMLDocument();
         editorPane.setDocument(m_doc);
         HTMLEditorKit hkit = new HTMLEditorKit();
         editorPane.setEditorKit( hkit );
         editorPane.addHyperlinkListener( new HyperListener());
    //Create whiteboard
    dPanel = new DrawPanel();
    dPButton = new DrawPanel();
    dFonts = new DrawPanel();
    dControls = new DrawControls(dPanel);
    dButtons = new DrawButtons(dPButton);
         //JLable fontLab = new JLabel(fontLable);
    //fontLab.setText("Fonts");
    //Font newFont = getFont().deriveFont(1);
    //fontLab.setFont(newFont);
    //fontLab.setHorizontalAlignment(JLabel.CENTER);
    JPanel whiteboard = new JPanel();
    whiteboard.setLayout(new BorderLayout());
    whiteboard.setPreferredSize(new Dimension(300,300));
    whiteboard.add("Center",dPanel);
    whiteboard.add("South",dControls);
    whiteboard.add("North",dButtons);
         JScrollPane editorScrollPane = new JScrollPane(editorPane);
         editorScrollPane.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
         editorScrollPane.setPreferredSize(new Dimension(250, 145));
         editorScrollPane.setMinimumSize(new Dimension(50, 50));
    //put everything in a panel
         JPanel contentPane = new JPanel();
         JPanel fontPane = new JPanel();
         contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
    //add whiteboard
         contentPane.add(whiteboard);
    //add editor box
         contentPane.add(editorScrollPane);
    //add spacer
         contentPane.add(Box.createRigidArea(new Dimension(0,5)));
    //add textfield
         contentPane.add(textField);
    //set up layout pane
         //layoutPanel.add(GridLayout(2,1),fontLab);
         layoutPanel.add( BorderLayout.NORTH, fontlist);     
         layoutPanel.add(BorderLayout.WEST,new Label("Name: ")); //add a label
         layoutPanel.add(BorderLayout.CENTER, userName ); //add textfield for user names
         layoutPanel.add(BorderLayout.SOUTH, connectbutton);//add dropdown box for fonts
         //fontPane.add(BorderLayout.NORTH,fontlist);
         contentPane.add(layoutPanel);
         contentPane.add(controlPanel);
         contentPane.add(buttonPanel);
    //Create the menu bar.
    menuBar = new JMenuBar();
    setJMenuBar(menuBar);
    //Build the first menu.
         JMenu menu = new JMenu("File");
         menu.setMnemonic(KeyEvent.VK_F);
         menuBar.add(menu);
    //a group of JMenuItems
         JMenuItem menuItem = new JMenuItem("Load Graphic", KeyEvent.VK_L);
         menu.add(menuItem);
    menuItem.setActionCommand(loadgraphicString);
         menuItem.addActionListener(this);
    connectbutton.setActionCommand(connectString);
    connectbutton.addActionListener(this);
         setContentPane(contentPane);
    static private void insertTheHTML(JEditorPane editor, String html, int location) throws IOException {
         HTMLEditorKit kit = (HTMLEditorKit) editor.getEditorKit();
         Document doc = editor.getDocument();
         StringReader reader = new StringReader(html);
         try {
              kit.read(reader, doc, location);
         } catch (BadLocationException e) {}
    //listen for actions being performed and process them
    public void actionPerformed(ActionEvent e) {
    //if the action is from the textfield (e.g. user hits enter)
         if (e.getActionCommand().equals(textFieldString)) {
              JTextField fromUser = (JTextField)e.getSource();
         if (fromUser != null){
    //place user text in editor pane
    //send message to server
                   if (userName.getText() != null) {
                        userString = userName.getText().trim();
                   out.println(userString + ": " + fromUser.getText());
              fromUser.setText("");
         } else if(e.getActionCommand().equals(connectString)) {
              CONNECTFLAG = true;
    } else if (e.getActionCommand().equals(loadgraphicString) ) {
              final JFileChooser fc = new JFileChooser();
              int returnVal = fc.showOpenDialog(this);
              if (returnVal == JFileChooser.APPROVE_OPTION) {
                   File file = fc.getSelectedFile();
                   dPanel.loadImage(file.getAbsolutePath());
                   sendImage(file);
         else if (e.getActionCommand().equals(fontlist)){
         JComboBox cb = (JComboBox)e.getSource();
    String newSelection = (String)cb.getSelectedItem();
    currentFont = newSelection;
         userString = currentFont;
    return;
    /*public void itemStateChanged (ItemEvent e) {
    if ( e.getStateChange() != ItemEvent.SELECTED ) {
    return;
    if ( list == fontlist ) {
    fontchoice = (String)fontlist.getSelectedItem();
         userString.changeFont(fontchoice);
    //append text to the editor pane and put it at the bottom
    public static void appendText(String text) {
         if (text.startsWith("ID ") ) {
              userString = text.substring(3);
         } else if (text.startsWith("DRAW ") ) {
              if (text.regionMatches(5,"LINE",0,4)) {
    dPanel.processLine(text);
         }else if (text.regionMatches(5,"POINTS",0,5)) {
         dPanel.processPoint(text);
         } else if (text.startsWith("IMAGE ") ) {
    int len = (new Integer( text.substring(6, text.indexOf(",")))).intValue();
    //get x and y coordinates
         byte[] data = new byte[ (int)len ];
         int read = 0;
    try {
         while (read < len) {
         data = text.getBytes( text.substring(0, len) );
    } catch (Exception e) {}
         Image theImage = null;
         theImage = dPanel.getToolkit().createImage(data);
         dPanel.getToolkit().prepareImage(theImage, -1, -1, dPanel);
         while ((dPanel.getToolkit().checkImage(theImage, -1, -1, dPanel) & dPanel.ALLBITS) == 0) {}
              dPanel.drawPicture(0, 0, theImage);
    } else {
    //set current position in editorPane to the end
              editorPane.setCaretPosition(editorPane.getDocument().getLength());
    //put text into the editorPane
              try {
                   insertTheHTML(editorPane, text, editorPane.getDocument().getLength());
              } catch (IOException e) {}
    } //end of appendText(String)
    public void sendImage(File file) {
    //find length of file
         long len = file.length();
    //read file into byte array
         byte[] byteArray = new byte[(int)len];
         try {
              FileInputStream fstream = new FileInputStream(file);
              if (fstream.read(byteArray) < len) {
    //error could not load file
              } else {
              out.println("IMAGE " + len + ",");
                   out.write(byteArray, 0, (int)len); //write file to stream
         } catch(Exception e){}
    //run the client
    public static void main(String[] args) {
         String ipAddr=null, portNr=null;
              if (args.length != 2) {
                   System.out.println("USAGE: java guiClient IP_Address port_number");
                   System.exit(0);
              } else {
         ipAddr = args[0];
              portNr = args[1];
              JFrame frame = new guiClient();
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) { System.exit(0); }
              frame.pack();
              frame.setVisible(true);
              while(CONNECTFLAG == false){}
    //sames as previous client,
    //set up connection and then listen for messages from the Server
              String socketIP = ipAddr;
              int port = Integer.parseInt(portNr);
    //the IP address of the machine where the server is running
              Socket theSocket = null;
    //communication line to the server
              out = null;
    //for message sending
              BufferedReader in = null;
    //for message receiving
              try {
              theSocket = new Socket(socketIP, port );
    //try to connect
              out = new PrintStream(theSocket.getOutputStream());
                   dPanel.out = out;
    //for client to send messages
              in = new BufferedReader(new InputStreamReader(theSocket.getInputStream()));
                   BufferedReader userIn = new BufferedReader(new InputStreamReader(System.in));
                   String fromServer;
                   while ((fromServer = in.readLine()) != null) {
                   appendText(fromServer);
                   if (fromServer.equals("BYE")) {
                        appendText("Connection Closed");
                        break;
              out.close();
    //close all streams
              in.close();
              theSocket.close();
    //close the socket
         } catch (UnknownHostException e) {
    //if the socket cannot be openned
              System.err.println("Cannot find " + socketIP);
              System.exit(1);
              } catch (IOException e) { //if the socket cannot be read or written
              System.err.println("Could not make I/O connection with " + socketIP);
              System.exit(1);
    class HyperListener implements HyperlinkListener {
    public JEditorPane sourcePane;
    public void hyperlinkUpdate(HyperlinkEvent e) {
    if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
    sourcePane = (JEditorPane) e.getSource();
                   if (e instanceof HTMLFrameHyperlinkEvent) {
    HTMLFrameHyperlinkEvent event = (HTMLFrameHyperlinkEvent) e;
                        System.out.println(event.getTarget());
                        HTMLDocument doc = (HTMLDocument) sourcePane.getDocument();
                        doc.processHTMLFrameHyperlinkEvent(event);
    else {
    try {}
    catch (Exception ev){
         ev.printStackTrace();
    Well sorry the source code takes up the whole forum but I need a good feedback from this.

    All right...
    public class guiClient extends JFrame implements ActionListener {
    static String userString;
    static String currentFont;
    String fontchoice;
    String fontlist;
    static JTextField userName = new JTextField();
    public guiClient() {
         super("My Client");
    public guiClient() {
         super("My Client");
    // Create a ComboBox
    GraphicsEnvironment gEnv = GraphicsEnvironment.getLocalGraphicsEnvironment();
    String envfonts[] = gEnv.getAvailableFontFamilyNames();
    Vector vector = new Vector();
    for ( int i = 1; i < envfonts.length; i++ ) {
    vector.addElement(envfonts);
    JComboBox fontlist = new JComboBox (envfonts);
         fontlist.setSelectedIndex(0);
         fontlist.setEditable(true);
         fontlist.addActionListener(this);
         fontchoice = envfonts[0];     
    //Create a regular text field.
         JTextField textField = new JTextField(10);
         textField.setActionCommand(textFieldString);
         textField.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
    //if the action is from the textfield (e.g. user hits enter)
         if (e.getActionCommand().equals(textFieldString)) {
              JTextField fromUser = (JTextField)e.getSource();
         if (fromUser != null){
    //place user text in editor pane
    //send message to server
                   if (userName.getText() != null) {
                        userString = userName.getText().trim();
                   out.println(userString + ": " + fromUser.getText());
              fromUser.setText("");
         else if (e.getActionCommand().equals(fontlist)){
         JComboBox cb = (JComboBox)e.getSource();
    String newSelection = (String)cb.getSelectedItem();
    currentFont = newSelection;
         userString = currentFont;
    return;

  • How to change the Font in the Text Area

    Hi,
    My Apex application is set up in Arial.
    But when I use a Text Area the font changes to Times Roman.
    How to solve that?
    Thanks in advance, Marti

    hi,
    try writing:
    style="font-family:Arial;"
    in the page element attribute called "HTML Form Element Attributes"
    bye,
    Flavio
    http://oraclequirks.blogspot.com/search/label/Apex

  • Font in a text area

    I am creating a word processor which allows for font changes. it works to change the font, but it will change previously entered font in addition. i do not want text that has already been entered to be changed by new settings. how can i accomplish this?
    for reference, this is an example of how i change the font:
    oldFont = textArea.getFont();
    textArea.setFont(new font(oldFont.getFontName(),Font.ITALIC,oldFont.getSize()));Thanks.

    Ok, so I implemented a text Pane setup. Though, it still does the same thing. Any time an option is modified, all of the text will change.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.BadLocationException;
    import javax.swing.text.DefaultStyledDocument;
    import javax.swing.text.SimpleAttributeSet;
    import javax.swing.text.Style;
    import javax.swing.text.StyleConstants;
    import javax.swing.text.StyleContext;
    import javax.swing.text.StyledDocument;
    public class wordTemp extends JFrame {
         private final int sizeValues[] = { 8, 9, 10, 11, 12, 14, 16, 18, 20, 25, 36, 48, 72};
         private final String fontNames[] = { "Serif", "Monospaced", "SansSerif" };
        private JRadioButtonMenuItem sizeItems[], fonts[];
        private JToggleButton boldButton, italicButton;
        private JTextPane textPane;
        private ButtonGroup fontGroup, sizeGroup;
            private Font oldFont;
            private StyleContext context = new StyleContext();
         private StyledDocument document = new DefaultStyledDocument(context);
         private Style style = context.getStyle(StyleContext.DEFAULT_STYLE);
        // set up GUI
        public wordTemp()
             super( "SimpWoPro - Simple Word Processor" );    
            // set up File menu and its menu items
            JMenu fileMenu = new JMenu( "File" );
            fileMenu.setMnemonic( 'F' );        
            // set up About... menu item
            JMenuItem aboutItem = new JMenuItem( "About SimpWoPro..." );
            aboutItem.setMnemonic( 'A' );                    
            fileMenu.add( aboutItem );                       
              aboutItem.addActionListener(
                 new ActionListener() {  // anonymous inner class
                      // display message dialog when user selects About...
                      public void actionPerformed( ActionEvent event )
                                  JOptionPane.showMessageDialog( wordTemp.this,
                               "This is a simple word processor \n     developed to show menus and ways \n of altering fonts in a \n text area.",
                               "About", JOptionPane.PLAIN_MESSAGE );
                     }  // end anonymous inner class
                ); // end call to addActionListener
                // set up Exit menu item
                JMenuItem exitItem = new JMenuItem( "Exit" );
                exitItem.setMnemonic( 'x' );                
                fileMenu.add( exitItem );                   
                exitItem.addActionListener(
                new ActionListener() {  // anonymous inner class
                   // terminate application when user clicks exitItem
                   public void actionPerformed( ActionEvent event )
                      System.exit( 0 );
                }  // end anonymous inner class
                ); // end call to addActionListener
                // create menu bar and attach it to MenuTest window
                JMenuBar bar = new JMenuBar();                    
                setJMenuBar( bar );                               
                bar.add( fileMenu );                              
                // create Format menu, its submenus and menu items
                JMenu formatMenu = new JMenu( "Font Type" ); 
                formatMenu.setMnemonic( 'r' );          
                // create size submenu
              String sizes[] = { "8", "9", "10", "11", "12", "14", "16", "18", "20", "25", "36", "48", "72"};
              JMenu sizeMenu = new JMenu( "Font Size" );
                sizeMenu.setMnemonic( 'S' );         
            sizeItems = new JRadioButtonMenuItem[ sizes.length ];
              sizeGroup = new ButtonGroup();                       
                ItemHandler itemHandler = new ItemHandler();
            // create size radio button menu items
            for ( int count = 0; count < sizes.length; count++ ) {
                     sizeItems[ count ] = new JRadioButtonMenuItem( sizes[ count ] );
                sizeMenu.add( sizeItems[ count ] );         
                    sizeGroup.add( sizeItems[ count ] );        
                sizeItems[ count ].addActionListener( itemHandler );
            // select first size menu item
            sizeItems[ 0 ].setSelected( true ); 
            // create Font submenu
                JMenu fontMenu = new JMenu( "Font" );
                fontMenu.setMnemonic( 'n' );        
                fonts = new JRadioButtonMenuItem[ fontNames.length ];
                fontGroup = new ButtonGroup();                      
               // create Font radio button menu items
                for ( int count = 0; count < fonts.length; count++ ) {
                 fonts[ count ] = new JRadioButtonMenuItem( fontNames[ count ] );
                 fontMenu.add( fonts[ count ] );                                
                 fontGroup.add( fonts[ count ] );                               
                   fonts[ count ].addActionListener( itemHandler );
            // select first Font menu item
                fonts[ 0 ].setSelected( true );
                // Create the bold button.
                boldButton = new JToggleButton( "Bold" );
                boldButton.addItemListener(
                   new ItemListener() {  // anonymous inner class
                       public void itemStateChanged(ItemEvent e) {
                           if (e.getStateChange() == ItemEvent.SELECTED) {
                                       StyleConstants.setBold(style, true);
                           else{
                                     StyleConstants.setBold(style, false);
                   } // end anonymous inner class
                // Create the italic button.
                italicButton = new JToggleButton( "Italic" );
                italicButton.addItemListener(
                   new ItemListener() {  // anonymous inner class
                       public void itemStateChanged(ItemEvent e) {
                           if (e.getStateChange() == ItemEvent.SELECTED) {
                                       StyleConstants.setItalic(style, true);
                           else{
                                     StyleConstants.setItalic(style, false);
                   } // end anonymous inner class
              // add Format menu to menu bar
                bar.add( fontMenu ); 
                bar.add( sizeMenu );
                bar.add( boldButton );
                bar.add( italicButton );
                   textPane = new JTextPane(document);
                JScrollPane scrollPane = new JScrollPane(textPane);
                getContentPane().add( scrollPane );
               setSize( 500, 200 );
                setVisible( true );
       } // end constructor
         public static void main( String args[] )
             wordTemp application = new wordTemp();
                application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            // inner class to handle action events from menu items
        private class ItemHandler implements ActionListener {
           // process size and font selections
           public void actionPerformed( ActionEvent event )
            // process size selection
                    for ( int count = 0; count < sizeItems.length; count++ ){
                        if ( event.getSource() == sizeItems[ count ] ) {
                             StyleConstants.setFontSize(style, sizeValues[count] );
                 // process font selection
                 for ( int count = 0; count < fonts.length; count++ ){
                     if ( event.getSource() == fonts[ count ] ) {
                             StyleConstants.setFontFamily(style, fontNames[count] );
             } // end method actionPerformed
            } // end class ItemHandler
    }How could I change this so that old text is not changed?
    Thanks.

  • Font size in text area

    I have columns defined as readonly text area in a report. I have created a template so that all the reports fields have a font size of 9px. Everything sets to 9px except the fields defined as text areas. can the font size be changed on text area in reports?

    Hi Brian,
    you can add class="myClass"
    to the HTML Form Element Attributes region of the page item.
    This should allow you to apply the appropriate font-size etc.
    Alternatively, you could apply them directly to the input tag in your style sheet.
    input {font-size:32;}
    Regards
    Michael

  • How do I change Fonts or manipulate text I am writing on Firefox? Is there a toolbar, or extension I can get to have easy access to these type of tools?

    When writing comments or sending messages,etc., I would like to be able to have access to text options such as; bold, underline, change font, font size,color, etc. I've seen others do this but cannot find anything on my desktop to allow me these write tools.

    Orange Firefox button>Options>Options>Security, Privacy etc.
    If the Firefox button isn't showing - right click on a toolbar space and uncheck the Menu Bar, this will reveal the Firefox button and you can toggle from one to the other.
    Or, in the Menu Bar>Tools>Options.

  • Italic and bold fonts for Hoefler Text are no longer available to MS Word

    Apple provides regular, italic, black, and black italic styles for the Hoefler Text font. I've used them before but since I installed Snow Leopard, I cannot creat italic or bold (black) in MS Word. When I make text italic or bold (black), the characters disappear--the sentence shortens as if I had deleted the phrase, but if I change it back to regular, it reappears.
    Font Book shows that I have all of these styles of Hoefler Text in the Library. I tried disabling and then enabling, but that didn't work. Has anyone else encountered this problem? If so, have you discovered a solution? Thank you.

    Thanks for the file. It obviously helped, but I am not sure how. I probably should have taken careful notes about what I did by way of disabling and removing the .ttf fonts and then dragging in the .dfont variety. At one stage when I brought up a Hoefler document in Word, the regular Hoefler text had disappeared. I panicked and removed the .dfont version. Later, after trying something else, the text came back but (judging by the numerals) it was not Hoefler. To make a long story short, all styles of Hoefler (including italic and black) are now working. There are no duplicate font files—I used Remove Duplicates—but I have no Hoefler file in either of the two Fonts folders, even though I can see Hoefler Text in Font Book! To be safe, I used Font Book to export the Hoefler Text to a back-up folder, and the version it exported is the .ttf version. In Get Info I confirmed that it’s the 6.1d7e1 variety. I restarted the computer twice, and determined that this situation is stable. Go figure.
    In any event, you set me on the right road. Hoefler Text is now working as it should. I appreciate your help.

  • Changing font color in Text Box tool in Acrobat 9.0

    The default color is coming out red but I can't figure out how to change it to black..anyone know??

    sorry folks, found my answer..
    if anyone else has the problem - select the text, go to View - then toolbars - the the properties bar and the font is in that bar...

  • End user have ability to change font style in text field of interactive pdf form?

    Does the end user of an interactive pdf form able to change the font style, i.e.: make something bold or underline a word in a text field?
    I am making a form with text fields and the end user would like the ability to make something bold or underline it.. I do not see anywhere in acrobat that allows styles to be changed.
    I have created the form in Indesign > saved it as an interactive pdf and brought it into Acrobat.

    Thank you for the quick response! Do you set this in Indesign before exporting or do you set this in Acrobat? I am in Acrobat 10.1.10 and when I go to properties it doesn't give me  'options' to choose from.

  • How to change font size of text inside a "text box" form the Drawing Markups?

    Hi,
    I expected there to be an option to change the font size after I selected the text and right-clicked, but no, there is only one option that allows you to change the text style but not the font size.
    Does anyone know how to change the font size?

    Don't know what the e-mail is about, why not just log into the forums. In any case, it does not sound like a text box, but one of the other text options (like the Typewriter tool). The regular text edit tool allows you to edit the text and fonts in a regular text box. Select the box and use ctrl-E. You may have to select the text edit tool (name changed in AAX) first. Such editing is not really recommended. Editting in Acrobat should be limited to simple changes, and those often become a pain. The best method of fixing the problem is in the original document and then creating a new PDF.

  • Changing Font on Alt text?

    Is there a way to change the font/color of alternative text?
    Or is this all part of the user browser specifications?
    Thanks!

    No, you cannot change that. But the alt attribute's value is
    not displayed
    in any modern browser except for IE. Perhaps you should
    consider using the
    title attribute, which is displayed in all browsers?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "justine_oc" <[email protected]> wrote in
    message
    news:f1vm39$s9d$[email protected]..
    > Is there a way to change the font/color of alternative
    text? Or is this
    > all part of the user browser specifications?
    >
    > Thanks!

  • Change font colour in Text Field

    If I have typed 'The Cat Sat On The Mat' into a text field yet I want 'The Cat' to appear in bold  and the rest as normal, how can I do this or even in a different colour?
    Any help would be appreciated

    The only way to do this, is a text field that you change from plain text to rich text. 
    Then you can enter what you want, press ctrl+b to make something bold.
    If you want to see the content of your box, use TextField.value.exData.saveXML() ...

  • Change font color shifts text in Acrobat XI PRO

    When I go into an acrobat document and try to chnage the font color, it shifts the text and the paragraph it's in. I contacted Adobe about it a few months ago and they told me it was a know bug.
    When is it going to be fixed?

    Since this is a user-to-user forum, we don't have access to that type of information.

  • Increasing the size of designated text area in a photo book

    I am using IPhoto version 9.5.1 on a MacBook Pro (10.9.2). I am trying to increase the designated text area so that I can increase the font size. This will allow for the final product to be more legible. Currently, I am featuring a student per page. The designated text areas are 4 separate sections on these pages.  I would like to include on each page the following.
    Aviator
    Person's Name
    Algebra I
    Homecoming Dance
    When I increase the font size in those 4 designated areas, the red caution triangle with exclamation point states, 'This text doesn't fit the designated text area!' 
    I have two questions.
    1. How do I increase the text area so the larger text will fit and print properly?
    2. Is there an overall command that I can input these increases to the text area so that the 36 papes have the same changes in the designated text areas? Otherwise, I will have to make those changes for each individual pages that are featuring a student.
    Comptroller

    You can "adjust" a photo frame or text box size on a page with the following key combinations:
    Command + Option +⬆arrow:  increase frame height.
    Command + Option +⬇arrow:  decrease frame height.
    Command + Option + ➜ arrow:  increase frame width.
    Command + Option + ⬅ arrow:  decrease frame width.
    To adjust its position on the page use these key combinations:
    Command + Control + ➜ arrow:  move frame to right.
    Command + Control + ⬅  arrow:  move frame to left.
    Command + Control + ⬆ arrow:  rotate frame counter clockwise.
    Command + Control + ⬇ arrow:  rotate frame clockwise.
    You can conver the standard frame (on the left) to this one (on the right)
    Always be sure to create a PDF file of the book for proofing before ordering a book. This Apple document describes how to create the PDF file: iPhoto, Aperture: Previewing an order in iPhoto or Aperture. Keep the PDF file to compare it with the printed copy when it arrives.
    If you have Pages you can easily create custom book pages as images and add them to a 1 photo per page layout by following this tutorial: iP11 - Creating a Custom Page, with the Theme's Background for an iPhoto Book
    OT

Maybe you are looking for

  • Space after negating exclamation mark

    Hi, is it possible to add a space after a negating exclamation mark in the code formatting rules such as: if (!true) {}   <- I don't want this style if (! true) {}  <- I do want this I think that the Tools -> Options -> Text Editor settings give me q

  • PHP Image Gallery with Images placed every other paragraph

    Currently I have multiple images that where uploaded to the details page of Post 1. Every other paragraph I have an image displayed. With say 5 images. What I would like is that the user can click on the image and open up a gallery (on the same page,

  • Anyone having trouble connecting your iPhone 5 to the Big Blue Live Speaker?

    I have an old iPod touch.  I've been using the Big Blue Live speaker a bluetooth connected device.  Never a problem.  I am now trying to connect it to my iPhone5, which I upgraded to ios8.  It does not want to pair.  It is not recognizing the Big Blu

  • TS1543 reset Mac OS X 10.5 password at the

    Overnight my Mac OS X won't accept the password.  Can't get into system to reset. Tried typing at command promtp after restarting with Command S.  System did not recognize the LS users directory. How can I get in by accessing a partition to reset or

  • Unity_UMR error 113 &137 Event viewer

                      i Have problem in unity 7.0 the voice mail not recievied to the user and the error come in event viewer that as per i attached Unity_UMR event ID 113 & 137  so can any help on this issue Thanks,