Text displays in wrong size

Hi,
I'm working on a Flash presentation, and I have a lot of text pages with buttons and movie clips on. The problem I have is that all subheads are set to size 35pt using Helvetica Neue Heavy, but on a couple of the pages a random subhead is displaying a lot larger than 35pt (I'd say 50pt) but it is definitely set to size 35pt in the Character palette. I have no idea why this is happening and it's driving me mad. Please can someone help me, I need to get this problem solved by Monday?
Kind regards

If the text is assigned as the correct size, then it might be a case where you have something that contains the text scaled larger.  You could try selecting the text or whatever contains it and then in the top menu choose Modify -> Reome Transform and see if that helps (might need to do it a couple times)

Similar Messages

  • Site previews fine in Firefox locally, but when I published the site all the text is the wrong size

    I am a rookie web designer. I recently created a site using CS6. http://www.joshuahetzler.com When I previewed the site in Dreamweaver it looked good in Firefox and IE. I published the site and now it is messed up in Firefox. All the text is the wrong size. Does anyone know how to fix this? Does it have something to do with my hosting provider? (I deleted a wordpress site from the directory an hourago and put this new site in its place) Why does IE display properly, but not Firefox...

    Caused by a bad link to your site's CSS file.  This is pointing to a file on your local hard drive which nobody but you can see.
    <link href="file:///C|/hetzlerj/jhgc/menu.css" rel="stylesheet" type="text/css" />
    Open your template and reconcile the path to your site folder.  It should probably look like this:
    <link href="../menu.css" rel="stylesheet" type="text/css" />
    Save Template.  Populate changes to Child pages.  Upload Child pages.
    Nancy O.

  • Help: JPanel/JFrame display complexities, wrong size

    I am trying to make a simple game of worms.I wan't to draw a rectangle in the center of the window where in the middle the game is played and on the outside score, lives and other such things are displayed. The problem is the rectangle won't draw properly because the window is the wrong size and I don't know if it is something I am doing wrong with the panel or frame.
    import javax.swing.*;
    import java.awt.*;
    public class DemoWormPanel extends JPanel implements Runnable{
        private static final int WIDTH = 600, HEIGHT = 400;
        private Graphics dbG;
        private Image dbImage;
        private Thread animator;
        private boolean running = false;
        private Rectangle walls;
        public DemoWormPanel() {
            super();
            setSize(WIDTH,HEIGHT);
        public void startGame() {
            if (animator == null) {
                animator = new Thread(this);
                animator.start();
            running = true;
            //defining game walls at 50 pixels within panel border
            walls = new Rectangle(50, 50, WIDTH - 50, HEIGHT - 50);
        public void gameRender() {
            if (dbImage == null) {
                dbImage = createImage(WIDTH, HEIGHT);
                if (dbImage == null) {
                    System.out.println("Error creating double buffer");
                    System.exit(0);
                dbG = dbImage.getGraphics();
            dbG.setColor(Color.black);
            dbG.fillRect(0,0,WIDTH,HEIGHT);
            dbG.setColor(Color.white);
            dbG.drawRect(walls.x, walls.y, walls.width, walls.height);
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            g.drawImage(dbImage, 0, 0, this);
            g.dispose();
        public void update(Graphics g){
            paint(g);
        public void run() {
            while (running) {
                gameRender();
                repaint();
                try {
                    Thread.sleep(1000/50);
                } catch (InterruptedException e) {}
            System.exit(0);
        public static void main(String[] args) {
            DemoWormPanel wp = new DemoWormPanel();
            JFrame f = new JFrame();
            f.setTitle("Worms");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(wp);
            f.setSize(WIDTH, HEIGHT);
            f.setVisible(true);
            wp.startGame();
    }Somewhere in there is my problem.
    What happens is that the right and bottom walls of the Rectangle are cut off of the screen because the window is not the right size. I changed the code to determine if the coordinates of the walls were accurate every iteration and they were. I also made it check the width and height every iteration by printing out this.getWidth() and this.getHeight() and found that instead of a 600 x 400 window, I have a 584 x 364. I also tried changing the panel and frame's size methods to make a new dimension instead of setting it directly from my constants and it had no effect. I also added directly to those constants to make it precisely 600 x 400 but the rectangle is still cut off, so maybe I also have a graphics issue. The only other potential issue I can think of is that I have Vista but I looked around here and searched google and found no similar issues to this.
    I am not new to java but I am also not advanced. I just started using java again after about 6 months and I have made a pong game before without this problem, on another computer though.I am at my wits end. I'll check for responses tomorrow and thank you for any help or insight you can offer.

    the problem is here
    walls = new Rectangle(50, 50, WIDTH - 50, HEIGHT - 50);
    at best the right/bottom walls will equal the frame's dimensions. try it as
    walls = new Rectangle(50, 50, WIDTH - 100, HEIGHT - 100);
    but this won't get you exactly what you want, due to the titlebar height (30?)
    slightly different version
    import javax.swing.*;
    import java.awt.*;
    class DemoWormPanel extends JPanel {
        private static final int WIDTH = 600, HEIGHT = 400;
        public DemoWormPanel() {
            setBackground(Color.BLACK);
            setPreferredSize(new Dimension(WIDTH-100,HEIGHT-100));
        public static void main(String[] args) {
            DemoWormPanel wp = new DemoWormPanel();
            JFrame f = new JFrame();
            f.setLayout(new GridBagLayout());
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(wp,new GridBagConstraints());
            f.setSize(WIDTH, HEIGHT);
            f.setVisible(true);
    }

  • Button displayed with wrong size in gridbag layout

    I am having a slight problem with gridbiglayout as it is not diplsying one of my buttons properly.
    The code for my panel is given below. A screenshot of the ouput from my program can be seen at
    http://i54.photobucket.com/albums/g117/vamega/Program%20Screenshots/programscreenshot.jpg
    U can probably see that the button on the top right is not being displayed correctly.
    It is supposed to be show donate and is the donateBookButton in the code below.
    Any ideas on how to fix this would be really appreciates
    package madiath.varun.vlibrary;
    import java.awt.Color;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.GridLayout;
    import java.awt.Insets;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import javax.swing.BorderFactory;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JTextField;
    import javax.swing.border.Border;
    import javax.swing.border.TitledBorder;
    * @author varunm
    public class MainPanel extends JPanel
        private GridBagLayout gb = new GridBagLayout();
        private GridBagConstraints gc = new GridBagConstraints();
        private GridLayout gridL = new GridLayout(1,3,10,10);
        private Insets thisPanelsInsets = new Insets(10,10,10,10);
        protected JButton returnBookButton;
        protected JButton borrowBookButton;
        protected JButton donateBookButton;
        protected JPanel searchPanel;
        protected JComboBox searchMenu;
        protected JTextField searchText;
        protected JButton searchButton;
        protected JTable booksTable;
        protected LibraryTableModel libTableModel;
        protected ResultSetTableModel resTableModel;
        protected JScrollPane tableScrollPane;
        protected TableSorter sorter;
        private String[] searchOptions = {"By Title", "By Author", "By Subject", "By ISBN", "Web Reviews"};
         * Creates a new instance of MainPanel
        public MainPanel(Librarian librarian, ResultSet InitialData) throws SQLException
            initComponents(librarian, InitialData);
        private void initComponents(Librarian librarian, ResultSet InitialData) throws SQLException
            borrowBookButton        = new JButton();
            returnBookButton        = new JButton();
            donateBookButton        = new JButton();
            searchPanel             = new JPanel();
            searchMenu              = new JComboBox();
            searchText              = new JTextField();
            searchButton            = new JButton();
            booksTable              = new JTable();
            tableScrollPane         = new JScrollPane();
            resTableModel = new ResultSetTableModel(InitialData);
            sorter = new TableSorter(resTableModel);
            sorter.setTableHeader(booksTable.getTableHeader());
            booksTable.setModel(sorter);
            tableScrollPane.setViewportView(booksTable);
            setLayout(gb);
            borrowBookButton.setText("Borrow");
            returnBookButton.setText("Return");
            donateBookButton.setText("Donate");
            searchButton.setText("GO");
            searchText.setColumns(10);
            searchPanel.setLayout(gridL);
            searchPanel.add(searchText);
            searchPanel.add(searchMenu);
            searchPanel.add(searchButton);
            Border searchBorder = BorderFactory.createMatteBorder(2,2,2,2,new Color(61,137,212));
            searchBorder = BorderFactory.createTitledBorder(searchBorder,
                    "Search",
                    TitledBorder.LEFT,
                    TitledBorder.ABOVE_TOP);
            searchPanel.setBorder(searchBorder);
            searchMenu.setModel(new DefaultComboBoxModel(searchOptions));
            gc.gridx = 1;
            gc.gridy = 1;
            gc.gridheight = 1;
            gc.gridwidth = 1;
            gc.insets.set(5,0,5,0);
            gb.setConstraints(borrowBookButton, gc);
            gc.gridx = 2;
            gb.setConstraints(returnBookButton, gc);
            gc.gridx = 3;
            gb.setConstraints(donateBookButton, gc);
            gc.gridy = 2;
            gc.gridx = 2;
            gc.gridwidth = 1;
            gb.setConstraints(searchPanel, gc);
            gc.gridx = 1;
            gc.gridy = 3;
            gc.gridwidth = gc.REMAINDER;
            gc.weightx = 10;
            gc.weighty = 5;
            gc.insets.set(0,0,0,0);
            gc.fill = gc.BOTH;
            gb.setConstraints(tableScrollPane, gc);
            add(borrowBookButton);
            add(returnBookButton);
            add(donateBookButton);
            add(searchPanel);
            add(tableScrollPane);
        public Insets getInsets()
            return thisPanelsInsets;
    }

    I had done it using a workaroud of adding an ipadx value of 10 to the button.
    If anyone can find a better solution please i would be very grateful. Executable code can be found below. This time i have added a main method. sorry about forgetting to do so last time :-()
    import java.awt.Color;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.GridLayout;
    import java.awt.Insets;
    import javax.swing.BorderFactory;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JTextField;
    import javax.swing.border.Border;
    import javax.swing.border.TitledBorder;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.JFrame;
    public class MainPanel extends JPanel
        private GridBagLayout gb = new GridBagLayout();
        private GridBagConstraints gc = new GridBagConstraints();
        private GridLayout gridL = new GridLayout(1,3,10,10);
        private Insets thisPanelsInsets = new Insets(10,10,10,10);
        protected JButton returnBookButton;
        protected JButton borrowBookButton;
        protected JButton donateBookButton;
        protected JPanel searchPanel;
        protected JComboBox searchMenu;
        protected JTextField searchText;
        protected JButton searchButton;
        protected JTable booksTable;
        protected DefaultTableModel model;
        protected JScrollPane tableScrollPane;
        private String[] searchOptions = {"By Title", "By Author", "By Subject", "By ISBN", "Web Reviews"};
         * Creates a new instance of MainPanel
        public MainPanel()
            initComponents();
        private void initComponents()
            borrowBookButton        = new JButton();
            returnBookButton        = new JButton();
            donateBookButton        = new JButton();
            searchPanel             = new JPanel();
            searchMenu              = new JComboBox();
            searchText              = new JTextField();
            searchButton            = new JButton();
            booksTable              = new JTable();
            tableScrollPane         = new JScrollPane();
            model = new DefaultTableModel(
                    new Object[][]
                {"something","something","something","something"},
                {"something","something","something","something"},
                {"something","something","something","something"},
                {"something","something","something","something"}
                    new String[]{"Coloum 1","Coloum 2","Coloum 3","Coloum 4",}
            booksTable.setModel(model);
            tableScrollPane.setViewportView(booksTable);
            setLayout(gb);
            borrowBookButton.setText("Borrow");
            returnBookButton.setText("Return");
            donateBookButton.setText("Donate");
            searchButton.setText("GO");
            searchText.setColumns(10);
            searchPanel.setLayout(gridL);
            searchPanel.add(searchText);
            searchPanel.add(searchMenu);
            searchPanel.add(searchButton);
            Border searchBorder = BorderFactory.createMatteBorder(2,2,2,2,new Color(61,137,212));
            searchBorder = BorderFactory.createTitledBorder(searchBorder,
                    "Search",
                    TitledBorder.LEFT,
                    TitledBorder.ABOVE_TOP);
            searchPanel.setBorder(searchBorder);
            searchMenu.setModel(new DefaultComboBoxModel(searchOptions));
            gc.gridx = 1;
            gc.gridy = 1;
            gc.gridheight = 1;
            gc.gridwidth = 1;
            gc.insets.set(5,0,5,0);
            gb.setConstraints(borrowBookButton, gc);
            gc.gridx = 2;
            gb.setConstraints(returnBookButton, gc);
            gc.gridx = 3;
            gb.setConstraints(donateBookButton, gc);
            gc.gridy = 2;
            gc.gridx = 2;
            gc.gridwidth = 1;
            gb.setConstraints(searchPanel, gc);
            gc.gridx = 1;
            gc.gridy = 3;
            gc.gridwidth = gc.REMAINDER;
            gc.weightx = 10;
            gc.weighty = 5;
            gc.insets.set(0,0,0,0);
            gc.fill = gc.BOTH;
            gb.setConstraints(tableScrollPane, gc);
            add(borrowBookButton);
            add(returnBookButton);
            add(donateBookButton);
            add(searchPanel);
            add(tableScrollPane);
        public Insets getInsets()
            return thisPanelsInsets;
        public static void main(String[] args)
             JFrame frame = new JFrame();
             frame.add(new MainPanel());
             frame.pack();
             frame.setVisible(true);
    }

  • File displaying wrong size.

    The file displaying the wrong size is Fallout New Vegas on a wineskin wrapper. The wrapper was 500 Megabytes. When I installed fallout New Vegas on the wrapper, it remained at 500 Megabytes. I had installed it on the Desktop and now my About my Mac is doing the same thing. It only displays the 500 megabytes the file shows. I clicked more info and it still said that. How do I fix this to display it?
    BTW, when I copy it, it says 8.33 Gigabytes and  that is it's correct size.

    The Mac is reporting file size in megabytes.  Windows is reporting file size in mebibytes.  The difference is that a megabyte is 1,000,000 bytes, while a mebibyte is 1,048,576 bytes.  This change was made in Mac OS X so that reported disk sizes would agree with manufacturer's claimed sizes...  most manufacturers claiming a size of 500 GB mean 500,000,000,000 bytes.  Mac OS X will also call that number of bytes 500 GB, while Windows will call it 465.7 GB.  That confused a lot of people.
    For more information, see:
    http://en.wikipedia.org/wiki/Gigabyte#Consumer_confusion

  • Text displaying selectively, and programs not letting you input text

    I posted here once before under a different name when my internet wasn't working and got a prompt, exceedingly detailed and very useful response. Hopefully another brilliant Mac user can help me this time!
    As you can see I have an intel-core solo Mac mini. I love it very much, but recently text has been display in an unusual way. Sometimes, in some programs, certain letters will not display. http://tinyurl.com/ygmhc4 is a collage thing I just made to show what I mean more clearly. This happens in MSN, in system. . .programs, I guess, in Firefox, in Growl notification, in Google Notifier, all over the place! I haven't noticed it in MS Word yet, though, but I don't use it often. It's really quite annoying. Any thoughts? It tends to be different letters, but for example all lower-case Us will disappear. But next time, it will be all capital Hs and lowercase Fs. And if you close the program and reopen, it sometimes displays correctly! In Firefox, sometimes entire passages of text will not appear, unless I change the text size to very small sizes. How perplexing!
    And another issue I have had: Sometimes a program like Firefox will not recognize ANY keyboard input unless I switch to another application, and then back again. It's a minor annoyance, but it happens pretty regularly.
    Help with either issue would be GREATLY appreciated as while both are not destroying my machine, they are harming my productivity. Thanks SO MUCH!

    Oh and another display issue, although this MAY be a Firefox problem as it only happens in Firefox. Then again, it seems my computer is really having trouble with text.
    Here it is: when I am entering text in to a textbox, the text-entry cursor is slower than the text I am entering. For example, see http://tinyurl.com/yakrlp
    In that box, I typed "Unfortunately, this is not the end of my crazy text-display issues! I can't see the last couple of letters I've typed until I type severl mare after them causing ridiculous typos like those because It'it's too late! And I dont't know how many backspaces to do because the cursor is in the wrong place. Annoying, huh? Let me tell you it is. Perhaps this is a Firefox issue, but it seems like it isn't."
    As you can see, this is causing a lot of problems. It only appears on SOME websites. For example, on this site, entering this text, it's fine. On some forums, like the MozillaZine support forum, and also in Gmail, this problem appears. Please help! Or is this a Firefox issue?
    It seems I have a lot of problems!

  • Mouse cursor displays the wrong icon

    My cursor still changes based on the context, like hovering over a link or in a text field, but displays the wrong icon.  After focusing a text field, the cursor is a reggular arrow in the text editor and turns to the text staff outside of it when it should be an arrow. 
    I just did a fresh install of 10.6.8 on a crucial m4 - ct256m4ssd
    I FOUND THAT RESIZING THE MOUSE CURSOR IN THE UNIVERSAL ACCESSS PREFERENCES temporarily restores the cursor to a size-adjusted mouse, until I do something like click in a text field.

    just re-install the os

  • Can anyone help me solve the problem of text displaying very rough on my new ASUS PA279Q display monitor running off my MacBook Pro?

    This is regarding a brand new ASUS PA 279Q, 2560 x 1440 IPS monitor. I'm connected via mini display port (into thunderbolt port on MacBook Pro) to display port on ASUS monitor; using cable ASUS included with the monitor. Mid 2012 MacBook Pro…full specs at bottom of this post.
    I have resolution set at 2560 x 1440 which is the native resolution according to the ASUS spec. I tried the other resolutions available in my System Preferences and text displayed rough with those settings too. I've tried adjusting contrast, brightness and sharpness via the ASUS control panel and didn't solve the problem. Also tried calibrating via Mac's system preferences/display and that did not improve text display either. All the text on this monitor (no matter what software I launch, Finder, InDesign, Illustrator, MS Word, Excel, VMWare Windows XP, Windows versions of Word, Excel, Acrobat, etc, all are consistently rendering text the same way ---  ROUGH and with "HALOS" around each letter.
    All point sizes of text and at various scales, display very rough on the screen. (My comparison is the retina display of my MBP and a Thunderbolt…so those two displays are my expectations.) I'm using the same MBP for both a Thunderbolt display (at work) and this ASUS at my home office.
    On the ASUS it's not as noticeable when the text is on white backgrounds, but I'm a graphic designer and compose images with text all day everyday. Not to mention the specs on this ASUS PA279Q indicate it's built for the professional so I would expect better text rendering. I haven't even addressed color calibration and balance yet, because that won't matter to me if the text won't display any better than it is now.
    I was so hopeful after researching all the specs on this monitor it would be a viable alternative to the glossy display of the Thunderbolt display. (Which, I do love the Thunderbolt display for it's clarity and how it displays crisp, clean text at all sizes. (This ASUS actually displays text decently if I increase the text so each letter is about 4" high. Which is pointless for practical purposes -- that'd be like doing page layout through a microscope!)
    I kept holding off on getting a monitor for the home office thinking the Thunderbolt would be updated soon. I'd be sick if I dropped a grand on piece of 2011 technology only to learn a few days later an updated Thunderbolt display hit the market! Not to mention, I'm praying Apple comes out with a less reflective Thunderbolt display. The glare and reflection is the main reason I looked elsewhere for a large monitor; hence my asking for help. Hoping the ASUS text display issue can be worked out. My expectation is for it to display like the MBP retina and Thunderbolt display text. That possible?
    Alternatively, I guess I could do the Apple Refurb Thunderbolt at $799. And see if there's a decent aftermarket anti-glare I could stick on it?
    Thanks for reading my post. Hope someone can help; offer any suggestions? Words or wisdom?
    Has anyone else had similar issues and figured out a resolution? Help!
    MacBook Pro
    Retina, Mid 2012, 2.3 Ghz Intel i7
    8GB 1600 MHz DDR3
    OS X 10.8.5
    NVIDIA GeForce GT 650M 1024 MB
    ASUS PA279Q

    I uninstalled those two items. It still runs slow on start-up and when opening safari, firefox, iphoto, itunes, etc. It's not snappy like it used to be. Any other ideas? Thanks.

  • Zen 16GB lock ups, text display and video conversion probl

    Three issues with my new Zen 6GB. Any ideas are welcome.
    The first is that it keeps randomly locking up - not whitescreened or blackscreened - just locked displaying whatever it was previously showing. This happens both while trying to transfer files (it's the same using Media Player synch, Creative Media Explorer or Windows Explorer) and while playing back files. The only solution I've found is to get a needle for the reset button and let it go through "rebuilding" when I turn it on again. That then leads to it displaying the wrong album art... but I can li've with that for now...
    The second issue is a strange, definately software, one - the numeral "2" is always displayed one line below the rest of the text. This happens in the track listing, track description during playback and while setting the time / date / alarm. It's not the case when displaying the time in the top right corner, but it is in every other situation, and it's only the figure "2" that's affected.
    The third issue is that the Zen Video Convertor refuses to convert any video files. Whatever format of file I have, from whatever source, I always get an error to say that the required codec is not installed.
    As I said, any ideas are welcome. I'm travelling almost constantly for the next month, so don't really want to send off for replacement or repair (unless of course for a full refund, and I'll buy a replacement at the airport!).

    Plz Cretaive, Add UMS mode and recording radio ! it's very important for many people !
    Creative plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz... xD
    You think devellopers come here
    You think we must creat a petition for UMS mode
    Message Edited by Jejebond on -22-200704:32 PM

  • How to give error message for the screen element text field when wrong i/p

    How to give error message for the screen element text field when wrong i/p
    when wrong input given
    eg. 
    I have a text box with SBOOK-CARRID
    so when user give wrong entry in text box i.e LG
    then I should give some error stating that the the input is invalid or not available ,
    now it showing the error of standard messages,
    i want manual message to be displayed when error comes.
    Thank you,
    Regards,
    Jagrut Bharatkumar Shukla

    Hi all,
    Thank you for your valuable reply,
    but the thing is that its a screen field,
    i.e text box not a selection screen
    i created in screen layout
    with name sbook-carrid
    now i want to get error message display if wrong i/p is given
    thank you.
    Regards,
    Jagrut bharatkumar Shukla,

  • Source monitor displays a different size to Program monitor in CC2014

    I have imported a clip and the source monitor displays a different size in the program monitor?
    Thanks Chris

    It looks like your sequence is set up for the wrong size. Select a video file and right click 'New Sequence from Clip' see if that helps. I see that your video material is HD did you set up the sequence to match the earlier stills? that might be bigger than HD? If that is the case make a sequence the size for the video and use 'scale to frame size' for the stills.

  • Sql 2008: enlarging text display in Results pane.....

    Is it possible to enlarge the text displayed in the Results pane? (useful when viewing on an overhead projector)
    edm2
    *** Just figured it out. Under SSMS, Tools > Options > Environment > Fonts and Colors > Grid Results (under Show settings for drop down), type desired font size but then you must close and reopen SSMS. Closing the query editor pane itself is not
    enough

    Here is the Grid Results font setting panel:
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Time machine gives wrong size in lion 10.7.4

    The hard drive has a total size of 250 gb but time machine gives wrong size of 750 gb??

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Select "system.log" from the file list. Enter "backupd" (without the quotes) in the String Matching text field. Post the messages from the last backup, beginning with "Starting standard backup."
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Do not post many repetitions of the same message.
    Some personal information, such as the names of your files, may be included — edit that out, too, but don’t remove the context.

  • Can I change the size of my iphoto book, when I am ready, but changed the wrong size

    Hallo,
    after several weeks work with my iphoto book, I discover, that I choosed the wrong size.
    I choosed  the size- "large book" instead of   XL book 33x31 cm .
    Can I change or have I do do the work twice.
    Many thanks
    itaenzer

    select the book in the source pane on the left and duplicate it (command-D) and then click on the themes button and select the new size/style/theme  --  closely inspect the book to be sure it is still correct (text may reflow due to size changes as may photo arrangement) - preview (
    Before ordering your book preview it using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF for reference - the delivered book will match it. ) and order if it is what you want
    LN

  • Texts going to wrong phone in account

    We have 5 iPhones in our family account.  Recently, person 1 will send a text to person 2, but the message will show up on person 3's phone.  Oddly, person 3's text display show the message as if person 3 sent it!  The messages often go to several of the phones, so it's impossible to tell (without asking) who actually sent the message.  Any ideas?

    I am having the same issue.  My wife & I both have iphone 4.  We both use the same iTunes Apple ID.  After we both updated to IOS 5.1, iMessage conversations that she has started showing up on my phone.  They don't arrive with an alert like a new message, they just show up.  Also, iMessages that I get from her appear as if they came from me, which gets confusing.  I think this has something to do with the new "feature" that your iMessage conversations appear across devices, like if you have an iPhone and an iPad.    I already checked, and my phone is set to receive iMessages from my number and my email.  Her phone is set to receive iMessages from her number and her email. 

Maybe you are looking for

  • Change dot colours on month view???

    Hi, Is it possible to change the dot colours on the month view of the calendar so it represents the sync'd calendars? It would be better if it showed a coloured dot under the day's number relevent to the calendar that has an appointment +ie. if you h

  • F.13 clearing with tolerance

    Hi Experts, We are clearing Employee vendor document line items through F.13, below configuration rules made in the OB74. Criterion 1   = ZUONR   Assignment field Criterion 2   = DMBTR   Amount filed Criterion 3   = HKONT   Line item GL account It is

  • Oracle 11g clusterware installation issue.

    In our test lab, we are facing the following issue.Kindly help us to resolve this issue. Environment Details O/S : Oracle Enterprise Linux Database: Oracle 11g Clusterware: Oracle 11g The nodes are created using vmware. All the pre installation check

  • Backup failed while copying the redo files due to previous errors

    Backup failed while copying the redo files due to previous errors. DATA file backup is successfull. Please suggest what measures we can take to avoid this.. This is a daily online backup. logs BR0001I ******************************___________________

  • MacBook CD/Drive not working?

    Hi For the past 2 days, whenever I try to put a CD or DVD in, it makes a funny noise then spits the CD or DVD back out? Also when I start up the laptop, the CD/DVD drive makes a funny noise. Everything else on laptop works fine. Please help!