HP Pavilion A6421 getting 'No Input Detected' whenever it's booted up

Hi,
I have a HP Pavilion AG421 (Product # KP304AA). Yesterday, whilst surfing the internet, i got a blue screen (saying dumping data etc.) and after restarting, there is now no connection between the monitor and the tower, with the monitor only showing the 'No Input detected' message. I've tried connecting to a different monitor, different input cables and switching video cards, but nothing seems to fix the problem. So I'm at a bit of a loss at the moment, and was hoping someone here could help me.
Thanks

Hi JohnE7. It seems like you have some other system issues beyond sound, which I will help you diagnose. The easiest way to repair audio drivers, is to restore the original IDT Audio drivers using this method: Using Recovery Manager to Restore Software and Drivers (Windows 7)
If that fails, try it again after performing a clean boot: How to perform a clean boot in Windows
If you still have difficulties, testing your sound using HP Support Assistant to see if it can provide any advice: Testing for Hardware Failures (Windows 7, Vista)
The last option which may be helpful is to try to run Microsoft Fix It to diagnose and fix the driver issue: Microsoft Fix It:
I hope this helps, let me know how each step goes.
TwoPointOh
I work on behalf of HP
Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Similar Messages

  • When booting 7 64bit on HP Pavilion, I get a window saying loading "Trayapp.msi" .

    When booting 7 64bit on HP Pavilion,  I get a window saying loading "Trayapp.msi" It asks for a CD containing such. What can I do I have no CD? This new Desktop has Windows loaded from the Internet.

    This means part of the hp printer software was not deleted properly. (Windows detected something is missing and tried to repair the installation). You should be able to find it in the downloaded hp printer software. If not, try download and install the hp printer software.
    Use the uninstaller to remove installed software/driver, to avoid issues like this.
    ======================================================================================
    * I am an HP employee. *
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **
    ***Click on White “Kudos” STAR to say thanks!***

  • Help - how to get 2 inputs

    hi, i am creating this basic program/game. i need to get two inputs from the user. the problem is when i run the program it gets the first input from the user but then doesn't get the second input.. please help, the code is as follows:
    public class game
    public static void main(String[] args)
    char rock = 'r';
    char paper = 'p';
    char sciccsors = 's';
    do
    System.out.println("Player 1 please enter a letter");
    char c1 = SavitchIn.readChar();
    System.out.println("Player 2 please enter a letter");
    char c2 = SavitchIn.readChar();
    winnercalculation(c1,c1);
    game.winnercalculation(c1,c2);
    } while (quitoption());
    public static void winnercalculation(char c1, char c2)
    char rock = 'r';
    char paper = 'p';
    char sciccsors = 's';
    if ((c1 == rock) && (c2 == paper))
    System.out.println("Player 2 Wins");
    private static boolean quitoption()
    System.out.print("Would you like to repeat this program?");
    System.out.println(" (y for yes or n for no)");
    char answer = SavitchIn.readLineNonwhiteChar();
    return ((answer == 'y') || (answer == 'Y'));
    thanks for your help
    alex
    (i will reply to this post with the code required to make the SavitchIn.readline thing work.

    this is the code required for the SavitchIn read- copy the below code and save it as SavitchIn.java:
    import java.io.*;
    import java.util.*;
    *Class for simple console input.
    *A class designed primarily for simple keyboard input of the form
    *one input value per line. If the user enters an improper input,
    *i.e., an input of the wrong type or a blank line, then the user
    *is prompted to reenter the input and given a brief explanation
    *of what is required. Also includes some additional methods to
    *input single numbers, words, and characters, without going to
    *the next line.
    public class SavitchIn
    *Reads a line of text and returns that line as a String value.
    *The end of a line must be indicated either by a new-line
    *character '\n' or by a carriage return '\r' followed by a
    *new-line character '\n'. (Almost all systems do this
    *automatically. So, you need not worry about this detail.)
    *Neither the '\n', nor the '\r' if present, are part of the
    *string returned. This will read the rest of a line if the
    *line is already partially read.
    public static String readLine()
    char nextChar;
    String result = "";
    boolean done = false;
    while (!done)
    nextChar = readChar();
    if (nextChar == '\n')
    done = true;
    else if (nextChar == '\r')
    //Do nothing.
    //Next loop iteration will detect '\n'
    else
    result = result + nextChar;
    return result;
    *Reads the first string of nonwhite characters on a line and
    *returns that string. The rest of the line is discarded. If
    *the line contains only white space, then the user is asked
    *to reenter the line.
    public static String readLineWord()
    String inputString = null,
    result = null;
    boolean done = false;
    while(!done)
    inputString = readLine();
    StringTokenizer wordSource =
    new StringTokenizer(inputString);
    if (wordSource.hasMoreTokens())
    result = wordSource.nextToken();
    done = true;
    else
    System.out.println(
    "Your input is not correct. Your input must");
    System.out.println(
    "contain at least one nonwhitespace character.");
    System.out.println(
    "Please, try again. Enter input:");
    return result;
    *Precondition: The user has entered a number of type int on
    *a line by itself, except that there may be white space before
    *and/or after the number.
    *Action: Reads and returns the number as a value of type int.
    *The rest of the line is discarded. If the input is not
    *entered correctly, then in most cases, the user will be
    *asked to reenter the input. In particular, this applies to
    *incorrect number formats and blank lines.
    public static int readLineInt()
    String inputString = null;
    int number = -9999;//To keep the compiler happy.
    //Designed to look like a garbage value.
    boolean done = false;
    while (! done)
    try
    inputString = readLine();
    inputString = inputString.trim();
    number = Integer.parseInt(inputString);
    done = true;
    catch (NumberFormatException e)
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input number must be");
    System.out.println("a whole number written as an");
    System.out.println("ordinary numeral, such as 42");
    System.out.println("Minus signs are OK,"
    + "but do not use a plus sign.");
    System.out.println("Please, try again.");
    System.out.println("Enter a whole number:");
    return number;
    *Precondition: The user has entered a number of type long on
    *a line by itself, except that there may be white space
    *before and/or after the number.
    *Action: Reads and returns the number as a value of type
    *long. The rest of the line is discarded. If the input is not
    *entered correctly, then in most cases, the user will be asked
    *to reenter the input. In particular, this applies to
    *incorrect number formats and blank lines.
    public static long readLineLong()
    String inputString = null;
    long number = -9999;//To keep the compiler happy.
    //Designed to look like a garbage value.
    boolean done = false;
    while (! done)
    try
    inputString = readLine();
    inputString = inputString.trim();
    number = Long.parseLong(inputString);
    done = true;
    catch (NumberFormatException e)
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input number must be");
    System.out.println("a whole number written as an");
    System.out.println("ordinary numeral, such as 42");
    System.out.println("Minus signs are OK,"
    + "but do not use a plus sign.");
    System.out.println("Please, try again.");
    System.out.println("Enter a whole number:");
    return number;
    *Precondition: The user has entered a number of type double
    *on a line by itself, except that there may be white space
    *before and/or after the number.
    *Action: Reads and returns the number as a value of type
    *double. The rest of the line is discarded. If the input is
    *not entered correctly, then in most cases, the user will be
    *asked to reenter the input. In particular, this applies to
    *incorrect number formats and blank lines.
    public static double readLineDouble()
    String inputString = null;
    double number = -9999;//To keep the compiler happy.
    //Designed to look like a garbage value.
    boolean done = false;
    while (! done)
    try
    inputString = readLine();
    inputString = inputString.trim();
    number = Double.parseDouble(inputString);
    done = true;
    catch (NumberFormatException e)
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input number must be");
    System.out.println("an ordinary number either with");
    System.out.println("or without a decimal point,");
    System.out.println("such as 42 or 9.99");
    System.out.println("Please, try again.");
    System.out.println("Enter the number:");
    return number;
    *Precondition: The user has entered a number of type float
    *on a line by itself, except that there may be white space
    *before and/or after the number.
    *Action: Reads and returns the number as a value of type
    *float. The rest of the line is discarded. If the input is
    *not entered correctly, then in most cases, the user will
    *be asked to reenter the input. In particular,
    *this applies to incorrect number formats and blank lines.
    public static float readLineFloat()
    String inputString = null;
    float number = -9999;//To keep the compiler happy.
    //Designed to look like a garbage value.
    boolean done = false;
    while (! done)
    try
    inputString = readLine();
    inputString = inputString.trim();
    number = Float.parseFloat(inputString);
    done = true;
    catch (NumberFormatException e)
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input number must be");
    System.out.println("an ordinary number either with");
    System.out.println("or without a decimal point,");
    System.out.println("such as 42 or 9.99");
    System.out.println("Please, try again.");
    System.out.println("Enter the number:");
    return number;
    *Reads the first nonwhite character on a line and returns
    *that character. The rest of the line is discarded. If the
    *line contains only white space, then the user is asked to
    *reenter the line.
    public static char readLineNonwhiteChar()
    boolean done = false;
    String inputString = null;
    char nonWhite = ' ';//To keep the compiler happy.
    while (! done)
    inputString = readLine();
    inputString = inputString.trim();
    if (inputString.length() == 0)
    System.out.println(
    "Your input is not correct.");
    System.out.println("Your input must contain at");
    System.out.println(
    "least one nonwhitespace character.");
    System.out.println("Please, try again.");
    System.out.println("Enter input:");
    else
    nonWhite = (inputString.charAt(0));
    done = true;
    return nonWhite;
    *Input should consist of a single word on a line, possibly
    *surrounded by white space. The line is read and discarded.
    *If the input word is "true" or "t", then true is returned.
    *If the input word is "false" or "f", then false is returned.
    *Uppercase and lowercase letters are considered equal. If the
    *user enters anything else (e.g., multiple words or different
    *words), then the user is asked to reenter the input.
    public static boolean readLineBoolean()
    boolean done = false;
    String inputString = null;
    boolean result = false;//To keep the compiler happy.
    while (! done)
    inputString = readLine();
    inputString = inputString.trim();
    if (inputString.equalsIgnoreCase("true")
    || inputString.equalsIgnoreCase("t"))
    result = true;
    done = true;
    else if (inputString.equalsIgnoreCase("false")
    || inputString.equalsIgnoreCase("f"))
    result = false;
    done = true;
    else
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input must be");
    System.out.println("one of the following:");
    System.out.println("the word true,");
    System.out.println("the word false,");
    System.out.println("the letter T,");
    System.out.println("or the letter F.");
    System.out.println("You may use either upper-");
    System.out.println("or lowercase letters.");
    System.out.println("Please, try again.");
    System.out.println("Enter input:");
    return result;
    *Reads the next input character and returns that character. The
    *next read takes place on the same line where this one left off.
    public static char readChar()
    int charAsInt = -1; //To keep the compiler happy
    try
    charAsInt = System.in.read();
    catch(IOException e)
    System.out.println(e.getMessage());
    System.out.println("Fatal error. Ending Program.");
    System.exit(0);
    return (char)charAsInt;
    *Reads the next nonwhite input character and returns that
    *character. The next read takes place immediately after
    *the character read.
    public static char readNonwhiteChar()
    char next;
    next = readChar();
    while (Character.isWhitespace(next))
    next = readChar();
    return next;
    *The following methods are not used in the text, except for
    *a brief reference in Chapter 2. No program code uses them.
    *However, some programmers may want to use them.
    *Precondition: The next input in the stream consists of an
    *int value, possibly preceded by white space, but definitely
    *followed by white space.
    *Action: Reads the first string of nonwhite characters
    *and returns the int value it represents. Discards the first
    *whitespace character after the word. The next read takes
    *place immediately after the discarded whitespace.
    *In particular, if the word is at the end of a line, the
    *next reading will take place starting on the next line.
    *If the next word does not represent an int value,
    *a NumberFormatException is thrown.
    public static int readInt() throws NumberFormatException
    String inputString = null;
    inputString = readWord();
    return Integer.parseInt(inputString);
    *Precondition: The next input consists of a long value,
    *possibly preceded by white space, but definitely
    *followed by white space.
    *Action: Reads the first string of nonwhite characters and
    *returns the long value it represents. Discards the first
    *whitespace character after the string read. The next read
    *takes place immediately after the discarded whitespace.
    *In particular, if the string read is at the end of a line,
    *the next reading will take place starting on the next line.
    *If the next word does not represent a long value,
    *a NumberFormatException is thrown.
    public static long readLong()
    throws NumberFormatException
    String inputString = null;
    inputString = readWord();
    return Long.parseLong(inputString);
    *Precondition: The next input consists of a double value,
    *possibly preceded by white space, but definitely
    *followed by white space.
    *Action: Reads the first string of nonwhitespace characters
    *and returns the double value it represents. Discards the
    *first whitespace character after the string read. The next
    *read takes place immediately after the discarded whitespace.
    *In particular, if the string read is at the end of a line,
    *the next reading will take place starting on the next line.
    *If the next word does not represent a double value,
    *a NumberFormatException is thrown.
    public static double readDouble()
    throws NumberFormatException
    String inputString = null;
    inputString = readWord();
    return Double.parseDouble(inputString);
    *Precondition: The next input consists of a float value,
    *possibly preceded by white space, but definitely
    *followed by white space.
    *Action: Reads the first string of nonwhite characters and
    *returns the float value it represents. Discards the first
    *whitespace character after the string read. The next read
    *takes place immediately after the discarded whitespace.
    *In particular, if the string read is at the end of a line,
    *the next reading will take place starting on the next line.
    *If the next word does not represent a float value,
    *a NumberFormatException is thrown.
    public static float readFloat()
    throws NumberFormatException
    String inputString = null;
    inputString = readWord();
    return Float.parseFloat(inputString);
    *Reads the first string of nonwhite characters and returns
    *that string. Discards the first whitespace character after
    *the string read. The next read takes place immediately after
    *the discarded whitespace. In particular, if the string
    *read is at the end of a line, the next reading will take
    *place starting on the next line. Note, that if it receives
    *blank lines, it will wait until it gets a nonwhitespace
    *character.
    public static String readWord()
    String result = "";
    char next;
    next = readChar();
    while (Character.isWhitespace(next))
    next = readChar();
    while (!(Character.isWhitespace(next)))
    result = result + next;
    next = readChar();
    if (next == '\r')
    next = readChar();
    if (next != '\n')
    System.out.println(
    "Fatal Error in method readWord of class SavitchIn.");
    System.exit(1);
    return result;
    *Precondition: The user has entered a number of type byte on
    *a line by itself, except that there may be white space before
    *and/or after the number.
    *Action: Reads and returns the number as a value of type byte.
    *The rest of the line is discarded. If the input is not
    *entered correctly, then in most cases, the user will be
    *asked to reenter the input. In particular, this applies to
    *incorrect number formats and blank lines.
    public static byte readLineByte()
    String inputString = null;
    byte number = -123;//To keep the compiler happy.
    //Designed to look like a garbage value.
    boolean done = false;
    while (! done)
    try
    inputString = readLine();
    inputString = inputString.trim();
    number = Byte.parseByte(inputString);
    done = true;
    catch (NumberFormatException e)
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input number must be a");
    System.out.println("whole number in the range");
    System.out.println("-128 to 127, written as");
    System.out.println("an ordinary numeral, such as 42.");
    System.out.println("Minus signs are OK,"
    + "but do not use a plus sign.");
    System.out.println("Please, try again.");
    System.out.println("Enter a whole number:");
    return number;
    *Precondition: The user has entered a number of type short on
    *a line by itself, except that there may be white space before
    *and/or after the number.
    *Action: Reads and returns the number as a value of type short.
    *The rest of the line is discarded. If the input is not
    *entered correctly, then in most cases, the user will be
    *asked to reenter the input. In particular, this applies to
    *incorrect number formats and blank lines.
    public static short readLineShort()
    String inputString = null;
    short number = -9999;//To keep the compiler happy.
    //Designed to look like a garbage value.
    boolean done = false;
    while (! done)
    try
    inputString = readLine();
    inputString = inputString.trim();
    number = Short.parseShort(inputString);
    done = true;
    catch (NumberFormatException e)
    System.out.println(
    "Your input number is not correct.");
    System.out.println("Your input number must be a");
    System.out.println("whole number in the range");
    System.out.println("-32768 to 32767, written as");
    System.out.println("an ordinary numeral, such as 42.");
    System.out.println("Minus signs are OK,"
    + "but do not use a plus sign.");
    System.out.println("Please, try again.");
    System.out.println("Enter a whole number:");
    return number;
    public static byte readByte() throws NumberFormatException
    String inputString = null;
    inputString = readWord();
    return Byte.parseByte(inputString);
    public static short readShort() throws NumberFormatException
    String inputString = null;
    inputString = readWord();
    return Short.parseShort(inputString);
    //The following was intentionally not used in the code for
    //other methods so that somebody reading the code could more
    //quickly see what was being used.
    *Reads the first byte in the input stream and returns that
    *byte as an int. The next read takes place where this one
    *left off. This read is the same as System.in.read(),
    *except that it catches IOExceptions.
    public static int read()
    int result = -1; //To keep the compiler happy
    try
    result = System.in.read();
    catch(IOException e)
    System.out.println(e.getMessage());
    System.out.println("Fatal error. Ending Program.");
    System.exit(0);
    return result;

  • How to get the inputs in different language

    Hi,
    I have a typical scenario in which I have a thin client (web browser).
    And I need to display a word in a input text box, followed by many text boxes for getting the inputs from the user in different languages.
    But I am not sure about getting the inputs from the user in different languages in the same screen and update the same in the database.
    If you have idea about the same. Please share it accross.
    Thanks
    Karthick

    Hi One_Dane
    I'm trying to bring a hindi text from one jsp to another. As i've installed all the IME n stuff, I'm able to get the display in hindi whenever i'm typing something in my textbox . But the same text is not displayed in hindi when i'm doing a request.getParameter() on that textbox.
    I tried printing the UTF-8 unicode charsets like
    "\\u0904\\u0904\\u0904". This does print fine. I can see the hindi appearing in these kinds of text. Also i tried out converting them to code points n stuff, and it works fine. Infact all the values that are not coming up from the request parameter are working fine.
    So i concluded that in the previous page where-in i'm giving the inputs, probably they might not be wrapped up in the UTF-8 charset. But i've specified the charsets to be UTF-8 in the meta info for both the pages.
    Kindly help regarding what might be the issue. Please tell if i missed out any point while explaning.
    thanx in advance
    Nagraj

  • How do I get audio input to my TV when using a HDMI adaptor/converter?

    I bought a Belkin HDMI converter for my mid-2010 Macbook Pro so that I can watch internet movies on my television. When I plugged the HDMI into the adaptor I am able to see the video play on my television however the sound is still coming through my computer instead of my televsion. How do I get audio input from my computer onto my TV?

    You need to set the output in System Preferences > Sound > Output to HDMI.

  • I get the following message whenever I try to open FireFox

    "microsoft (C) Register Server has stopped working"
    Hi there.
    Out of nothing I get the following message whenever I try to open FireFox :
    "'''microsoft (C) Register Server has stopped working'''"
    Internet Explorer won't open either, but it doesn't give a pop-up or anything, it just pretends I didn't open it.
    The only way I can open a browser now is by running it as 'administrator'
    I've taken the following steps, none of which have had any effect
    - tried the DEP on trick in windows system
    - Fully updated win 7
    - Re-installed Firefox
    - reboot, reboot, reboot
    - searched online for solutions
    but..... :(

    ooh my G#D !!! Norton is Best ! thank all you guys ! ;) im install norton anti virus and my fire fox is workin after scan!!! :))) huuuuurrrrrrraaaaaaaaaaaaaaa

  • Reminders list frequently disappear,how can i get back my list whenever it suddently disapear?:(

    reminders list frequently disappear,how can i get back my list whenever it suddently disapear?:(
    I rely deeply on my reminders list, but a few times, the list just disappear and I have to rewrite my lists, but it is getting more and more annoying because my list is getting longer and longer and i just can't write it over and over again. Does it have a connection to my icloud for reminders is being disabled?
    Please help me.
    Thank You

    Phone to Mac will be able to pull up your previous backup info from your computer so you can have a copy of Contacts, SMS, etc.
    http://www.macroplant.com/phonetomac/

  • How to get User input in JTextField?

    How to get User input in JTextField? Can u anyone give me some code samples? thanks

    read the API!!!

  • My iPod Classic is not detected by my Windows 8 computer when I connect it via USB port.  How can I get windows to detect this device?

    My iPod Classic is not detected by my Windows 8 computer when I connect it via USB port.  How can I get windows to detect this device?  A message from windows says: the device has malfunctioned.

    Try TS1363: iPod: Appears in Windows but not in iTunes.
    See also Corrupt iPod classic.
    tt2

  • Getting No input file specified. in php with index.php

    I just installed on a server (soalris10/u6 sparc) Web Server 7.0u4 (upgraded from u3), and I am now getting "No input file specified." for any php doc root, I now have to type the full path to get the main page.
    I am using the php part of the Sun coolstack 1.3.1 and it used to work fine with web server 7.0 u3, but now after the upgrade its not loading index.php
    for example I am going to http://server.domain.com/wiki used to work by loading index.php, but now I have to type the full index... http://server.domain.com/wiki/index.php?title=Main_Page
    Any help is appreciated.

    If you're not currently using a php.ini, you can pass the parameter to PHP via your FastCGI configuration. Something like:
    Service fn=responder-fastcgi
            app-path="/export/WS7/third-party/php/php_fcgi"
            bind-path="$(lc($urlhost))"
            req-retry=5
            type="*magnus-internal/fastcgi*"
            app-env="PHPRC=/export/WS7/fooBaz/config"Now place a file called php.ini in /export/WS7/fooBaz/config and make sure that the UID Web Server is running as has permission to read it.
    Common syntax is KEY = Value. An example would be:
    cgi.fix_pathinfo = Off
    session.bug_compat_42 = Off
    session.bug_compat_warn = Off
    magic_quotes_gpc = Off
    memory_limit = 128M
    post_max_size = 128M
    upload_max_filesize = 128M
    fastcgi.logging = true

  • I keep getting Error Message 1602 whenever I attempt to download Adobe Reader update on Windows 8

    <br>
    <span style="font-size: 10pt;">I keep getting Error Message 1602 whenever I try to download Adobe Reader update on Windows 8, What to do?</span>
    <span style="font-size: 10pt;"></span>
    [email address removed]

    Hi waterproof sleep
    Please see the below KB Doc : http://helpx.adobe.com/acrobat/kb/error-1602-update-acrobat-reader.html
    Or download the update manually from the below link and install them ...
    http://www.adobe.com/support/downloads/product.jsp?platform=windows&product=10

  • Can anyone help me. Every time I open iPhoto 9.2 and try to go to photo stream iPhoto quits unexpectedly.  When I reopen I get "iPhoto has detected inconsistencies in your library.  Please click Repair to avoid any potential problems."

    Can anyone help me.  I have iPhoto 9.2 and  Mac OS X 10.7.2.
    Every time I open iPhoto 9.2 and try to go to photo stream iPhoto quits unexpectedly.  When I reopen I get "iPhoto has detected inconsistencies in your library.  Please click Repair to avoid any potential problems."
    I have read plenty of the posts on the subject and it seems that deleting the "3ivx" fixed the problem.  I looked at the detaied reports and see where it says "
    Library/Application Support/3ivx" etc..
    On my report it says "/Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin".  Does this help with an answer?

    I am also having this crashing problem. I am running lion on a 2010 mac mini. My iPhoto library is kept on an external drive. I just upgraded to iPhoto 11 and everytime I try to enable photo stream the app crashes. I have tried all the above suggestions, including re-installing iphoto from the Mac App store. Below are the first 50 lines of the error message. Any help would be greatly appreciated.
    Process:         iPhoto [430]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~1
    App Item ID:     408981381
    App External ID: 4641130
    Code Type:       X86 (Native)
    Parent Process:  launchd [160]
    Date/Time:       2011-11-02 22:33:22.628 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          526713 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  4439 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      8147E0FC-2622-4A56-920E-44498E48B55B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        __TEXT                 0000000000001000-0000000000d1b000 [ 13.1M] r-x/rwx SM=COW  /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Application Specific Information:
    objc[430]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.iPhoto                        0x00824501 0x1000 + 8533249
    1   com.apple.iPhoto                        0x001678d6 0x1000 + 1468630
    2   com.apple.Foundation                    0x91bdff49 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
    3   com.apple.CoreFoundation                0x95508ff3 ___CFXNotificationPost_block_invoke_1 + 275
    4   com.apple.CoreFoundation                0x954d3d78 _CFXNotificationPost + 2776
    5   com.apple.Foundation                    0x91bcb136 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    6   com.apple.Foundation                    0x91be03ca -[NSNotificationCenter postNotificationName:object:] + 55
    7   com.apple.iPhoto                        0x0016716a 0x1000 + 1466730
    8   com.apple.iPhoto                        0x00167111 0x1000 + 1466641
    9   com.apple.iPhoto                        0x0015c6f4 0x1000 + 1423092
    10  com.apple.CoreFoundation                0x95520e1d __invoking___ + 29
    11  com.apple.CoreFoundation                0x95520d59 -[NSInvocation invoke] + 137
    12  com.apple.RedRock                       0x01d62e61 -[RKInvoker _invokeTarget:] + 33
    13  com.apple.CoreFoundation                0x9551e091 -[NSObject performSelector:withObject:] + 65
    14  com.apple.Foundation                    0x91c1cf64 __NSThreadPerformPerform + 503
    15  com.apple.CoreFoundation                0x9549584f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    16  com.apple.CoreFoundation                0x95495206 __CFRunLoopDoSources0 + 246
    17  com.apple.CoreFoundation                0x954bf0d8 __CFRunLoopRun + 1112
    18  com.apple.CoreFoundation                0x954be8ec CFRunLoopRunSpecific + 332
    19  com.apple.CoreFoundation                0x954be798 CFRunLoopRunInMode + 120
    20  com.apple.HIToolbox                     0x93bcca7f RunCurrentEventLoopInMode + 318
    21  com.apple.HIToolbox                     0x93bd3d9b ReceiveNextEventCommon + 381
    22  com.apple.HIToolbox                     0x93bd3c0a BlockUntilNextEventMatchingListInMode + 88
    23  com.apple.AppKit                        0x97b27040 _DPSNextEvent + 678
    24  com.apple.AppKit                        0x97b268ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    25  com.apple.AppKit                        0x97b22c22 -[NSApplication run] + 911
    26  com.apple.AppKit                        0x97db718a NSApplicationMain + 1054
    27  com.apple.iPhoto                        0x0001159a 0x1000 + 66970
    28  com.apple.iPhoto                        0x00010a29 0x1000 + 64041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x91bbc90a kevent + 10
    1   libdispatch.dylib                       0x9a5bbc58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9a5ba6a7 _dispatch_mgr_thread + 53

  • How to get the input data on the arbitrary draw event ?

    Hi all,
    I'm trying to draw a histogram on a arbitrary parameter (just like the "Levels" effect). The draw part is well, but I have a problem with the input layer data (param[0]).
    All I have to do now is read the input data on the arbitrary draw event. But there's not the input pointer on the draw event. So I called the PF_CHECKOUT_PARAM() function to get the input data, and it works!
    When I test in AE, I created a layer A, and added some color correction effects to the layer A before added my effect to the layer A. The problem is the input layer my effect read is not the result of previous effects I applied before.
    Has anyway to read the latest input data in the arbitrary events ?
    Thanks.

    Hi shachar, nice to meet you!
    In another way, I created a sequence data like this:
    typedef struct {
        bool didRender;
        <some histogram data>;
    } Histogram;
    typedef struct {
        Histogram*  histograms;
    } my_sequence_data, *my_sequence_dataP, **my_sequence_dataH;
    my_sequence_data.histograms is an array with in_data->total_time / in_data->time_step items initialized during the sequence setup.
    During the render call, I cached  the calculated histogram at this current_time to the sequence->histograms[in_data->current_time / in_data->time_step], set the didRender = true.
    In this way, I have another problem with the AE cached image. I disabled a random previous effect on the effect panel, then the AE re-rendered my effect, the histogram changed (good). I enabled the effect again, and nothing change (bad )
    I try to force the AE re-rendering after the custom UI changed ( I tried with the event_extraP->evt_out_flags = PF_EO_HANDLED_EVENT; and params[HISTOGRAM_UI]->uu.change_flags |= PF_ChangeFlag_CHANGED_VALUE; on the click, drag events...) but it seem not works!
    Am I on the right way ?
    Thank you so much!

  • Cant use tetherd capture with nikon d810 on lightroom 5.6 get camera not detected i check and my lightroom up to date

    need help
    what can I do
    I can't use tethered capture with Nikon d810 on light room 5.6 get camera not detected  my light room up to date
    any idea?
    thanks

    Wait.
    Lightroom does not support tethering on the D810 yet. 
    Tethered camera support in Lightroom

  • I get a security warning whenever I try to access anything

    I get a security warning whenever I try to access anything - even a Google search. Just started within the last few days and I haven't updated or anything like that. If I click "Continue", I can then proceed - but it's annoying.
    Can't see anything to turn off that might help.
    Any ideas ?
    I'm using Firefox 25 and I don't want to update as I will loose some addons I want to keep.
    Regards,
    Robert.

    For freecorder, you need to update to freecorder 8 (http://www.freecorder.com/)
    You also need to update wondershare, http://www.wondershare.com/convert-video-audio/firefox-youtube-downloader.html
    You have a lot of add-ons that all do one thing (download youtube videos) maybe try to condense to just one that works really well?

Maybe you are looking for

  • Excel 2010 SP2 opens files slowly after installing SP2

    After installing SP2 Excel is opening files very slowly. Files can be on network share or locally, no matter. If Excel is already open, then the file opens fast as it has opened before. OS is Windows 7 64-bit, and Office Professional Plus is 32-bit.

  • How to make a header in a table non-scrollable even when u use scollbar

    i'm adding the table to scrollpane and this scrollpane is added to the container using border layout in Center and using .gettableHeader() i'm adding this to the container in north.now the problem is when ever i scroll table data using scrollbar(vert

  • Looking for a suggestion for a web site format

    Hi guys, I have a website www.ridethespiral.net It is a flash website designed to display video and photos. I bought the flash/xml template from Flashden and am pretty happy with it with the exception that it is to slow. The videos display to slow to

  • How can I add the audio content cd after logic finished installing ?

    There was an eror installing the Audio Content CD 1 and I did not notice. Everything else installed properly, Audio Content CD 2, Jam Pack, but how can I add the Audio Content CD1 after Logic has finished installing? If you can help me please be very

  • Transfer flat filve over AS2

    we have a business case where a flat file needs to be transfered over AS2 to Trading partner, we followed the below mention steps but the file is not getting polled use case: BPEL generated an txt file on SOA server, we need a TPA that polls the file