Stopping the image from advancing in the frame

I'm doing an animated clip using stills , I've done one before. But this time , each image added begins to advance to the foreground, then the next starts in the background and advances ...... Very annoying . I just want them to stay still and not do this advance . Where does one turn this off ?

Click on the Media tab, then select Photos. At the base of the Photos pane click on "Show Photo Settings". In the small black panel that appears, uncheck the item "Ken Burns Effect"
John
PS Posted before seeing your last reply to Klaus!
Message was edited by: John Cogdell - added PS

Similar Messages

  • Stop the Frame from being able to be dragged

    Hi all
    I was hoping that someone could tell me how to stop the frame from being dragged
    while a dialog is showing.
    I am using this code to call the dialog.
    When is is visible I can still click and drag the frame behind it.
    I want to set it so you can not drag it until the dialog has be closed.
        public void runStartup() {
            Login dlg = new Login(this, "Login", true);
            Dimension dlgSize = dlg.getPreferredSize();
            Dimension frmSize = getSize();
            Point loc = getLocation();
            dlg.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x,
                            (loc.y + 22));
            dlg.setModal(true);
            dlg.pack();
            dlg.show();
        }

    here is the Login Class
    package build0_0_1.dialogs;
    import java.awt.BorderLayout;
    import java.awt.Frame;
    import javax.swing.JDialog;
    import javax.swing.JPanel;
    import java.awt.*;
    import com.borland.jbcl.layout.XYLayout;
    import com.borland.jbcl.layout.*;
    import javax.swing.JLabel;
    import javax.swing.JComboBox;
    import javax.swing.JPasswordField;
    import javax.swing.JButton;
    import javax.swing.ImageIcon;
    import build0_0_1.images.image_pics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusAdapter;
    import build0_0_1.mysql.MYSQLDAO;
    import build0_0_1.Command;
    import javax.swing.*;
    import java.sql.SQLException;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2005</p>
    * <p>Company: </p>
    * @author not attributable
    * @version 1.0
    public class Login extends JDialog {
        ImageIcon back;
        MYSQLDAO mysqlDAO;
        Command command;
        JPanel panel1 = new JPanel();
        XYLayout xYLayout1 = new XYLayout();
        JLabel loginLabel = new JLabel();
        JLabel nameLabel = new JLabel();
        JLabel passwordLabel = new JLabel();
        JComboBox jComboBox1 = new JComboBox();
        JPasswordField passwordField = new JPasswordField();
        JButton loginButton = new JButton();
        JButton cancelButton = new JButton();
        JLabel backLabel = new JLabel();
        JLabel logoLabel = new JLabel();
        JComboBox locationComboBox = new JComboBox();
        JLabel locationLabel = new JLabel();
        public Login(Frame frame, String string, boolean _boolean) {
            super(frame, string, _boolean);
            try {
                setDefaultCloseOperation(DISPOSE_ON_CLOSE);
                jbInit();
                pack();
            } catch (Exception exception) {
                exception.printStackTrace();
        public Login() {
            this(new Frame(), "Login", false);
        private void jbInit() throws Exception {
            this.setResizable(false);
            this.setUndecorated(true);
            this.setSize(new Dimension(450, 220));
            back = new ImageIcon(image_pics.LOGIN_BACK);
            logoLabel.setIcon(new ImageIcon(image_pics.SMALL_LOGO));
            panel1.setLayout(xYLayout1);
            panel1.setMinimumSize(new Dimension(450, 220));
            panel1.setPreferredSize(new Dimension(450, 220));
            loginLabel.setText("Login");
            nameLabel.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            nameLabel.setText("User Name");
            passwordLabel.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            passwordLabel.setText("Password");
            backLabel.setIcon(back);
            passwordField.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            passwordField.setText("Enter Password");
            passwordField.addFocusListener(new
                                           Login_passwordField_focusAdapter(this));
            loginButton.setBackground(new Color(231, 231, 231));
            loginButton.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            loginButton.setText("Login");
            loginButton.addActionListener(new Login_loginButton_actionAdapter(this));
            cancelButton.setBackground(new Color(231, 231, 231));
            cancelButton.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            cancelButton.setActionCommand("cancelButton");
            cancelButton.setSelected(true);
            cancelButton.setText("Cancel");
            cancelButton.addActionListener(new Login_cancelButton_actionAdapter(this));
            jComboBox1.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            jComboBox1.setEditable(true);
            logoLabel.setBorder(null);
            logoLabel.setHorizontalAlignment(SwingConstants.CENTER);
            logoLabel.setHorizontalTextPosition(SwingConstants.CENTER);
            logoLabel.setText("");
            locationLabel.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN, 11));
            locationLabel.setText("Location");
            locationComboBox.setFont(new java.awt.Font("Lucida Grande", Font.PLAIN,
                    11));
            panel1.add(cancelButton, new XYConstraints(337, 170, -1, -1));
            panel1.add(loginButton, new XYConstraints(245, 170, -1, -1));
            panel1.add(loginLabel, new XYConstraints(208, 21, -1, -1));
            panel1.add(logoLabel, new XYConstraints(21, 20, 57, 54));
            panel1.add(passwordLabel, new XYConstraints(99, 141, -1, -1));
            panel1.add(locationLabel, new XYConstraints(104, 72, -1, -1));
            panel1.add(nameLabel, new XYConstraints(90, 106, -1, -1));
            panel1.add(passwordField, new XYConstraints(185, 138, 219, -1));
            panel1.add(jComboBox1, new XYConstraints(183, 103, 219, -1));
            panel1.add(locationComboBox, new XYConstraints(183, 67, 219, -1));
            panel1.add(backLabel, new XYConstraints(0, 0, 451, 223));
            getContentPane().add(panel1);
            panel1.grabFocus();
         * Exit action performed.
         * @param actionEvent ActionEvent
        public void cancelButton_actionPerformed(ActionEvent actionEvent) {
            System.exit(0);
         * Login to MySQL Server. Using User ame and Password
         * This pass into MYSQLDAO user Name and Password
         * @param actionEvent ActionEvent
        //This pass into MYSQLDAO user Name and Password
        public void loginButton_actionPerformed(ActionEvent actionEvent) {
            String pass = new String(passwordField.getPassword());
            if (!pass.equals("Enter Password")) {
                System.out.println("This the username   " +
                                   (String) jComboBox1.getSelectedItem() + "\n" +
                                   "Password is     " + pass);
                try {
                    mysqlDAO = new MYSQLDAO();
                    mysqlDAO.setUserName((String) jComboBox1.getSelectedItem().
                                         toString().
                                         trim());
                    mysqlDAO.setPassword(new String(passwordField.getPassword()));
                } catch (SQLException ex) {
                    // handle the error
                    System.out.println("SQLException: " + ex.getMessage());
                    System.out.println("SQLState: " + ex.getSQLState());
                    System.out.println("VendorError: " + ex.getErrorCode());
                } catch (Exception ex) {
                    // handle the error
                    System.out.println("Erro no registro do Driver Mysql!!!!");
                hide();
         * Password field select all.
         * Feild is select. The user can just start typing
         * and overright the password feild
         * @param focusGained FocusEvent
        public void passwordField_focusGained(FocusEvent focusEvent) {
            passwordField.selectAll();
    class Login_loginButton_actionAdapter implements ActionListener {
        private Login adaptee;
        Login_loginButton_actionAdapter(Login adaptee) {
            this.adaptee = adaptee;
        public void actionPerformed(ActionEvent actionEvent) {
            adaptee.loginButton_actionPerformed(actionEvent);
    class Login_passwordField_focusAdapter extends FocusAdapter {
        private Login adaptee;
        Login_passwordField_focusAdapter(Login adaptee) {
            this.adaptee = adaptee;
        public void focusGained(FocusEvent focusEvent) {
            adaptee.passwordField_focusGained(focusEvent);
    class Login_cancelButton_actionAdapter implements ActionListener {
        private Login adaptee;
        Login_cancelButton_actionAdapter(Login adaptee) {
            this.adaptee = adaptee;
        public void actionPerformed(ActionEvent actionEvent) {
            adaptee.cancelButton_actionPerformed(actionEvent);
    }

  • Can I Stop my Images from being Copied from my Web Pages

    On some websites I visit, it prevents you from right clicking on the image and saving it. A message pops up saying the image cannot be copied.
    Would any of you kind folk know of a way I can stop my images from being saved from my Dreamweaver web pages?
    Many thanks in advance for your anticipated help!

    I asked a question. Hans was kind enough to give me a solution, and for that I thank him! I have also learned a little more in the process!
    We have already established that the solution stops people right clicking on an image and saving the image (be it in Windows Explorer or not), but it has also been established that it is by no means a fool proof way of protecting images and that there are other ways of copying images from a webpage. However, it is another level of protection.
    Unfortunately, I do not want to watermark my images as I do not like looking as watermarked images myself. I also downsize my images for the web. I was just looking for another level of protection.
    Thanks for the input anyway!

  • My Iphoto has stopped downloading images from my camera and then crashes iPhoto

    My Iphoto has stopped downloading images from my camera and then crashes iPhoto

    This is what apperes on my screen
    Process:         iPhoto [1603]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [143]
    User ID:         501
    Date/Time:       2013-01-17 21:16:29.594 +0000
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          28280 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  545 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      AA2EE243-DC20-80AD-2F81-12E02E8E930A
    Crashed Thread:  26  Dispatch queue: com.apple.RedRock.RKInfoDictionaryMgr
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSMallocException', reason: 'Out of memory. We suggest restarting the application. If you have an unsaved document, create a backup copy in Finder, then try to save.'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x9797912b __raiseError + 219
    1   libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    2   Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    3   CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    4   CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    5   CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    6   CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    7   CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    8   Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    9   CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    10  CoreFoundation                      0x9797925c __raiseError + 524
    11  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    12  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    13  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    14  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    15  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    16  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    17  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    18  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    19  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    20  CoreFoundation                      0x9797925c __raiseError + 524
    21  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    22  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    23  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    24  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    25  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    26  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    27  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    28  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    29  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    30  CoreFoundation                      0x9797925c __raiseError + 524
    31  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    32  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    33  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    34  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    35  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    36  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    37  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    38  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    39  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    40  CoreFoundation                      0x9797925c __raiseError + 524
    41  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    42  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    43  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    44  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    45  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    46  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    47  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    48  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    49  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    50  CoreFoundation                      0x9797925c __raiseError + 524
    51  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    52  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    53  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    54  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    55  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    56  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    57  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    58  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    59  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    60  CoreFoundation                      0x9797925c __raiseError + 524
    61  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    62  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    63  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    64  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    65  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    66  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    67  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    68  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    69  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    70  CoreFoundation                      0x9797925c __raiseError + 524
    71  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    72  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    73  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    74  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    75  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    76  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    77  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    78  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    79  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    80  CoreFoundation                      0x9797925c __raiseError + 524
    81  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    82  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    83  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    84  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    85  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    86  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    87  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    88  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    89  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    90  CoreFoundation                      0x9797925c __raiseError + 524
    91  libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    92  Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    93  CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    94  CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    95  CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    96  CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    97  CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    98  Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    99  CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    100 CoreFoundation                      0x9797925c __raiseError + 524
    101 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    102 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    103 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    104 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    105 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    106 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    107 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    108 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    109 CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    110 CoreFoundation                      0x9797925c __raiseError + 524
    111 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    112 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    113 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    114 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    115 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    116 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    117 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    118 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    119 CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    120 CoreFoundation                      0x9797925c __raiseError + 524
    121 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    122 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    123 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    124 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    125 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    126 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    127 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    128 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    129 CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    130 CoreFoundation                      0x9797925c __raiseError + 524
    131 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    132 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    133 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    134 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    135 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    136 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    137 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    138 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    139 CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    140 CoreFoundation                      0x9797925c __raiseError + 524
    141 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    142 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    143 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    144 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    145 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    146 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    147 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    148 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    149 CoreFoundation                      0x9788e7c1 -[NSArray description] + 49
    150 CoreFoundation                      0x9797925c __raiseError + 524
    151 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    152 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    153 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    154 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    155 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    156 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    157 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    158 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    159 CoreFoundation                      0x97968fc0 -[NSArray descriptionWithLocale:] + 48
    160 Foundation                          0x923bcf04 _NSDescriptionWithLocaleFunc + 94
    161 CoreFoundation                      0x97844f00 __CFStringAppendFormatCore + 16320
    162 CoreFoundation                      0x9789174c _CFStringCreateWithFormatAndArgumentsAux + 108
    163 CoreFoundation                      0x97906a96 _CFLogvEx + 118
    164 Foundation                          0x923f7cc8 NSLogv + 137
    165 Foundation                          0x923f7c3a NSLog + 27
    166 AppKit                              0x932c3f85 -[NSApplication reportException:] + 84
    167 AppKit                              0x93a43b81 _NSDefaultTopLevelErrorHandler + 115
    168 AppKit                              0x9360c9f1 uncaughtErrorProc + 99
    169 CoreFoundation                      0x979791d6 __raiseError + 390
    170 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    171 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    172 CoreFoundation                      0x9784601d __CFStringChangeSizeMultiple + 1645
    173 CoreFoundation                      0x97845872 __CFStringAppendBytes + 850
    174 CoreFoundation                      0x97844fbf __CFStringAppendFormatCore + 16511
    175 CoreFoundation                      0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    176 CoreFoundation                      0x97902e78 -[__NSCFString appendFormat:] + 88
    177 Foundation                          0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    178 CoreFoundation                      0x97968fc0 -[NSArray descriptionWithLocale:] + 48
    179 Foundation                          0x923bcf04 _NSDescriptionWithLocaleFunc + 94
    180 CoreFoundation                      0x97844f00 __CFStringAppendFormatCore + 16320
    181 CoreFoundation                      0x9789174c _CFStringCreateWithFormatAndArgumentsAux + 108
    182 CoreFoundation                      0x97906a96 _CFLogvEx + 118
    183 Foundation                          0x923f7cc8 NSLogv + 137
    184 Foundation                          0x923f7c3a NSLog + 27
    185 AppKit                              0x932c3f85 -[NSApplication reportException:] + 84
    186 AppKit                              0x93a43b81 _NSDefaultTopLevelErrorHandler + 115
    187 AppKit                              0x9360c9f1 uncaughtErrorProc + 99
    188 CoreFoundation                      0x979791d6 __raiseError + 390
    189 libobjc.A.dylib                     0x9975c52e objc_exception_throw + 230
    190 Foundation                          0x924c0804 ___NSInitializePlatform_block_invoke_0 + 0
    191 CoreFoundation                      0x9784601d __CFStringChangeSizeM
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x989187d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98917cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x9786f599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x97874f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9787463a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x978744ab CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x941fc15a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x941fbec9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x941fbd44 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x933bba3a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x933bb26c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x933b16cc -[NSApplication run] + 855
    12  com.apple.AppKit                        0x933546f6 NSApplicationMain + 1053
    13  com.apple.iPhoto                        0x000fac99 0xeb000 + 64665
    14  com.apple.iPhoto                        0x000fa2e5 0xeb000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9891ac02 __select_nocancel + 10
    1   libdispatch.dylib                       0x90b32a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x90b327a9 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x9891a672 __mmap + 10
    1   libsystem_c.dylib                       0x97d0163b allocate_pages + 163
    2   libsystem_c.dylib                       0x97d06d54 large_malloc + 1087
    3   libsystem_c.dylib                       0x97d0cc7b szone_malloc_should_clear + 3889
    4   libsystem_c.dylib                       0x97d01a3e szone_malloc + 24
    5   libsystem_c.dylib                       0x97cff54b malloc_zone_malloc + 75
    6   libsystem_c.dylib                       0x97cfff87 malloc + 53
    7   com.apple.CoreServices.CarbonCore          0x96619587 CSMemNewPtr + 50
    8   com.apple.CoreServices.CarbonCore          0x96618651 CSMemNewHandle + 61
    9   com.apple.QD                            0x999354e4 AllocatePixMapBuffer + 231
    10  com.apple.QD                            0x99934e8d NewGWorldPB + 391
    11  com.apple.QD                            0x999352e6 NewGWorld + 166
    12  com.apple.QuickTime                     0x93f2deb2 QTNewGWorld + 349
    13  com.apple.QuickTime                     0x93f6232d GetNewGWorld + 664
    14  com.apple.QuickTime                     0x93f5b032 AllocateCodecImageBuffer + 1557
    15  com.apple.QuickTime                     0x93f1bc9d ICMSequenceBuildChain + 554
    16  com.apple.QuickTime                     0x93f0e794 DoBandedDecompress + 4167
    17  com.apple.QuickTime                     0x93f0d6e0 ICMAction + 1286
    18  com.apple.QuickTime                     0x93f0cfd0 ICMDeviceLoop + 3924
    19  com.apple.QuickTime                     0x93f130a0 DecompressSequenceFrameWhen + 803
    20  com.apple.QuickTime                     0x93f12d74 DecompressSequenceFrameS + 61
    21  com.apple.QuickTimeImporters.component          0x965857ad importGraphicDrawInternal + 1834
    22  com.apple.QuickTimeImporters.component          0x9657f1ea importGraphicDrawOrDecide + 1782
    23  com.apple.CoreServices.CarbonCore          0x966e2abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    24  com.apple.CoreServices.CarbonCore          0x966e2aff CallComponentFunctionWithStorageProcInfo + 30
    25  com.apple.QuickTimeImporters.component          0x9657dd31 ImportGraphicComponentDispatch + 81
    26  com.apple.CoreServices.CarbonCore          0x9665caee CallComponent + 151
    27  com.apple.CoreServices.CarbonCore          0x9665cb65 DelegateComponentCall + 24
    28  com.apple.QuickTimeImporters.component          0x9651c768 ImportJFIFComponentDispatch + 98
    29  com.apple.CoreServices.CarbonCore          0x9665caee CallComponent + 151
    30  com.apple.CoreServices.CarbonCore          0x9665cb48 CallComponentDispatch + 29
    31  com.apple.QuickTimeComponents.component          0x95e97b61 0x95305000 + 12135265
    32  com.apple.QuickTimeComponents.component          0x95bd4be0 0x95305000 + 9239520
    33  com.apple.CoreServices.CarbonCore          0x966f191f callComponentStorage_444 + 32
    34  com.apple.CoreServices.CarbonCore          0x966e2abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    35  com.apple.CoreServices.CarbonCore          0x966e2aff CallComponentFunctionWithStorageProcInfo + 30
    36  com.apple.QuickTimeComponents.component          0x95bd3b92 ExportBaseComponentDispatch + 81
    37  com.apple.CoreServices.CarbonCore          0x9665caee CallComponent + 151
    38  com.apple.CoreServices.CarbonCore          0x9665cb65 DelegateComponentCall + 24
    39  com.apple.QuickTimeComponents.component          0x95bd83e2 ExportJFIFComponentDispatch + 98
    40  com.apple.CoreServices.CarbonCore          0x9665caee CallComponent + 151
    41  com.apple.CoreServices.CarbonCore          0x9665cb48 CallComponentDispatch + 29
    42  com.apple.QuickTimeComponents.component          0x95e98825 0x95305000 + 12138533
    43  com.apple.QuickTimeComponents.component          0x95bd4125 0x95305000 + 9236773
    44  com.apple.CoreServices.CarbonCore          0x966f1adb callComponentStorage_44 + 25
    45  com.apple.CoreServices.CarbonCore          0x966e2abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    46  com.apple.CoreServices.CarbonCore          0x966e2aff CallComponentFunctionWithStorageProcInfo + 30
    47  com.apple.QuickTimeComponents.component          0x95bd3b92 ExportBaseComponentDispatch + 81
    48  com.apple.CoreServices.CarbonCore          0x9665caee CallComponent + 151
    49  com.apple.CoreServices.CarbonCore          0x9665cb65 DelegateComponentCall + 24
    50  com.apple.QuickTimeComponents.component          0x95bd83e2 ExportJFIFComponentDispatch + 98
    51  com.apple.CoreServices.CarbonCore          0x9665caee CallComponent + 151
    52  com.apple.CoreServices.CarbonCore          0x9665cb48 CallComponentDispatch + 29
    53  com.apple.QuickTime                     0x940fe8b7 GraphicsExportDoExport + 43
    54  com.apple.iPhoto                        0x004aa843 0xeb000 + 3930179
    55  com.apple.iPhoto                        0x0040b01c 0xeb000 + 3276828
    56  com.apple.iPhoto                        0x0040b862 0xeb000 + 3278946
    57  com.apple.iPhoto                        0x0040b9a1 0xeb000 + 3279265
    58  com.apple.Foundation                    0x92423cc1 -[NSBlockOperation main] + 188
    59  com.apple.Foundation                    0x923f6fb9 -[__NSOperationInternal start] + 740
    60  com.apple.Foundation                    0x923f6cce -[NSOperation start] + 67
    61  com.apple.Foundation                    0x923fedc9 __block_global_6 + 135
    62  libdispatch.dylib                       0x90b33f8f _dispatch_call_block_and_release + 15
    63  libdispatch.dylib                       0x90b2fc82 _dispatch_client_callout + 46
    64  libdispatch.dylib                       0x90b30f02 _dispatch_worker_thread2 + 285
    65  libsystem_c.dylib                       0x97ce7e12 _pthread_wqthread + 441
    66  libsystem_c.dylib                       0x97ccfcca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0209ce12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0209befa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9242c3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x9242c1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x92431740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026ea48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x99769586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x020a5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x997695d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0209e22c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x0209daef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x0209d313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x0209bf10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    17  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x9891abe6 __select + 10
    1   com.apple.CoreFoundation                0x978b8c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    3   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x989187d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x98917cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x9786f599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x97874f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9787463a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x978744ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x92403946 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.apple.proxtcore                     0x0209e06c -[XTRunLoopThread run:] + 469
    8   com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    11  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97cea512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x966c16ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x966c1184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x966c140d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x958fb5ac 0x95305000 + 6251948
    7   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    8   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 14:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 15:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 16:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 17:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 18:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 19:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 20:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x97d77afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x95a12556 0x95305000 + 7394646
    4   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    5   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97d700a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x923fc734 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x0013ca64 0xeb000 + 334436
    5   com.apple.iPhoto                        0x0013c672 0xeb000 + 333426
    6   com.apple.CoreFoundation                0x978cad6d __invoking___ + 29
    7   com.apple.CoreFoundation                0x978caca7 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x0270685b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x027175f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x997695d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x020a5df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x997695d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x0209e22c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x0209daef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x0209d313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x0209bf10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x923fe1d8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x923fe15b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    20  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 22:: Import thread 0
    0   libsystem_kernel.dylib                  0x9891a91a __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x97ceb13b pthread_mutex_lock + 595
    2   com.apple.Foundation                    0x923a8a34 -[NSRecursiveLock lock] + 26
    3   com.apple.iPhoto                        0x002103e7 0xeb000 + 1201127
    4   com.apple.iPhoto                        0x00210347 0xeb000 + 1200967
    5   com.apple.iPhoto                        0x0020f557 0xeb000 + 1197399
    6   com.apple.iPhoto                        0x0020f0e1 0xeb000 + 1196257
    7   com.apple.iPhoto                        0x0020a212 0xeb000 + 1176082
    8   com.apple.iPhoto                        0x00208ead 0xeb000 + 1171117
    9   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    10  libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x9891b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97ce804c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x97ce7e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x97ccfcca start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x9891b0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x97ce804c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x97ce7e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x97ccfcca start_wqthread + 30
    Thread 25:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x9891a8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x97cea220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97d700a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo                     0x915bd16d CVDisplayLink::runIOThread() + 903
    4   com.apple.CoreVideo                     0x915bcdce startIOThread(void*) + 160
    5   libsystem_c.dylib                       0x97ce5557 _pthread_start + 344
    6   libsystem_c.dylib                       0x97ccfcee thread_start + 34
    Thread 26 Crashed:: Dispatch queue: com.apple.RedRock.RKInfoDictionaryMgr
    0   com.apple.CoreFoundation                0x97979947 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x9975c52e objc_exception_throw + 230
    2   com.apple.Foundation                    0x924c0804 _NSOutOfMemoryErrorHandler + 72
    3   com.apple.CoreFoundation                0x9784601d __CFStringChangeSizeMultiple + 1645
    4   com.apple.CoreFoundation                0x97845872 __CFStringAppendBytes + 850
    5   com.apple.CoreFoundation                0x97844fbf __CFStringAppendFormatCore + 16511
    6   com.apple.CoreFoundation                0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    7   com.apple.CoreFoundation                0x97902e78 -[__NSCFString appendFormat:] + 88
    8   com.apple.Foundation                    0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    9   com.apple.CoreFoundation                0x9788e7c1 -[NSArray description] + 49
    10  com.apple.CoreFoundation                0x9797925c __raiseError + 524
    11  libobjc.A.dylib                         0x9975c52e objc_exception_throw + 230
    12  com.apple.Foundation                    0x924c0804 _NSOutOfMemoryErrorHandler + 72
    13  com.apple.CoreFoundation                0x9784601d __CFStringChangeSizeMultiple + 1645
    14  com.apple.CoreFoundation                0x97845872 __CFStringAppendBytes + 850
    15  com.apple.CoreFoundation                0x97844fbf __CFStringAppendFormatCore + 16511
    16  com.apple.CoreFoundation                0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    17  com.apple.CoreFoundation                0x97902e78 -[__NSCFString appendFormat:] + 88
    18  com.apple.Foundation                    0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    19  com.apple.CoreFoundation                0x9788e7c1 -[NSArray description] + 49
    20  com.apple.CoreFoundation                0x9797925c __raiseError + 524
    21  libobjc.A.dylib                         0x9975c52e objc_exception_throw + 230
    22  com.apple.Foundation                    0x924c0804 _NSOutOfMemoryErrorHandler + 72
    23  com.apple.CoreFoundation                0x9784601d __CFStringChangeSizeMultiple + 1645
    24  com.apple.CoreFoundation                0x97845872 __CFStringAppendBytes + 850
    25  com.apple.CoreFoundation                0x97844fbf __CFStringAppendFormatCore + 16511
    26  com.apple.CoreFoundation                0x97902ebd _CFStringAppendFormatAndArgumentsAux + 61
    27  com.apple.CoreFoundation                0x97902e78 -[__NSCFString appendFormat:] + 88
    28  com.apple.Foundation                    0x9236d3b9 -[_NSCallStackArray descriptionWithLocale:indent:] + 207
    29  com.apple.CoreFoundation                0x9788e7c1 -[NSArray description] + 49
    30  com.apple.CoreFoundation     

  • How do I stop youtube images from loading after trying to do so in the options?

    I have gone into Options under Tools and unchecked the "Load images automatically" box, restarted my computer, and typed in the google search bar, Adrienne Barbeau. Various hits come up, but the one I select is the Adrienne Barbeau Voluptuous link. It is a youtube video. I select it and it loads and plays! Along the right side of the page are other videos whose images also load. So what I did in Options did not work. Then I tried leaving that box checked and clicking on "Exceptions". I typed in "www.youtube.com" and I clicked on "block" and then it was entered in the bigger box below the data entry field. Again, I closed that, clicked on OK, and then restarted my computer. Nothing happened. Nothing was blocked on youtube. There has to be a way to disable youtube images from loading! What is it?!

    Hi,
    Please also try adding ytimg.com in Exceptions. You can right-click on an image and '''Copy Image Location''' to get the address, or '''View Image''' to show it in the location (address) bar.
    [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Content%20panel Content]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]

  • Stop loading images from Web Service

    Using the following code I put multiple request for images to the web service:
                        var pageArray:ArrayCollection = new ArrayCollection;
                        pageArray = event.result as ArrayCollection;
                        for (var ii:int = 0; ii < pageArray.length; ii++)
                            var filePage:FilePage = (filePages.placeImagesHere.addElement(new FilePage) as FilePage);
                            filePage.load('image_'+pageArray[ii].imageID.toString());
    The loading takes place as multiple images are returned fom the server. All is well until the user wants to abort the image loading to view something else. removeAllElements() is called when a Close button is pressed but the images are still returned in the background.
                         placeImagesHere.removeAllElements();
    If many images are to be returned the user has to wait for this to finish before the next lot of images can be viewed. I would have expected the function removeAllElements() would stop the process but it doesn't.
    Is there any was to 'flush' or stop all previous image requests?
    Thanks,
    Stewart.

    Thanks for the reply but the for loop finishes and the asynchronous event of receiving the images still occurs.
    For example, the for loop loads 500 images. The web service takes 2 or 3 mintues to process all the images and returns them into each requesting Image component. The Close button calls the removeAllElements from the Images' parent so they no longer appear on the screen. However, the browser is still receiving the images. You can see the transfering data message flick on and off in the status line al the bottom of the browser.
    The web service hasn't received all the requests at this point so they are still in transit from the browser to the web service.
    Using a timer to load the images just means the images requests take longer to send to the web service.
    What I need to do is cancel all image load requests when the user presses the Close button.
    Hope this make sense.
    Stewart.

  • Can't stop still images from scaling in the sequence.********

    I've tried everything at this point.
    Baffled.
    If anyone can help me figure this out.
    please do.
    I cannot get any image to come into the sequence without scaling down to 28%.
    images are 4368 x 2912 and being brought into a sequence that is 1920x816. (cinemascope)
    Help!

    FCP will automatically scale your images down to fit the dimensions of your sequence.
    You could either scale the images to sequence size before importing, (you could export using QT conversion to a form of still image, but probably better off doing it in Photoshop or wherever the images originated from)
    If you want to do any pan/scan with the images, you'd be best served to resize them to slightly larger than your sequence settings, so you've got room to move them around and scale them a bit.
    Or you could change your sequence settings to match the image dimensions (but that would affect what I'm guessing your intended output is to be)
    Hope that helps,
    K

  • Stop imported images from being scaled down

    This is a quote from the Adobe Premiere Elements 7 web page Guidelines For Adding Files
    Guidelines for adding still image files
    By default, Adobe Premiere Elements scales still images to fit the project frame size. You can override this behavior and instead add your files at the size at which they were created.
    My question is how do you override the down scaling my image of 4000x3000 is getting scaled to 1280x??? so when I zoom it is pixelated.
    Thanks all.

    Also, how do you intend to export this 4000 x 3000 pixel still? If you go Share/Personal Computer/Windows Media, even with the choice preset = 1440 x 1080 HD anamorphic, the max that you can type in for frame size = 2000 x 2000 pixels.
    In the OP's case, the Export will be to the chosen Frame Size. Let's just say that it's 1440 x 1080. That is all that will show. However, PrE will be displaying that Frame Size from the larger still, and as it moves about, within that Frame Size, the image will change to reflect the current view of that still image. It's like having a 1440 x 1080 window. Behind that "window," the scene is moved about, as is needed. The view will always be through that window, but with something like the Effect>Motion>Position, will be dynamically altered, frame by frame. Without Scale to Fit, only the 1440 x 1080 "view" will be seen, and never the 4000 x X full view. It's about the same as a PiP, that is created by Effect>Crop. The full image of the Video Clip on Track 2 is never seen, as we have created a "window," reflected by the Crop. That is all that the NLE "sees," and Exports.
    Still, the resources useage will be predicated on the size of the source material, even though we only see that 1440 x 1080 "view" of it. The program has to "crunch" the "big picture."
    Hunt

  • How can I stop disc images from popping up when connecting a drive?

    Hello,
    I have an external hard drive with several partitions, all formatted as Mac OS Extended. Two of the partitions are disc images of the install CD's for Drive Genius and Data Rescue from Prosoft Engineering. When I connect the drive using a FW800 cable to any Mac running Leopard or Snow Leopard, all of the partitions on the drive are mounted in the Finder and these two partitions pop up the window for the installer, as if I had inserted the CD. Is there a way to suppress these windows from popping up every time I connect the drive? Thank you!
    -Mike

    See http://discussions.apple.com/message.jspa?messageID=12561402

  • How to stop swap image from rescrolling window

    I have a hot spot on a picture with an onclick behavior which
    swaps the image in a certain slice to another image.
    This is to be published on the web.
    However, the picture is too large to fit on the screen, and
    the hot spot is low on the image, requiring the user to scroll down
    to see and thus click on it. When the spot is clicked, the picture
    rescrolls to the top. How do i keep the picture to stay where it
    is, so that it doesnt appear to move after the click?

    Let's see the code, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "strweb1026" <[email protected]> wrote in
    message
    news:g0k481$2e5$[email protected]..
    >I have a hot spot on a picture with an onclick behavior
    which swaps the
    >image
    > in a certain slice to another image.
    > This is to be published on the web.
    > However, the picture is too large to fit on the screen,
    and the hot spot
    > is
    > low on the image, requiring the user to scroll down to
    see and thus click
    > on
    > it. When the spot is clicked, the picture rescrolls to
    the top. How do i
    > keep
    > the picture to stay where it is, so that it doesnt
    appear to move after
    > the
    > click?
    >
    >
    >

  • Suddenly thunderbird has stopped downloading images from contacts in address book

    how can I restart this

    Your address book is no longer a whitelist for this function. see https://support.mozilla.org/en-US/kb/remote-content-in-messages

  • Stop the playhead from inside a movieclip

    I am trying to stop the playhead from within a movie clip and when I test the scene (the movieclip) it works but when I test the main timeline scene, it stops the frame within the movie clip but continues on the main timeline.  On the frames that stop I am using a script that will allow it to continue when the space bar is pressed. How can I stop it on the main timeline, and within the movie clip at the same time?
    Is their a way to do something like _root.stop(); or something?

    Have a question about the _root.stop().
    I have a pause and play feature in a flash player so the user can stop the presentation along with all the voiceover that streams with the presentation.
    I used the _root.stop() in the flash player hoping it will stop the main timeline, but also the embedded movieclip timeline. It stopped the main timeline,  but not the other one.
    How do I stop both timelines at the same time? the _root.stop() was not working for me.
    Thank you, Brian

  • Stop Images from being downloaded?

    I'm wondering if there is a way to stop your images from
    being downloaded off your website without using Flash.
    Is there another way?
    Thanks
    Zoe

    "zoelinn" <[email protected]> wrote in
    message
    news:eimddr$oui$[email protected]..
    > Thanks for the definitive response, exactly what I
    needed.
    And thanks for not arguing when they hear that definitive
    answer, like most
    people do!
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • Saving images from web on itouch?

    My itouch stopped saving images from Safari?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Safari and Clear History, Cookies and Data
    - Try a different browser like Chrome

  • Stop the cursor from leaving the frame/panel?

    Im making a simple target game where you shoot targets with the mouse. What I'd like to do is stop the mouse cursor from leaving the panel/frame. I've tried moving the cursor there with the Robot class, but 1) it doesnt lock it directly to the edge, 2) it doesnt stop at the top edge and left edge, 3) the bottom edge results in the cursor being placed in the wrong place and finally, 4) if u move the cursor fast enough it breaks out anyway :(
    Hope someone can help,
    Thanx.

    Wow nice responses. I have two questions:
    1) What is native code?Write the code to capture the mouse in C/C++ (Windows supports capturing the mouse cursor - dunno about linux or solaris), then write a JNI wrapper function so you can call it from within Java.
    >
    2) Is it difficult to make it full screen? I was
    thinking of doing that but the thought of rescaling
    everything (i.e. fonts, images etc) made me think
    otherwise.Fullscreen is easy, simply graphicsDevice.setFullscreenWindow(window);
    Once in fullscreen, you can change the resolution to whatever you like (limited to what is supported by the gfx card ofcourse :p), so you shouldn't have to worry about rescaling gfx 2much.
    >
    Thanx,
    Jon

Maybe you are looking for

  • 3rd Gen Ipod won't sync with Itunes since upgrade to Snow Leopard

    Hi, I upgraded from Tiger to Snow Leopard and since then my trusty 3rd Gen Ipod will not sync with iTunes (9.0.3). It mounts in Finder, but does not appear in iTunes. The iPod will still charge, but it constantly displays the "Do Not Disconnect" mess

  • Printing digital signature in main window of sapscript at some location

    Hi, I want to print graphics in main window in sapscript. I want to position the graphic ( signature) at some position (preferably right aligned ). How to do that? Can we do that in .bmp graphics. In case we use .tiff format , how to do it. Tell me t

  • Does anyone know anything about a Apple walkman radio from years ago?

    I found a old Apple walkman it's 5 1/2 tall, 3" wide and 1 1/4 deep. It has AM FM radio and it has a mic you can push if someone is talking to you. No speaker it only works with headphones. It has a FCC ID BRA 8ZV SAFS-107   Shinning   Made in Hong K

  • "Unable to find channel ID" error.

    Hello experts, We are building an IDOC->XI->JMS scenario. Sending the IDOC gets it into the XI and it is visible inside the SXMB_MONI. Looking at a trace level 3 on the trace section of the message you can see that all pipeline activities are perform

  • Final Cut Pro Force Quits on Opening

    I have a problem with Final Cut Pro 5. I, whilst not thinking decided to perform an upgrade (5.0 to 5.14). Now whenever I open the app it force quits unexpectedly. I have tried a few things, manually deleting all files, zapping it with AppZapper, del