Import Scanner

For some reason, I cannot use the following:
import java.util.ScannerWhen I do, I get this error: "Cannot resolve symbol class Scanner"
Any idea why?

i don't think u get a "Cannot resolve symbol class Scanner" error
for
";" at the end of the line.i actually tried this and for some reason i am getting the same error when i compile it from DOS but when i compile from textpad it works perfectly...lol

Similar Messages

  • Action to import scanner

    I'm trying to create a simple action that will assign a keystroke shortcut that opens my scanner to start a new scan (ie: keystroke = FILE/IMPORT/[SCANNERNAME]). I used to have this set up in older versions of Photoshop by creating a new action and using the INSERT MENU ITEM command in the Actions palette to select the scanner from the FILE/IMPORT/ menu.
    Now when I try this and play the Action, I get a message that reads:
    "the command "import" is not currently available"
    This keystroke shortcut used to work so simply and flawlessly for me in older versions. And it's a nice step/time saver for me when I'm doing a lot of scanning.
    Can anyone tell me what I'm doing wrong? I'm sure it's something simple and I'll slap myself upside my head when I find out. But right now I'm just confounded.
    Thanks for any help you might provide.
    Roger

    What Neil says.
    It sounds like Photoshop is not seeing your scanner. This would be the case, for example, if you are running Photoshop CS3 on a Mac-Intel machine and the scanner plug-in is not written in Universal Binary.

  • HT1338 I'm having difficulty getting my scanner to communicate with my new Photoshop CSX trial software. I can purchase the software as soon as i know the scanner works and i can work as normal! i'm looking for a way to download the scanner driver to solv

    Would any of you know by any chance how to find the download for a Mac OS X scanner driver? my Canon LIDE 600F scanner normally works fine - and i've checked and in principle it should be compatible with the latest Photoshop CS6 trial i've successfully downloaded. i've checked the Apple software update and that's fine too. it's just that when i open my photoshop CS6 and go to File - import - scanner, the scanner is 'missing' - and then when i try every which way, an error flag comes up, stating there's an internal error and cites the scanner driver. it looks as though i need a scanner driver download for Mac OS X 10.6. i've googled this and can't find it .... has anyone else encountered this hitch since downloading the latest Photoshop? previously i had Photoshop CS3 - it's the CS6 version now that i'm trying to work with. You know how it is, deadline approaching and trying not to OD on coffee

    The driver may be listed here:
    Printer and Scanner software available for download:
    http://support.apple.com/kb/HT3669?viewlocale=en_US

  • Static class containing scanner throws java.util.NoSuchElementException

    I use the scanner class pretty often in my coding and recently i have been trying to create a static method i can put in an external class to do the scanning for me and trap any errors.
    I seem to be able to create the class successfully but i have a slight problem in that i cannot use the method twice in the same program without having it throw a java.util.NoSuchElementException
    If anyone could figure out what error i have made and suggest a way to fix it i would be very grateful
    code is as follows:
    Scan.java:
    // name information removed for privacy
      // class info removed for privacy
      Assignment: 4.3,
      File Name: /ASSIGNMENTS/ASSIGNMENT_4/Part3/Scan.java
    import java.util.Scanner;
    public class Scan
      public static double nextDouble (String prompt)
        // variable to hold the result
        double result = 0.0;
        // variable to determine if input was ok
        Boolean inputOK = false;
        // do-while loop to get some input
        do
          // print the prompt. what do you want to ask for?
          System.out.print ( prompt );
          // Try to scan and capture the input and catch the exception
          try
            // create the scanner object
            Scanner scan = new Scanner (System.in);
            // parse the input`
            result = scan.nextDouble();
            // if we reach this step then good. we got good input let's exit the loop
            inputOK = true;
            // close the scanner
            scan.close();
          // oops we got an error!
          catch (java.util.InputMismatchException e)
            // inform the user of the error
            System.out.println ("That is not a number! Try again. \n");
            // input was not ok so we can't exit the loop yet
            inputOK = false;
        // keep looping as long as inputOK is false
        } while (!inputOK);
        // return out result
        return result;
    }Mathematics.java:
    // name information removed for privacy
    // class information removed for privacy
    * Assignment: 4.3
    * File Name: ASSIGNMENTS/ASSIGNMENT_4/Part3/Mathematics.java
    // Import Scanner class
    import java.util.Scanner;
    //Class Body
    public class Mathematics{
    // Main method. AUTO EXECUTE
      public static void main(String[] args)
    // additional variable declarations removed for brevity
        // Create double precision floating point variables
          double  coeff4 = 0.0, coeff3 = 0.0, coeff2 = 0.0, coeff1 = 0.0, cons = 0.0;
        coeff4 = Scan.nextDouble("Enter the coefficient of x^4 (0.0 if none): ");
        coeff3 = Scan.nextDouble("Enter the coefficient of x^3 (0.0 if none): ");
        coeff2 = Scan.nextDouble("Enter the coefficient of x^2 (0.0 if none): ");
        coeff1 = Scan.nextDouble("Enter the coefficient of x (0.0 if none): ");
        cons = Scan.nextDouble("Enter the constant (0.0 if none): ");
    // do fun things with input (code removed for brevity)
    }output looks like this
    dragonfly@Home:~/ASSIGNMENTS/ASSIGNMENT_4/Part3$ java Mathematics
    Enter the coefficient of x^4 (0.0 if none): hello boys!
    That is not a number! Try again.
    Enter the coefficient of x^4 (0.0 if none): 1.2.
    That is not a number! Try again.
    Enter the coefficient of x^4 (0.0 if none): d
    That is not a number! Try again.
    Enter the coefficient of x^4 (0.0 if none): 1
    Enter the coefficient of x^3 (0.0 if none): Exception in thread "main" java.util.NoSuchElementException
            at java.util.Scanner.throwFor(Scanner.java:817)
            at java.util.Scanner.next(Scanner.java:1431)
            at java.util.Scanner.nextDouble(Scanner.java:2335)
            at Scan.nextDouble(Scan.java:23)
            at Mathematics.main(Mathematics.java:34)
    dragonfly@Home:~/ASSIGNMENTS/ASSIGNMENT_4/Part3$

    Through trial and error i seem to have hit upon a solution to my problem. i am stress testing it now but i think it will hold up admirably
    import java.util.Scanner;
    public class Scan
    // scan in a double without a prompt. catch and handle any exceptions
    public static double nextDouble ()
        return nextDouble("");
    // give the user a prompt and then scan in a double. catch and handle any exceptions
    public static double nextDouble (String prompt)
        // variable to hold the result
        double result = 0.0;
        // variable to determine if input was ok
        boolean inputOK = false;
        // do-while loop to get some input
        do
          // print the prompt. what do you want to ask for?
          System.out.print ( prompt );
          // Try to scan and capture the input and catch the exception
          try
          // Call private method to do the actual scanning
            result = scanDouble();
            // if we reach this step then good. we got good input let's exit the loop
            inputOK = true;
          // oops we got an error!
          catch (java.util.InputMismatchException e)
            // inform the user of the error
            System.out.println ("That is not a number! Try again. \n");
            // input was not ok so we can't exit the loop yet
            inputOK = false;
        // keep looping as long as inputOK is false
        } while (!inputOK);
        // return out result
        return result;
    // Helper method to nextDouble
      private static double scanDouble()
      // hold the result
        double result=0.0;
      // create the scanner object
        Scanner scan = new Scanner (System.in);
      // parse the input
          // If input was not of proper type this call will fail with :
          // java.util.InputMismatchException
          // and return control to calling method
        result = scan.nextDouble();
      // Return our findings
        return result  ;
    }

  • How to add scanner to device central?

    in the past i could scan in to photoshop from file / import /
    scanner .. it appears device central is the place to do this now?
    how can i add my epson cx5000 to this application? There is nothing
    new from Epson which links up to this application.

    Hi I am trying to transfer my books from sony reader to iPad they are in my library
    Sent from my iPad

  • Import to PH elements

    What is the prosedure to import img from scanner to photoshop elements? I'm used to PH CS, and there i have a choise to import scanner, but that is not present in PH elements?
    Message was edited by: pjusk1

    You need to install TWAIN
    This tech note should help
    http://helpx.adobe.com/photoshop-elements/kb/twain-installed-photoshop-elements-9.html

  • Cannot create an A4 Scanned PDF

    HI,
    I cannot set the Paper SIze to A4 when Creating a PDF from Scanner.
    I go into Configure Presets and see no preset option to do this and when i try to set Custom get an error with the message max siz to 279.3mm and not 297.00mm as it would need to be for for A4 ?
    I also do not see how to import Scanner, Lexmark All-In-One, settings (which will acquire to A4 in its Scanning app), in Acrobat.
    Read lots of threads and not getting it ?
    I am using Acrobat 9 Pro.
    Printer is Lexmark 920 All-In-One.

    Meggie,
    You may or may not have created a mess with fonts. I would try not to have duplicate fonts, it is totally sufficient to have them in C:\Windows\Fonts.
    But your FrameMaker verson is definitely four (4) patches behind. The current version is 9.0.4 (9.0p255) and you can get the updaters here:
    http://www.adobe.com/support/downloads/product.jsp?product=22&platform=Windows
    You have to install them one after another.
    Some of the patches improved the Save as PDF feature.
    For further communication, please add your OS version and Acrobat version.
    - Michael

  • Missing Return Statement - Please Help

    I get the "missing return statement" in line 47 in the getNumber method when I try to compile. Any suggestions?
    import java.util.Scanner; //imports scanner
    import java.util.Random;  //imports class Random
    public class Guess {
        Random randomNumbers = new Random();
        int answer;
        int userGuess;
        public void newGame()
            int answer = getNumber();
        public void play()
           Scanner input = new Scanner( System.in ); //creates scanner input
           System.out.println("\n\n Guess a number between 1 and 1000 or just" +
                   "press 0 to exit:" );
           userGuess = input.nextInt();
           while (userGuess != 0);
               checkUserGuess();
               System.out.println("Please enter another guess:");
               userGuess = input.nextInt();
        public int getNumber()
           int answer = 1 + randomNumbers.nextInt( 1000 );
        }  //ERROR IS DISPLAYED HERE
        /** Creates a new instance of Guess */
        public void checkUserGuess()
            if ( userGuess >= answer)
                System.out.println("Your guess is too high, try again");
            else
                if ( userGuess <= answer)
                    System.out.println("Your guess is too low, try again");
                else
                    System.out.println("Congratulation, you guessed correctly");
    }

    The error message says it all.
    You declared your getNumber method as returning integer.
    However you didnt return any number.
    add the reutrn statement to the method
    return answerJust to add, you have declared answer as global
    variable and agian answer as local variable.
    You are messing up a little there.
    Message was edited by:
    lupansansei

  • Are there any scanners that are compatible with OS X Yosemite?

    I just bought the iMac with the 5k screen
    27-inch: 3.5GHz with Retina 5K display
    3.5GHz quad-core Intel Core i5
    Turbo Boost up to 3.9GHz
    8GB (two 4GB) memory
    1TB Fusion Drive1
    AMD Radeon R9 M290X with 2GB video memory
    I also bought a new scanner (Canon Scan 9000F MK II) but it's software isn't compatible with Yosemite "iOS 10.10". I returned that scanner and started searching for another one only to find out that most or all scanners and printers (at this point) are not compatible with Yosemite. So far, I haven't found one.
    I was wondering if you could direct me to a scanner and printer that were compatible with Yosemite this way I can start using my new computer.
    Thanks!
    Michael

    So I returned the previous scanner and purchased the Epson Perfection V600 Photo. I'm still having the same problems and I downloaded the latest driver for it. I also downloaded the driver for my previous Canon Scanner before I returned it. It wasn't working the way I wanted it to work.
    It wasn't the scanner after all but I do like the epson better. When I get it to scan, it's scans faster and has more resolution options.
    Anyway
    Basically I want to be able to scan in Photoshop CC but it's not working the way it used to in previous machines/OSs/photoshops.
    I used to be able to go FILE>IMPORT>SCANNER NAME and then continually scan until I was finished. That is not the case and I have noticed it's a problem throughout when doing some research to fix it. I can scan continually if I got to my system preferences, select the "PRINTERS and SCANNERS"  and then click "Open scanner".
    In photoshop CC I can only get one scan and then I have to close photoshop if I want to do another scan. It's annoying knowing that I was able to in previous machines. Any solutions or plug-ins that I'm missing?
    Thanks so much for everyone helping out!
    Michael

  • Need help with re-prompting the user for input .

    I am trying to wright a code the re prompts the user for input if they enter anything but an integer but I keep getting a "char cannot be dereferenced" error when I try to compile.
    Here's what I have got:
    import java.util.Scanner; // imports Scanner methods
    public class SandBox
      public static void main(String[] args)
          // re-prompting test
          Scanner in = new Scanner(System.in);
          System.out.println("Please enter an integer: ");
          String i = in.nextLine();
          for(int a=0; a<i.length(); a++)
              if( (i.charAt(a).isDigit()) ) {
                  System.out.println("Thank you!");
                  break;
                } else {
                    System.out.println("Please try again");
                    continue;
          int b = Interger.parseInt(i);
      }// end of class
    }//end of main method
     

    Sorry for double posting but it won't let edit my last post.
    I would prefer to go through it without using try catch because it takes longer though I will use it if I cannot get the other way working. I currently have two versions of the code both using try catch and the other way but both say that they "cannot find symbol" when I try to parse. here are both versions of the code:
    import java.util.Scanner; // imports Scanner methods
    public class SandBox
      public static void main(String[] args)
          // try catch test
          boolean inputIsFaulty = true;
          int inputInt = 0;
          Scanner in = new Scanner(System.in);
          do {
             System.out.println("Please enter an integer: ");
             String i = in.nextLine();
             for(int a=0; a<i.length(); a++)
                if (Character.isDigit(i.charAt(a))) {
                  System.out.println("Thank you!");
                  inputIsFaulty = false;
                } else {
                    System.out.println("Please try again");
            while (inputIsFaulty);
          inputInt = Integer.parseInt(i);
      }//end of class
    }//end of main method
    import java.util.Scanner; // imports Scanner methods
    public class SandBox2
      public static void main(String[] args)
          // try catch test
          boolean inputNotOK = true;
          int inputInt = 0;
          Scanner in = new Scanner(System.in);
          do {
             System.out.print("Please enter an integer: ");
             String inputStr = in.nextLine();
             try {
                inputInt = Integer.parseInt(inputStr);
                // this line is only reached if the parse works
                inputNotOK = false;
             catch (NumberFormatException e) {
                System.out.println("You didn't enter a proper number.  Please Try again.");
          while (inputNotOK);
          inputInt = Integer.parseInt(imputStr);
      }//end of class
    }//end of main method
     

  • Simple code somthings wrong plz check them:)

    code 1:
    import java.awt.*;
    class Yo {
    public static void main (String[] arg) {
    String s;
    double i;
    System.out.print("Translate to euro! Input the swedish money: "); System.out.flush();
    s = myIn.readLine();
    i = Double.parseDouble(s);
    System.out.println(i, "SEK blir" + i*9.15781 + "euro" );
    code 2:
    class Halt {
    public static void main (String[] arg) {
    System.out.print("Halt! Who goes there?"); System.out.flush();
    String s = myIn.readLine();
    System.out.println("You may pass " + s + "!");
    I think the errors are similar to eachother.. plz tell me whats wrong with the "myIn" thing:)

    why not import Scanner and use that to get user input? all you would have to do is this:
    import java.util.Scanner
    //blah blah blah
    //create the following object before you call it
    Scanner myln = new Scanner (System.in);
    //ask for user input
    double i = myln.nextDouble();
    //end output

  • Some fine line Graphics and shading are not displaying at all with OS X Yosemite

    Our team is working on a new website layout.  It is being developed in photoshop and then saved as a jpeg for review.  All of the fine gray lines, boarders and some shading does not display at all.  If I save a screen shot and mouse over to choose the screen shot all of the missing lines and shading appear correctly when holding down command-shift-4 to choose the screen shot.  After the screen shot is chosen the saves screen shot still does not display the correct lines and shading.  Anyone know what is going on?  The jpegs are displaying correctly on my iphone and all other Mac Desktop operating systems. 

    So I returned the previous scanner and purchased the Epson Perfection V600 Photo. I'm still having the same problems and I downloaded the latest driver for it. I also downloaded the driver for my previous Canon Scanner before I returned it. It wasn't working the way I wanted it to work.
    It wasn't the scanner after all but I do like the epson better. When I get it to scan, it's scans faster and has more resolution options.
    Anyway
    Basically I want to be able to scan in Photoshop CC but it's not working the way it used to in previous machines/OSs/photoshops.
    I used to be able to go FILE>IMPORT>SCANNER NAME and then continually scan until I was finished. That is not the case and I have noticed it's a problem throughout when doing some research to fix it. I can scan continually if I got to my system preferences, select the "PRINTERS and SCANNERS"  and then click "Open scanner".
    In photoshop CC I can only get one scan and then I have to close photoshop if I want to do another scan. It's annoying knowing that I was able to in previous machines. Any solutions or plug-ins that I'm missing?
    Thanks so much for everyone helping out!
    Michael

  • Total noob, need help

    I've never scripted Photoshop ever, but I am c# guy during the day, so I know programming
    Ok, here is what I do right now: I place 3 photos into my scanner, scan them into Photoshop CS4 using the File/Import/Scanner menu item.  Then I go to File/Automate/Crop and Straighten Photos to split up the image into 3 photos.  Photoshop creates a tab for each photo.  Then I go to each individual tab and save each picture.  Then start again with the scanning - rinse and repeat.
    This is kind of tedious.  I am looking to automate all or some portion of this task.  For instance, I would love it, if there was a script that responded to the Image Imported from Scanner event (if such a thing even exists), split the photos into 3 using the Crop and Straighten Photos command and saved each photo as a PNG (without getting the stupid dialog box asking me whether I was it interlaced or not).  The routine that saves the photos, would have to look in the directory and name the file in a numeric fashion (e.g. p1.png, p2.png, p3.png, etc...) and not overwrite photos.
    Is such a thing possible?  If so, what are some of the resources I should look at?  Is there something simpler (like maybe a macro recorder), that I am not looking at? 
    Thanks.

    One way of doing it would be to do all the scans and place the files in their own folder (jpg/tif/pdf)
    Then you can run the following script that will create a new folder off the existing one and batch split all the files naming them existingFileName#001.png and put them in the new folder (edited)
    #target Photoshop
    app.bringToFront;
    var inFolder = Folder.selectDialog("Please select folder to process");
    if(inFolder != null){
    var fileList = inFolder.getFiles(/\.(jpg|tif|psd|)$/i);
    var outfolder = new Folder(decodeURI(inFolder) + "/Edited");
    if (outfolder.exists == false) outfolder.create();
    for(var a = 0 ;a < fileList.length; a++){
    if(fileList[a] instanceof File){
    var doc= open(fileList[a]);
    doc.flatten();
    var docname = fileList[a].name.slice(0,-4);
    CropStraighten();
    doc.close(SaveOptions.DONOTSAVECHANGES);
    var count = 1;
    while(app.documents.length){
    var saveFile = new File(decodeURI(outfolder) + "/" + docname +"#"+ zeroPad(count,3) + ".png");
    SavePNG(saveFile);
    activeDocument.close(SaveOptions.DONOTSAVECHANGES) ;
    count++;
    function CropStraighten() {
    function cTID(s) { return app.charIDToTypeID(s); };
    function sTID(s) { return app.stringIDToTypeID(s); };
    executeAction( sTID('CropPhotosAuto0001'), undefined, DialogModes.NO );
    function SavePNG(saveFile){
        pngSaveOptions = new PNGSaveOptions();
        pngSaveOptions.embedColorProfile = true;
        pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
        pngSaveOptions.matte = MatteType.NONE;
        pngSaveOptions.quality = 1;
    pngSaveOptions.PNG8 = false; //24 bit PNG
        pngSaveOptions.transparency = true;
    activeDocument.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);
    function zeroPad(n, s) {
    n = n.toString();
    while (n.length < s) n = '0' + n;
    return n;

  • Yep...  TOTALLY CONFUSED.

    Okay, so I have a program here... It's my application file and every time I try to build it, it tells me that '{' is expected. I checked all of my curly brackets and they all match up. I'll put my code on here...
    import java.util.Scanner; //Imports Scanner library to the program.
    public class AddressBook_app()
              Scanner keyboard = new Scanner(System.in); //Allows keyboard to be used by user for input.
         String sName = "";
              String sStreet = "";
              String sCity = "";
              String sState = "";
              String sZip = "";
              int iMenu = 1; //Initializes the variables
              System.out.println("Please enter Required Information, Press ENTER to start:"); //Scan in User inputs
    do
         String sFAKE = keyboard.nextLine();// this is to solve the problem when in...
         //loop and pressing 1 "enter" it skips Enter name because when pressing...
         //enter its reading that as next line
         Address userAddress = new Address();
         //Places Scanner into a new file called Address
         System.out.print("Enter Full Name: ");
              sName = keyboard.nextLine();
              oMyApplication2.setName(sName);
              System.out.print("\nEnter Street Address: ");
              sStreet = keyboard.nextLine();
              oMyApplication2.setStreet(sStreet);
              System.out.print("\nEnter City: ");
              sCity = keyboard.nextLine();
              oMyApplication2.setCity(sCity);
              System.out.print("\nEnter State: ");
              sState = keyboard.nextLine();
              oMyApplication2.setState(sState);
              System.out.print("\nEnter Zipcode: ");
              sZip = keyboard.nextLine();
    oMyApplication2.setZip(sZip);
              System.out.println("\n\nThe Address entered is: \n" + oMyApplication2.getString());
              System.out.println("\n" + oMyApplication2.numEntries() + "\n");
              System.out.print("Press 1 to enter another address or 2 to quit: ");
              iMenu = keyboard.nextInt();
              while(iMenu!=2);
    class Address     //Address class allows user to input addresses
                   //class variables
              private String sName;
              private String sStreet;
              private String sCity;
              private String sState;
              private String sZip;
              private int iAddress;
                   //blank constructor increments number so far     
              public Address()
                   iAddress++;
                   //constructor for all parameters
              public Address(String name, String street, String city, String state, String zip)
                   sName = name;
                   sStreet = street;
                   sCity = city;
                   sState = state;
                   sZip = zip;
                   iAddress++;
                   //set constructors to allow for changing variables     
              public void setName(String name)
                   sName = name;
              public void setStreet(String street)
                   sStreet = street;
              public void setCity(String city)
                   sCity = city;
              public void setState(String state)
                   sState = state;
              public void setZip(String zip)
                   sZip = zip;
                   //methods to return variable values     
              public String getName()
                   return sName;
              public String getStreet()
                   return sStreet;
              public String getCity()
                   return sCity;
              public String getState()
                   return sState;
              public String getZip()
                   return sZip;
              public String getString()
                   return(sName + "\n" + sStreet + "\n" + sCity + ", " + sState + " " + sZip);
              public String numEntries()
                   if(iAddress==1)
                   return(iAddress + " Address has been entered.");
                   else
                   return(iAddress + " Addresses have been entered so far.");
    }

    Hi,
    You should remove parethesis from the first line.
    For example define class like this:
    public class AddressBook_app
    Also, according to Java naming convention, you shouldn't use underline (_) in the class name. Better name could be AddressBookApp.
    There may be other problems also, but try to remove the parethesis and see what happens...
    BR,
    Markku

  • Photoshop CS2 crashes when importing with Mustek A3 scanner

    First off, yes, I know I have an old version of Photoshop. When I got my new Macbook a year or 2 ago I was only able to scan via TWAIN using Photoshop CS2, and it has been the best way.
    However, lately the scanning has been buggy. I've had no problems using PS as a whole, but sometimes when I got to Import < ScanExpress A3 USB 1200 Pro it'll scan halfway and crash, or the program will just outright crash. Today I've spent about 2 hours just trying to scan one image. It managed to work once, and now it crashes every time I try scanning.
    These are the specs of what I'm using:
    Mac OSX 10.6.7
    Photoshop CS2
    Mustek ScanExpress A3 USB Pro
    Any help is appreciated. I need to use this scanner daily for work - If I can't get these images scanned then I don't get paid!
    EDIT: Here's the crash report I get.
    Process:         Adobe Photoshop CS2 [313]
    Path:            /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2
    Identifier:      com.adobe.Photoshop
    Version:         9.0 (9.0x196) (9.0)
    Code Type:       PPC (Translated)
    Parent Process:  launchd [85]
    Date/Time:       2012-11-07 17:38:12.325 -0500
    OS Version:      Mac OS X 10.6.7 (10J4139)
    Report Version:  6
    Interval Since Last Report:          669489 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  514085 sec
    Per-App Crashes Since Last Report:   18
    Anonymous UUID:                      FF05BC6E-BF99-4005-853D-2B2516CC35D4
    Exception Type:  EXC_CRASH (SIGILL)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                  0x8023950a __pthread_kill + 10
    1   libSystem.B.dylib                  0x80238dab pthread_kill + 95
    2   com.adobe.Photoshop                0xb80f5a71 gettimeofday_wrapper + 37593
    3   ???                                0x3756eb8f 0 + 928443279
    Thread 1:
    0   libSystem.B.dylib                  0x801430ba mach_msg_trap + 10
    1   libSystem.B.dylib                  0x80143827 mach_msg + 68
    2   com.adobe.Photoshop                0xb819440f CallPPCFunctionAtAddressInt + 206231
    3   libSystem.B.dylib                  0x80170819 _pthread_start + 345
    4   libSystem.B.dylib                  0x8017069e thread_start + 34
    Thread 2:
    0   com.adobe.Photoshop                0xb815acc0 spin_lock_wrapper + 90152
    1   com.adobe.Photoshop                0xb8179c5b CallPPCFunctionAtAddressInt + 97763
    2   com.adobe.Photoshop                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop                0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.Photoshop                0xb801ceb7 0xb8000000 + 118455
    Thread 3:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop                0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.Photoshop                0xb801ceb7 0xb8000000 + 118455
    Thread 4:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 5:
    0   com.adobe.Photoshop                0xb815aa8b spin_lock_wrapper + 89587
    1   com.adobe.Photoshop                0xb818c3eb CallPPCFunctionAtAddressInt + 173427
    2   com.adobe.Photoshop                0xb818eeec CallPPCFunctionAtAddressInt + 184436
    3   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    4   ???                                0x8aace226 0 + 2326585894
    Thread 6:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 7:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 8:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 9:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 10:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 11:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 12:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 13:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop                0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.Photoshop                0xb801ceb7 0xb8000000 + 118455
    Thread 14:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop                0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.Photoshop                0xb801ceb7 0xb8000000 + 118455
    Thread 15:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop                0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.Photoshop                0xb801ceb7 0xb8000000 + 118455
    Thread 16:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop                0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.Photoshop                0xb801ceb7 0xb8000000 + 118455
    Thread 17:
    0   com.adobe.Photoshop                0xb815a93a spin_lock_wrapper + 89250
    1   com.adobe.Photoshop                0xb8176f67 CallPPCFunctionAtAddressInt + 86255
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8baa523e 0 + 2343195198
    Thread 18:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 19:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 20:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 21:
    0   com.adobe.Photoshop                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop                0xb80e88cb 0xb8000000 + 952523
    3   ???                                0x8b65b3f2 0 + 2338698226
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000  ebx: 0x802fc540  ecx: 0xb7fffa6c  edx: 0x8023950a
    edi: 0xb81f8714  esi: 0x00000004  ebp: 0xb7fffa98  esp: 0xb7fffa6c
    ss: 0x00000023  efl: 0x00000286  eip: 0x8023950a   cs: 0x0000000b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0x80239500
    Binary Images:
    0x80000000 - 0x8005dff7  com.apple.framework.IOKit 2.0 (???) <4389DF74-E070-C787-4EC1-7754B5AE19B3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x8007d000 - 0x800e7fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x80142000 - 0x802e9ff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <D9530E9D-E14D-96B0-DCCE-448AD081D61C> /usr/lib/libSystem.B.dylib
    0x8036b000 - 0x804e6fe7  com.apple.CoreFoundation 6.6.4 (550.42) <BA29C5CE-77DB-87DB-5B74-9EEFF5265681> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x805de000 - 0x805ecfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib
    0x805f1000 - 0x805fdff7  libkxld.dylib ??? (???) <4088783A-C805-4191-0E77-4D949B48F49D> /usr/lib/system/libkxld.dylib
    0x80601000 - 0x80647ff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib
    0x80654000 - 0x807d6fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <9F0FEEDC-A79D-86D2-D937-C4EC2A39C224> /usr/lib/libicucore.A.dylib
    0x80838000 - 0x808e5fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F237B77D-75A3-7240-931D-4735B91D365F> /usr/lib/libobjc.A.dylib
    0x808f9000 - 0x808fcfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <67866EA0-11AD-E175-066C-48E996265855> /usr/lib/dyld
    0xb8000000 - 0xb81defff +com.adobe.Photoshop 9.0 (9.0x196) (9.0) <6437A74D-607F-7339-5F7E-F6B0EF81C25D> /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <D9530E9D-E14D-96B0-DCCE-448AD081D61C> /usr/lib/libSystem.B.dylib
    Translated Code Information:
    objc[313]: garbage collection is ON
    NO CRASH REPORT
    Model: MacBookPro8,2, BootROM MBP81.0047.B0E, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f1
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.3)
    Bluetooth: Version 2.4.5f1, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9A302, 465.76 GB
    Serial ATA Device: MAT****ADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Composite Device, 0x055f, 0x040b, 0xfa130000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    Perhaps a full uninstall will help. here is the link to the OSX uninstaller and drivers.
    http://www.mustek.com/mustek/supportdrivers.php?&show=drivers&disp_cat=Scanner&disp_sr=USB %20Port&disp_mod=ScanExpress%20A3%20USB%201200%20Pro&disp_catid=18&disp_srid=31&disp_modid =207
    Then proceed to reinstall the OSX 10.6 driver for that scanner.

Maybe you are looking for