Getting the index of a pixel in an indexed image

Hi,
Is it possible to get the index of a pixel in an indexed image? I mean, indexed images (GIF, indexed PNG) are like:
INDEX R G B
0 234 22 143
1 9 123 213
2 56 43 10
etc.
I'm wondering if it exists a GET method to retrieve this INDEX, as getRGB() retrieves the sRGB value of a pixel.
Thanks in advance.

Raster.getSample:
import java.awt.image.*;
import java.io.*;
import java.net.*;
import javax.imageio.*;
public class IndexColorModelTest {
    public static void main(String[] args) throws IOException {
        URL url = new URL("http://forum.java.sun.com/images/reply.gif");
        BufferedImage bi = ImageIO.read(url);
        ColorModel cm = bi.getColorModel();
        if (!(cm instanceof IndexColorModel))
            throw new IOException("ColorModel is " + cm.getClass());
        WritableRaster r = bi.getRaster();
        for(int y=0, uby=r.getHeight(); y<uby; ++y) {
            for(int x=0, ubx=r.getWidth(); x<ubx; ++x) {
                int sample = r.getSample(x, y, 0); //<<--------<<
                //if (sample < 100)
                //    System.out.print(" ");
                if (sample < 10)
                    System.out.print(" ");
                System.out.print(sample);
            System.out.println();
}

Similar Messages

  • Get the color of a pixel in an image

    how can i do to get the color of a pixel in an image ???
    Can anyone help me ?

    Hi,
    first of all you need to get the library to transfer your image to java.awt.image.BufferedImage object.
    I know many such libraries. Its depends of what kind of image you have: jpeg, gif, png or other.
    And when you get the BufferedImage of you picture using library, then you can get the color of any pixel in image using int BufferedImage.getRGB(int x, int y) as integer value.
    Victor Letunovsky

  • Getting the colour of a pixel in an Image?

    Can I get the colour of a pixel in J2ME, like BufferedImage.getRGB(int x, int y) in J2SE?
    Thanks.

    Did you manage to solve this one? I am trying to do something very similar, but can't find the J2ME equivalents either.
    Graham.

  • Get the color of a pixel on the Stage

    Is there a way to retrieve the color of a generic pixel on the screen using the mouse pointer inside the Stage of Flash Player? With the getPixel method of the BitmapData class you can get the color of a pixel only if the mouse is over a bitmap image, but what if I need the color a generic pixel on the screen?

    this takes a snapshot of the pixel below the mouse:
    function eventHandler(event:MouseEvent):void
         var bmd:BitmapData = new BitmapData(1, 1, false, 0x000000);
         var matrix:Matrix = new Matrix();
         matrix.translate(event.stageX, event.stageY);
         //can never remember which way translate works so it could be:
         //matrix.translate(-event.stageX, -event.stageY);
         bmd.draw(stage, matrix);
         var pixelColour:uint = bmd.getPixel(0, 0);
    my blog has more info: http://blog.leeburrows.com/2010/09/bitmapdata-basics-1/

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • How to get the TableRow from TableView with given row Index.

    Hi ,
    I want to retrieve the TableRow object or Cells of that row of the TableView, for the given row index. How i can get that.
    Here is the below code what i am actually looking for
    TableView table = new TableView();
    table.getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {
         @Override
         public void changed(ObservableValue<? extends Number> paramObservableValue,Number prevRowIndex, Number currentRowIndex) {
              System.out.println(":::::::::>  Previous Row : "+prevRowIndex+" Current Row : "+currentRowIndex);
              if(prevRowIndex.intValue()>-1){
                   // TODO: Get the TableRow object of prevRowIndex or the cells in that row.
    });Thanks in advance !!

    Jonathan, Thanks for the info !
    Actually my requirement is ,
    1) I have an editable table with four columns. Where the first three colums are editable and the last column is a delete button to delete the record.
    2) My requirement is such that, whenever the user edits a cell, it is not comitted on focus out but the whole row(all cells) is comitted at a time when the user hits "enter". If the validation is not successfull, the textfields are styled with error class and focuses on it.
    So based on the key event on the textfield in the editable cell, i am fetching all the cells in the same row, with the below code.. and doing the save/update operation.
    textBox.setOnKeyReleased(new EventHandler<KeyEvent>() {
         @Override
         public void handle(KeyEvent t) {
              if (t.getCode() == KeyCode.ENTER) {
                          TableRowSkin<ContactPersonResponse> rowSkin = (TableRowSkin<ContactPersonResponse>) cell.getParent();
                    ObservableList<Node> cells = rowSkin.getChildren();
                    view.setCellAction(cells);
                          // The setCellAction(cells) will iterate through all the cells, validates the text field,
                          // if validation is success commits all the cells else styles the cells and focuses on the cell.
    });Till now everything is fine and working properly.
    Now I have new requirement that when the user edits a row (not yet comitted) and if he selects another row, the previous selected row should be automatically committed with validation.
    So my final action is to call the setCellAction(cells) by passing the cells of the previous selected row.
    table.getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {
         @Override
         public void changed(ObservableValue<? extends Number> paramObservableValue,Number prevRowIndex, Number currentRowIndex) {
              System.out.println(":::::::::>  Previous Row : "+prevRowIndex+" Current Row : "+currentRowIndex);
              if(prevRowIndex.intValue()>-1){
                   // TODO: Need to call the setCellAction method by passing the cells of previous selected row. (prevRowIndex)
                            // Here i am not getting how to get the cells of the previous row.          
    });In the selectedIndex listener , i am not getting how to get the cells/row from the index.
    Any solution or workaround for achieving this functionality is highly apprieciated .
    Thanks & Regards,
    Sai Pradeep Dandem.
    Edited by: Sai Pradeep Dandem on Jan 2, 2012 10:23 PM
    Edited by: Sai Pradeep Dandem on Jan 2, 2012 10:23 PM

  • Getting the Color of a Pixel in a Image

    Hi. I need to get the Color of the point in an Image (or ImageIcon). I've seen examples but they use BufferedImages.
    Thanks, Bob

    Here is a simple conversion for you:
    BufferedImage bi = new BufferedImage(myImage, myImage.getWidth(null), myImage.getHeight(null), BufferedImage.TYPE_INT_RGB);
    Graphics g = bi.getGraphics():
    g.drawImage(myImage, 0, 0, null);If you are using ImageObserver objects, then replace null with the corresponding ImageObserver object in the BufferedImage and drawImage.

  • Using a script to get the color of a colorized Black & White Bitmap image

    I've been running into this wall for quite some time and would greatly appreciate any help that can given for it.
    I have an Illustrator script that runs inside of a BridgeTalk session within an InDesign script.  Yeah, it's complicated.  The upshot is that the Illustrator part opens up an EPS file, looks through all objects on a certain layer in that file, and returns an array of the colors used in it.  So, it looks at fill colors, stroke colors, gradient stops, etc.  One of the biggest stumbling blocks (next to PlugIn Items, which I'll ask about in a separate post) is getting the color of raster images.
    Most raster images, I realize, are going to be CMYK or RGB images, but our company mostly deals with either Grayscale images or Black & White Bitmaps that are embedded in the EPS file.  Those two allow the ability to colorize them by simply selecting them and then choosing a color, such as a spot PANTONE color from one of their color books.
    Now, I need the script to read the color that the raster image has been colorized with.  This works okay for images that have a GrayScale color space, as the script just looks at Colorant[0] of that image.  However, I run into a problem with Black & White Bitmap images.  Here's a piece of code that I try to make work with an EPS file that has a raster image:
    var document = app.activeDocument;
    for (var i = 0; i < document.layers[0].pageItems.length; i++) {
              // Stepping through each item on the layer.
              var currentItem = document.layers[0].pageItems[i];
              $.writeln("Current item is " + currentItem.typename);
              $.writeln("Number of channels is " + currentItem.channels);
              $.writeln("Color Space is " + currentItem.imageColorSpace);
              $.writeln("Colorized Grayscale? " + currentItem.colorizedGrayscale);
              $.writeln("Number of Colorants: " + currentItem.colorants.length);
              for (var j = 0; j < currentItem.colorants.length; j++)
                        $.writeln("Colorant number " + j + " is " + currentItem.colorants[j]);
              $.writeln("Its parent is " + currentItem.parent);
              $.writeln("Parent's typename is " + currentItem.parent.typename);
    This code runs successfully on an Illustrator file that has a Black & White Bitmap image on the top layer, but if you try and run it, you'll see the problem:  Even if you've colorized your Bitmap image with a PANTONE spot color (and the script even returns "true" on the line "Colorized Grayscale?"), Colorant number 0 is "Gray".  It should be the spot color assigned, not "Gray".
    Can anyone please help me figure out how to get the script to recognize the actual colorant of a Black & White Bitmap image in Illustrator?

    If you're a professional photographer with 50,000 pictures stored now and more coming all the time, you need to forget about using iPhoto and get yourself some professional-quality digital asset management software. iPhoto is not meant for people like you, and instead of providing a simple, elegant one-stop answer to all your needs, iPhoto is actually complicating your life.
    You need an application that will:
    - catalog ALL your images and keep track of where they are, no matter how many DVDs, folders, partitions or hard drives they're spread over;
    - display thumbnails of ALL of them, even when the DVD that contains them is not present in any drive, so you can select all the ones you want for a project;
    - find and copy (or export) the originals of all the files you've selected in the browser window, even if it means prompting you to insert the necessary DVDs for all of them.
    I suggest Googling "digital asset management software Macintosh" and seeing what turns up. I used to use an old version of Extensis Portfolio, and even that would have been better for your purposes than iPhoto is.

  • HT1143 m my iPad[1] on to the Apple TV and I am oI am trying to use my airplay to show the screen fronly getting the bsound of say ma games but no image

    Im having problems to use Airplay for games from my iPad[1] on to Apple TV, but I do get the sound. my iOS is operating on 4.3 and later.

    You need an iPad 2 or later in order to mirror.

  • Getting the coordinates of 1 bufferedimage inside another buffered image

    hi, i'm kinda new to this.
    is there a way to get the starting x and y coordinates of 1 bufferedimage inside another bufferedimage
    let's say this is bufferedimage 1
    http://img293.imageshack.us/i/oracle.png/
    and this is bufferedimage2
    http://img38.imageshack.us/i/buffered2.png/
    i would like a method to return the x and y coordinates of image1 inside image2
    is there anyway to approach this?
    or was there a prewritten method?
    thanks

    bep -
    The problem is that the two rectangles have points in common. When the CWIMAQVision.RegionsToMask is done, it sets any point that is in any region to a non-zero value, and all other points to 0. So, when the CWIMAQVision.Label is done, it sees one big rectangle of non-zero values, and labels that (and so the CWIMAQVision.Quantify sees the one rectangle as well).
    The easiest way around this problem (if the rectangles must have points in common) is to only make one region active at a time, so CWIMAQVision.RegionsToMask will only use that region to create the mask image, and then call CWIMAQVision.Quantify twice. So, the code would look like this:
    Set pMaskImage = New CWIMAQImage
    pMaskImage.Type = cwimaqImageTypeU8
    Me.CWIMAQViewer1.R
    egions(1).Active = True
    Me.CWIMAQViewer1.Regions(2).Active = False
    Me.CWIMAQVision1.RegionsToMask pMaskImage, Me.CWIMAQViewer1.Regions
    Me.CWIMAQVision1.Label pMaskImage, pMaskImage, avgPixelVal
    Me.CWIMAQVision1.Quantify Me.CWIMAQViewer1.Image, globalReport, regionsReport, pMaskImage
    dblROImean = regionsReport.Item(1).Mean
    Me.CWIMAQViewer1.Regions(1).Active = False
    Me.CWIMAQViewer1.Regions(2).Active = True
    Me.CWIMAQVision1.RegionsToMask pMaskImage, Me.CWIMAQViewer1.Regions
    Me.CWIMAQVision1.Label pMaskImage, pMaskImage, avgPixelVal
    Me.CWIMAQVision1.Quantify Me.CWIMAQViewer1.Image, globalReport, regionsReport, pMaskImage
    dblSurrROImean = regionsReport.Item(1).Mean
    Let me know if this gives you problems.
    Greg Stoll
    IMAQ R & D
    National Instruments
    Greg Stoll
    LabVIEW R&D

  • All of a sudden when I enter a URL I get the addition of 1x1 pixels at the end and a blank page appears. Anyone have an answer for this?

    This is only happening on a couple of sites but I enter the URL (which used to work perfectly) and instead of the main page I get a blank page, but the URL has been appended with 1x1 pixels at the end. This is very frustrating. Can anyone tell me what is causing this to happen and how to make it stop?

    Start time: 12:57:26 12/31/14
    Model Identifier: iMac9,1
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 1:03
    Root access: No
    SATA
       WDC WD20EZRX-00D8PB0                   
    USB
       d2 quadra (button) (LaCie)
    Diagnostic reports
       2014-12-10 com.apple.WebKit.WebContent crash x2
       2014-12-11 AdobeAcrobat crash
       2014-12-11 PluginProcess crash
       2014-12-14 discoveryd crash
       2014-12-18 com.apple.WebKit.WebContent hang x2
       2014-12-19 discoveryd crash x4
       2014-12-24 discoveryd crash
       2014-12-25 AddressBookSourceSync crash
       2014-12-31 System Preferences hang
       2014-12-31 discoveryd crash
    Log
       Dec 31 11:47:31 [[0xffffff802728f000]  OpCode 0x0C01 (Set Event Mask) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 5000] Bluetooth warning: An HCI Req timeout occurred.
       Dec 31 11:48:02 [[0xffffff802935a000]  OpCode 0x0C3F (Set AFH Host Channel Classification) from: blued (63)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 4321] Bluetooth warning: An HCI Req timeout occurred.
       Dec 31 11:53:30 com.apple.iTunesHelper.67056: Service exited with abnormal code: 1
       Dec 31 11:55:19 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Dec 31 11:55:45 [[0xffffff8027868000]  OpCode 0x0C03 (Reset) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 10000] Bluetooth warning: An HCI Req timeout occurred.
       Dec 31 11:55:45 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- disableHIDEmulation() failed -- result = 0x0010 (kBluetoothHCIErrorHostTimeout) -- retry 1 time(s) -- 0xa000 ****
       Dec 31 11:55:55 [[0xffffff8027868000]  OpCode 0x0C03 (Reset) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 10000] Bluetooth warning: An HCI Req timeout occurred.
       Dec 31 11:55:55 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- disableHIDEmulation() failed -- result = 0x0010 (kBluetoothHCIErrorHostTimeout) -- retry 2 time(s) -- 0xa000 ****
       Dec 31 11:56:05 [[0xffffff8027868000]  OpCode 0x0C03 (Reset) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 10000] Bluetooth warning: An HCI Req timeout occurred.
       Dec 31 11:56:05 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- disableHIDEmulation() failed -- result = 0x0010 (kBluetoothHCIErrorHostTimeout) -- retry 3 time(s) -- 0xa000 ****
       Dec 31 11:56:15 com.zeobit.MacKeeper.Helper: Service setup event to handle failure and will not launch until it fires.
       Dec 31 11:56:15 com.logmein.LMILaunchAgentFixer: Service setup event to handle failure and will not launch until it fires.
       Dec 31 11:56:15 [[0xffffff8027868000]  OpCode 0x0C03 (Reset) from: kernel_task (0)  Synchronous  status: 0x00 (kIOReturnSuccess) state: 2 (BUSY) timeout: 10000] Bluetooth warning: An HCI Req timeout occurred.
       Dec 31 11:56:15 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- disableHIDEmulation() failed -- result = 0x0010 (kBluetoothHCIErrorHostTimeout) -- retry 4 time(s) -- 0xa000 ****
       Dec 31 11:56:15 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- HCIReset command failed -- resetModuleCounter = 1 -- calling BluetoothResetDevice() to reset the Bluetooth controller -- 0xa000 ****
       Dec 31 11:56:15 [IOBluetoothHostControllerUSBTransport][ReEnumerateOrReset] -- exit; error = 0x0000 (kIOReturnSuccess)
       Dec 31 11:56:15 **** [IOBluetoothHostControllerUSBTransport][InterruptReadHandler] -- Received kIOReturnAborted error - no more retries - bailing out -- 0xf000 ****
       Dec 31 11:56:35 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- Reset Bluetooth controller failed -- resetModuleCounter = 1 -- calling BluetoothResetDevice() to reset the hub -- 0xa000 ****
       Dec 31 11:56:35 REQUIRE_NO_ERR failure: 0xe00002bc - file: /SourceCache/IOBluetoothFamily_kexts/IOBluetoothFamily-4301.4.2/Core/Family/HCI /IOBluetoothFamily.cpp:26690
       Dec 31 11:56:35 **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Error!! -- Something went wrong in the setup process. Could not communicate with Bluetooth Transport successfully -- 0xa000 -- 0xf000 ****
       Dec 31 11:56:45 [IOBluetoothHCIController][hardwareSetupComplete] Failed setup: 0x0010 (kBluetoothHCIErrorHostTimeout)
       Dec 31 11:56:45 REQUIRE_NO_ERR failure: 0x10 - file: /SourceCache/IOBluetoothFamily_kexts/IOBluetoothFamily-4301.4.2/Core/Family/HCI /IOBluetoothFamily.cpp:26690
       Dec 31 11:56:45 **** [IOBluetoothHCIController][SetupBroadcomHardware] -- disableHIDEmulation() failed -- result = 0xE00002BC (kIOReturnError) -- retry 1 time(s) -- 0xa000 ****
       Dec 31 11:56:45 [IOBluetoothHostControllerUSBTransport][ReEnumerateOrReset] -- exit; error = 0x0000 (kIOReturnSuccess)
       Dec 31 12:00:02 process WindowServer[175] caught causing excessive wakeups. Observed wakeups rate (per sec): 173; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 46294
    kexts
       com.rim.driver.BlackBerryUSBDriverInt (0.0.68)
    Agents
       com.genieo.completer.ltvbit
       com.logmein.LMILaunchAgentFixer
       com.crossrider.wss002455.agent.plist
       com.rim.BBLaunchAgent
       com.webprint.osx.upload
       com.genieo.completer.download
       com.dimdim.webmeetingplugin
       com.rim.RimAlbumArtDaemon
       com.hp.printerAgent
       com.genieo.completer.update
       com.shopy-mate.updater
       com.apple.MobileMeSyncClientAgent
       com.oracle.java.Java-Updater
       com.citrixonline.GoToMeeting.G2MUpdate
       com.adobe.ARM.UUID
       jp.co.canon.CUPSFAX.BackGrounder
       com.apple.Safari
       com.zeobit.MacKeeper.Helper
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
    Startup items
       /Library/StartupItems/ParallelsDesktopTransporter/llipd
       /Library/StartupItems/ParallelsDesktopTransporter/ParallelsTransporter
       /Library/StartupItems/ParallelsDesktopTransporter/StartupParameters.plist
    Bundles
       /Library/Application Support/Adobe/APE/3.201/adbeapecore.framework
       - com.adobe.ape
       /Library/Application Support/Adobe/APE/3.201/adbeapecore.framework/Versions/A/Frameworks/Adobe AIR.framework
       - com.adobe.ape.engine
       /Library/Application Support/Adobe/APE/3.201/adbeapecore.framework/Versions/A/Frameworks/Adobe AIR.framework/Versions/1.0/Libraries/Flash Player.plugin
       - com.macromedia.FlashPlayer-10.6.plugin
       /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework
       - com.adobe.ape
       /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/Versions/A/Libraries/Flash Player.plugin
       - com.macromedia.FlashPlayer-10.4-10.5.plugin
       /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/Versions/A/Libraries/adbeapeengine. bundle
       - com.adobe.ape.engine
       /Library/Application Support/Adobe/Bridge CS6 Extensions/Adobe Output Module/contactsheet/resources/plugins/PDFGenerator.framework
       - com.apple.carbonframeworktemplate
       /Library/Application Support/Adobe/Bridge CS6 Extensions/Adobe Output Module/mediagallery/resources/plugins/FtpConnection.bundle
       - com.yourcompany.FtpConnection
       /Library/Application Support/Adobe/Bridge CS6 Extensions/Adobe Output Module/mediagallery/resources/plugins/XSLT.bundle
       - com.adobe.XSLT.bundle
       /Library/Application Support/Adobe/CS6ServiceManager/CS6ServiceManager.app
       - com.adobe.csi.CS6ServiceManager
       /Library/Application Support/Adobe/Common/dynamiclink/CS6/dynamiclinkmanager.app
       - com.adobe.dynamiclinkmanager
       /Library/Application Support/Adobe/Common/dynamiclinkmediaserver/1.0/dynamiclinkmediaserver.app
       - com.adobe.dynamiclinkmediaserver
       /Library/Application Support/Adobe/Installers/AdobeInDesign8AppBase/ExtraFiles/INSTALLDIR_EXE/Adobe InDesign CS6.app
       - null
       /Library/Application Support/Adobe/Linguistics/6.0/Providers/Plugins2/AdobeHunspellPlugin.bundle
       - com.adobe.adobehunspellplugin2
       /Library/Application Support/Adobe/Linguistics/6.0/Providers/Plugins2/WRLiloPlugin1.3.bundle
       - com.winsoft.wrliloplugin
       /Library/Application Support/Adobe/Linguistics/6.0/UserDictionaryMigrationTool/Frameworks/AdobeLingu istic.framework
       - com.adobe.linguistic.LinguisticManager
       /Library/Application Support/Adobe/Plug-Ins/CS6/File Formats/Camera Raw.plugin
       - com.adobe.CameraRaw
       /Library/Application Support/Adobe/SING/Mark II/SING.bundle
       - com.adobe.SING
       /Library/Application Support/Adobe/SING/Mark II/SINGCore.bundle
       - com.adobe.SINGCore
       /Library/Application Support/Adobe/SING/Mark II/TIN.bundle
       - com.adobe.TIN
       /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app
       - com.adobe.switchboard-2.0
       /Library/Application Support/Adobe/Uninstall/{UUID}.app
       - com.Adobe.Uninstall
       /Library/Application Support/BlackBerry/BlackBerry Device Manager.app
       - com.rim.blackberrydevicemanager
       /Library/Application Support/BlackBerry/BlackBerryMobileMediaServer.app
       - com.rim.BlackBerryMobileMediaServer
       /Library/Application Support/BlackBerry/IPModemPasswordDialog.app
       - com.rim.IPModemPasswordHelper
       /Library/Application Support/Canon/ScanGear MF/Library/CommandManager.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Library/DeviceManager.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Library/EventListener.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Library/IO_Module.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Library/ImageFilter.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Library/Protocol_Module.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Library/SGLibrary.framework
       - jp.co.canon.ScanGear.fmwk.SGLibrary
       /Library/Application Support/Canon/ScanGear MF/Library/UI.framework
       - jp.co.canon.ScanGearMF.fmwk.ScanGearUI
       /Library/Application Support/Canon/ScanGear MF/ScannerCapability.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/ScannerCore.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/TwainProtocolManager.framework
       - jp.co.canon.ScanGear
       /Library/Application Support/Canon/ScanGear MF/Utility/Canon MF Network Scan Utility.app
       - jp.co.canon.ScanGearMF.appl.Canon
       /Library/Application Support/Canon/ScanGear MF/Utility/MF Toolbox.app
       - jp.co.canon.ScanGearMF.appl.MF
       /Library/Application Support/Canon/WMCLibrary.framework
       - jp.co.canon.WMCLibrary.fmwk.WMCLibrary
       /Library/Application Support/DivX/DivXUpdater.app
       - com.divx.DivXUpdater
       /Library/Application Support/DivX/Frameworks/DPB.framework
       - com.divx.DPB
       /Library/Application Support/DivX/Frameworks/DSEPluginAPI.framework
       - com.divx.DSEPluginAPI
       /Library/Application Support/DivX/Frameworks/DivXPlugInModule.framework
       - com.divx.DivXPalettePluginModule
       /Library/Application Support/DivX/Frameworks/DivXStreamEngine.framework
       - com.divx.DivXStreamEngine
       /Library/Application Support/DivX/Frameworks/JsonCpp.framework
       - com.apple.JsonCpp
       /Library/Application Support/DivX/Frameworks/PlatformModule.framework
       - com.divx.PlatformModule
       /Library/Application Support/DivX/Frameworks/QtCore.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtDBus.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtGui.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtNetwork.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtScript.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtSql.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtSvg.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtWebKit.framework
       - null
       /Library/Application Support/DivX/Frameworks/QtXml.framework
       - null
       /Library/Application Support/DivX/Frameworks/mcaacadec.framework
       - com.mainconcept.mcaacadec
       /Library/Application Support/DivX/Frameworks/phonon.framework
       - null
       /Library/Application Support/DivX/Stream Engine/3.1/CoreAudioDecode.bundle
       - com.divx.streamengine.plugin.CoreAudioDecode
       /Library/Application Support/DivX/Stream Engine/3.1/CoreAudioOutput.bundle
       - com.divx.streamengine.plugin.CoreAudioOutput
       /Library/Application Support/DivX/Stream Engine/3.1/DivXAACDecode.bundle
       - com.divx.streamengine.plugin.DivXAACDecode
       /Library/Application Support/DivX/Stream Engine/3.1/DivXASPDecode.bundle
       - com.divx.streamengine.plugin.DivXASPDecode
       /Library/Application Support/DivX/Stream Engine/3.1/DivXAVCDecode.bundle
       - com.divx.streamengine.plugin.DivXAVCDecode
       /Library/Application Support/DivX/Stream Engine/3.1/DivXColorTransform.bundle
       - com.divx.streamengine.plugin.DivXColorTransform
       /Library/Application Support/DivX/Stream Engine/3.1/DivXDeinterlaceFilter.bundle
       - com.divx.streamengine.plugin.DivXDeinterlaceFilter
       /Library/Application Support/DivX/Stream Engine/3.1/DivXPlaybackModule.bundle
       - com.divx.DivXPlaybackModule
       /Library/Application Support/DivX/Stream Engine/3.1/DivXSubDecode.bundle
       - com.divx.streamengine.plugin.DivXSubDecode
       /Library/Application Support/DivX/Stream Engine/3.1/MP3SurroundDecode.bundle
       - com.divx.streamengine.plugin.MP3SurroundDecode
       /Library/Application Support/DivX/Stream Engine/3.1/MPGLibDecode.bundle
       - com.divx.streamengine.plugin.MPGLibDecode
       /Library/Application Support/DivX/Stream Engine/3.1/OpenGLVideoOutput.bundle
       - com.divx.streamengine.plugin.OpenGLVideoOutput
       /Library/Application Support/DivX/Stream Engine/3.1/SSADecode.bundle
       - com.divx.streamengine.plugin.SSADecode
       /Library/Application Support/DivX/Stream Engine/3.1/TextDecode.bundle
       - com.divx.streamengine.plugin.TextDecode
       /Library/Application Support/Hewlett-Packard/HP Scan Pro/LIB/HPAiOScan.bundle
       - com.hp.AiOScan
       /Library/Application Support/Hewlett-Packard/Imaging/HP Imaging Kit.bundle
       - com.hp.imageprocessing
       /Library/Application Support/Hewlett-Packard/Imaging/HP Keywords Kit.bundle
       - com.hp.keywords
       /Library/Application Support/Hewlett-Packard/Imaging/ImageExport.bundle
       - com.hp.ImageExport
       /Library/Application Support/Hewlett-Packard/Plugins/HP AiO DestinationDetail.bundle
       - com.hp.HP
       /Library/Application Support/Hewlett-Packard/Plugins/HP AiO Discovery.bundle
       - com.hp.AiODiscovery
       /Library/Application Support/Hewlett-Packard/Plugins/HP AiO ScanDestinations.shlb
       - com.apple.carbonbundletemplate
       /Library/Application Support/Hewlett-Packard/Plugins/HPScanToLib.framework
       - com.hp.photosmart.HPScanToLib
       /Library/Application Support/Hewlett-Packard/Printing/HP Printing Kit.bundle
       - com.hp.printingkit
       /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
       - com.hp.rulesprocessor
       /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
       - com.hp.HPScheduler
       /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
       - com.MindVision.VISEX
       /Library/Application Support/Hewlett-Packard/Uninstaller/HP AiO Uninstall.bundle
       - com.hp.uninstall.AiO
       /Library/Application Support/Hewlett-Packard/iPhoto Support/HP Image Dropper.app
       - com.hp.imagedropper
       /Library/Application Support/Hewlett-Packard/iPhoto Support/Jpeg to iPhoto.app
       - com.hp.photo.jpgtoiphoto
       /Library/Application Support/Hewlett-Packard/iPhoto Support/hp2ipho.bundle
       - com.hp.hp2ipho
       /Library/Application Support/LogMeIn Plugin/LogMeInPluginUninstaller.app
       - com.logmein.UninstallPlugin
       /Library/Application Support/LogMeIn/bin/LogMeIn.app
       - com.logmein.logmeinserver
       /Library/Application Support/LogMeIn/bin/LogMeInDiag.app
       - com.logmein.LogMeInDiag
       /Library/Application Support/LogMeIn/bin/LogMeInGUI.app
       - com.logmein.LogMeInGUI
       /Library/Application Support/LogMeIn/root_updates/Applications/Toolkit.app
       - com.logmein.Toolkit
       /Library/Application Support/LogMeIn/root_updates/Library/Printers/LogMeIn/LogMeInPrinter.bundle
       - com.logmein.printers.LogMeInPrinter
       /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
       - com.microsoft.helpviewer
       /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
       - com.microsoft.autoupdate2
       /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
       - com.microsoft.error_reporting
       /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
       - com.microsoft.netlib.shipassertprocess
       /Library/Application Support/Microsoft/Office Converter Support/MFConverter.bundle
       - com.microsoft.MFConverter
       /Library/Application Support/Microsoft/Office Converter Support/MSXML.framework
       - com.microsoft.openxml.msxml_library
       /Library/Application Support/Microsoft/Office Converter Support/MicrosoftChartPlugin.framework
       - com.microsoft.openxml.chart
       /Library/Application Support/Microsoft/Office Converter Support/MicrosoftComponentPlugin.framework
       - com.microsoft.openxml.mcp
       /Library/Application Support/Microsoft/Office Converter Support/MicrosoftOLE.framework
       - com.microsoft.openxml.ole
       /Library/Application Support/Microsoft/Office Converter Support/MicrosoftOLEAutomation.framework
       - com.microsoft.openxml.ole_automation
       /Library/Application Support/Microsoft/Office Converter Support/MicrosoftOffice.framework
       - com.microsoft.openxml.office_library
       /Library/Application Support/Microsoft/Office Converter Support/MicrosoftOleo.framework
       - com.microsoft.openxml.oleo
       /Library/Application Support/Microsoft/Office Converter Support/OfficeArt.framework
       - com.microsoft.openxml.officeart
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
       - com.microsoft.openxml.chartconverter.app
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
       - com.microsoft.openxml.excel.app
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.framework
       - com.microsoft.openxml.excel.lib
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
       - com.microsoft.openxml.word.app
       /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.framework
       - com.microsoft.openxml.word
       /Library/Application Support/Microsoft/Office Converter Support/SmartArt.framework
       - com.microsoft.openxml.igx
       /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
       - com.microsoft.openxml.powerpoint.app
       /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
       - com.microsoft.silverlight.sllauncher
       /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/FxPlugWrapper.plugin
       - com.apple.QuartzComposer.FxPlugWrapper
       /Library/Application Support/hp/P1100_1560_1600Series/hp LaserJet Firmware Download Utility.app
       - com.Marvell.HP1100.Firmwaredownload.app
       /Library/Application Support/iWork '08/iWork Tour.app
       - com.apple.iWorkTour
       /Library/Automator/Add Attachments to Outlook Messages.action
       - com.microsoft.Automator.Add_Attachments_to_Outlook_Messages
       /Library/Automator/Add Content to Word Documents.action
       - com.microsoft.Automator.Add_Content_to_Word_Documents
       /Library/Automator/Add Document Properties Page to Word Documents.action
       - com.microsoft.Automator.Add_Document_Properties_Page_to_Word_Documents
       /Library/Automator/Add New Sheet to Workbooks.action
       - com.microsoft.Automator.Add_New_Sheet_to_Workbooks
       /Library/Automator/Add Table of Contents to Word Documents.action
       - com.microsoft.Automator.Add_Table_of_Contents_to_Word_Documents
       /Library/Automator/Add Watermark to Word Documents.action
       - com.microsoft.Automator.Add_Watermark_to_Word_Documents
       /Library/Automator/Apply Animation to PowerPoint Slide Parts.action
       - com.microsoft.Automator.Apply_Animation_to_PowerPoint_Slide_Parts
       /Library/Automator/Apply Font Format Settings to Word Documents.action
       - com.microsoft.Automator.Apply_Font_Format_Settings_to_Word_Documents
       /Library/Automator/AutoFormat Data in Excel Workbooks.action
       - com.microsoft.Automator.AutoFormat_Data_in_Excel_Workbooks
       /Library/Automator/Bring Word Documents to Front.action
       - com.microsoft.Automator.Bring_Word_Documents_to_Front
       /Library/Automator/Close Excel Workbooks.action
       - com.microsoft.Automator.Close_Excel_Workbooks
       /Library/Automator/Close Outlook Items.action
       - com.microsoft.Automator.Close_Outlook_Items
       /Library/Automator/Close PowerPoint Presentations.action
       - com.microsoft.Automator.Close_PowerPoint_Presentations
       /Library/Automator/Close Word Documents.action
       - com.microsoft.Automator.Close_Word_Documents
       /Library/Automator/Combine Excel Files.action
       - com.microsoft.Automator.Combine_Excel_Files
       /Library/Automator/Combine PowerPoint Presentations.action
       - com.microsoft.Automator.Combine_PowerPoint_Presentations
       /Library/Automator/Combine Word Documents.action
       - com.microsoft.Automator.Combine_Word_Documents
       /Library/Automator/Compare Word Documents.action
       - com.microsoft.Automator.Compare_Word_Documents
       /Library/Automator/Convert Format of Excel Files.action
       - com.microsoft.Automator.Convert_Format_of_Excel_Files
       /Library/Automator/Convert Format of PowerPoint Presentations.action
       - com.microsoft.Automator.Convert_Format_of_PowerPoint_Presentations
       /Library/Automator/Convert PowerPoint Presentations to Movies.action
       - com.microsoft.Automator.Convert_PowerPoint_Presentations_to_Movies
       /Library/Automator/Convert Word Content Object to Text Object.caction
       - com.microsoft.Automator.Convert_Word_Content_Object_to_Text_Object
       /Library/Automator/Copy Excel Workbook Content to the Clipboard.action
       - com.microsoft.Automator.Copy_Excel_Workbook_Content_to_the_Clipboard
       /Library/Automator/Copy PowerPoint Slides to the Clipboard.action
       - com.microsoft.Automator.Copy_PowerPoint_Slides_to_the_Clipboard
       /Library/Automator/Copy Word Document Content to the Clipboard.action
       - com.microsoft.Automator.Copy_Word_Document_Content_to_the_Clipboard
       /Library/Automator/Create List from Data in Workbook.action
       - com.microsoft.Automator.Create_List_from_Data_in_Workbook
       /Library/Automator/Create New Excel Workbook.action
       - com.microsoft.Automator.Create_New_Excel_Workbook
       /Library/Automator/Create New Outlook Mail Message.action
       - com.microsoft.Automator.Create_New_Outlook_Mail_Message
       /Library/Automator/Create New PowerPoint Presentation.action
       - com.microsoft.Automator.Create_New_PowerPoint_Presentation
       /Library/Automator/Create New Word Document.action
       - com.microsoft.Automator.Create_New_Word_Document
       /Library/Automator/Create PowerPoint Picture Slide Shows.action
       - com.microsoft.Automator.Create_PowerPoint_Picture_Slide_Shows
       /Library/Automator/Create Table from Data in Workbook.action
       - null
       /Library/Automator/Delete Outlook Items.action
       - com.microsoft.Automator.Delete_Outlook_Items
       /Library/Automator/Find and Replace Text in Word Documents.action
       - com.microsoft.Automator.Find_and_Replace_Text_in_Word_Documents
       /Library/Automator/Flag Word Documents for Follow Up.action
       - com.microsoft.Automator.Flag_Word_Documents_for_Follow_Up
       /Library/Automator/Forward Outlook Mail Messages.action
       - com.microsoft.Automator.Forward_Outlook_Mail_Messages
       /Library/Automator/Get Content from Word Documents.action
       - com.microsoft.Automator.Get_Content_from_Word_Documents
       /Library/Automator/Get Images from PowerPoint Slides.action
       - com.microsoft.Automator.Get_Images_from_PowerPoint_Slides
       /Library/Automator/Get Images from Word Documents.action
       - com.microsoft.Automator.Get_Images_from_Word_Documents
       /Library/Automator/Get Parent Presentations of Slides.action
       - com.microsoft.Automator.Get_Parent_Presentations_of_Slides
       /Library/Automator/Get Parent Workbooks.action
       - com.microsoft.Automator.Get_Parent_Workbooks
       /Library/Automator/Get Selected Content from Excel Workbooks.action
       - com.microsoft.Automator.Get_Selected_Content_from_Excel_Workbooks
       /Library/Automator/Get Selected Content from Word Documents.action
       - com.microsoft.Automator.Get_Selected_Content_from_Word_Documents
       /Library/Automator/Get Selected Outlook Items.action
       - com.microsoft.Automator.Get_Selected_Outlook_Items
       /Library/Automator/Get Selected Text from Outlook Items.action
       - com.microsoft.Automator.Get_Selected_Text_from_Outlook_Items
       /Library/Automator/Get Text From Outlook Mail Messages.action
       - com.microsoft.Automator.Get_Text_from_Outlook_Mail_Messages
       /Library/Automator/Get Text from Word Documents.action
       - com.microsoft.Automator.Get_Text_from_Word_Documents
       /Library/Automator/Import Text Files to Excel Workbook.action
       - com.microsoft.Automator.Import_Text_Files_to_Excel_Workbook
       /Library/Automator/Insert Captions into Word Documents.action
       - com.microsoft.Automator.Insert_Captions_into_Word_Documents
       /Library/Automator/Insert Content into Outlook Mail Messages.action
       - com.microsoft.Automator.Insert_Content_into_Outlook_Mail_Messages
       /Library/Automator/Insert Content into Word Documents.action
       - com.microsoft.Automator.Insert_Content_into_Word_Documents
       /Library/Automator/Insert New PowerPoint Slides.action
       - com.microsoft.Automator.Insert_New_PowerPoint_Slides
       /Library/Automator/Mark Outlook Mail Message as a To Do Item.action
       - com.microsoft.Automator.Mark_Outlook_Mail_Message_as_a_To_Do_Item
       /Library/Automator/Office.definition
       - com.microsoft.Automator.OfficeDefinition
       /Library/Automator/Open Excel Workbooks.action
       - com.microsoft.Automator.Open_Excel_Workbooks
       /Library/Automator/Open Outlook Items.action
       - com.microsoft.Automator.Open_Outlook_Items
       /Library/Automator/Open PowerPoint Presentations.action
       - com.microsoft.Automator.Open_PowerPoint_Presentations
       /Library/Automator/Open Word Documents.action
       - com.microsoft.Automator.Open_Word_Documents
       /Library/Automator/Paste Clipboard Content into Excel Workbooks.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_Excel_Workbooks
       /Library/Automator/Paste Clipboard Content into Outlook Items.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_Outlook_Items
       /Library/Automator/Paste Clipboard Content into PowerPoint Presentations.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_PowerPoint_Presentations
       /Library/Automator/Paste Clipboard Content into Word Documents.action
       - com.microsoft.Automator.Paste_Clipboard_Content_into_Word_Documents
       /Library/Automator/Play PowerPoint Slide Shows.action
       - com.microsoft.Automator.Play_PowerPoint_Slideshows
       /Library/Automator/Print Excel Workbooks.action
       - com.microsoft.Automator.Print_Excel_Workbooks
       /Library/Automator/Print Outlook Messages.action
       - com.microsoft.Automator.Print_Outlook_Messages
       /Library/Automator/Print PowerPoint Presentations.action
       - com.microsoft.Automator.Print_PowerPoint_Presentations
       /Library/Automator/Print Word Documents.action
       - com.microsoft.Automator.Print_Word_Documents
       /Library/Automator/Protect Word Documents.action
       - com.microsoft.Automator.Protect_Word_Documents
       /Library/Automator/Quit Excel.action
       - com.microsoft.Automator.Quit_Excel
       /Library/Automator/Quit Outlook.action
       - com.microsoft.Automator.Quit_Outlook
       /Library/Automator/Quit PowerPoint.action
       - com.microsoft.Automator.Quit_PowerPoint
       /Library/Automator/Quit Word.action
       - com.microsoft.Automator.Quit_Word
       /Library/Automator/Reply to Outlook Mail Messages.action
       - com.microsoft.Automator.Reply_to_Outlook_Mail_Messages
       /Library/Automator/Save Excel Workbooks.action
       - com.microsoft.Automator.Save_Excel_Workbooks
       /Library/Automator/Save Outlook Draft Messages.action
       - com.microsoft.Automator.Save_Outlook_Draft_Messages
       /Library/Automator/Save Outlook Items as Files.action
       - com.microsoft.Automator.Save_Outlook_Items_as_Files
       /Library/Automator/Save Outlook Messages as Files.action
       - null
       /Library/Automator/Save PowerPoint Presentations.action
       - com.microsoft.Automator.Save_PowerPoint_Presentations
       /Library/Automator/Save Word Documents.action
       - com.microsoft.Automator.Save_Word_Documents
       /Library/Automator/Save as Adobe PDF.action
       - com.adobe.Automator.Save
       /Library/Automator/Search Outlook Items.action
       - com.microsoft.Automator.Search_Outlook_Items
       /Library/Automator/Select Cells in Excel Workbooks.action
       - com.microsoft.Automator.Select_Cells_in_Excel_Workbooks
       /Library/Automator/Select PowerPoint Slides.action
       - com.microsoft.Automator.Select_PowerPoint_Slides
       /Library/Automator/Send Outgoing Outlook Mail Messages.action
       - com.microsoft.Automator.Send_Outgoing_Outlook_Mail_Messages
       /Library/Automator/Set Category of Outlook Items.action
       - com.microsoft.Automator.Set_Category_of_Outlook_Items
       /Library/Automator/Set Document Settings.action
       - com.microsoft.Automator.Set_Document_Settings
       /Library/Automator/Set Excel Workbook Properties.action
       - com.microsoft.Automator.Set_Excel_Workbook_Properties
       /Library/Automator/Set Footer for PowerPoint Slides.action
       - com.microsoft.Automator.Set_Footer_for_PowerPoint_Slides
       /Library/Automator/Set Outlook Contact Properties.action
       - com.microsoft.Automator.Set_Outlook_Contact_Properties
       /Library/Automator/Set PowerPoint Slide Layout.action
       - com.microsoft.Automator.Set_PowerPoint_Slide_Layout
       /Library/Automator/Set PowerPoint Slide Transition Settings.action
       - com.microsoft.Automator.Set_PowerPoint_Slide_Transition_Settings
       /Library/Automator/Set Security Options for Word Documents.action
       - com.microsoft.Automator.Set_Security_Options_for_Word_Documents
       /Library/Automator/Set Text Case in Word Documents.action
       - com.microsoft.Automator.Set_Text_Case_in_Word_Documents
       /Library/Automator/Set Word Document Properties.action
       - com.microsoft.Automator.Set_Word_Document_Properties
       /Library/Automator/Sort Data in Excel Workbooks.action
       - com.microsoft.Automator.Sort_Data_in_Excel_Workbooks
       /Library/Contextual Menu Items/ParallelsCM.plugin
       - com.parallels.cmplugin
       /Library/Contextual Menu Items/StuffItCM.plugin
       - com.stuffit.StuffItCM
       /Library/Frameworks/Adobe AIR.framework
       - com.adobe.AIR
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
       - com.adobe.air.ApplicationInstaller
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR Updater.app
       - com.adobe.air.Installer
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
       - com.adobe.adobecp
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
       - com.macromedia.FlashPlayer-10.6.plugin
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
       - com.adobe.air.Template
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
       - com.adobe.adobecp20
       /Library/Frameworks/DivX Toolkit.framework
       - com.divx.divxtoolkit
       /Library/Frameworks/DotMacKit.framework
       - com.apple.DotMacKit
       /Library/Frameworks/EWSMac.framework
       - com.eSellerate.EWSMac50726188
       /Library/Frameworks/ExtensisFontManagement.framework
       - com.extensis.ExtensisFontManagement.sdk
       /Library/Frameworks/ExtensisFontManagement.framework/Versions/A/Frameworks/Exte nsisToolbox.framework
       - com.extensis.framework.toolbox
       /Library/Frameworks/FxPlug.framework
       - com.apple.fxplugframework
       /Library/Frameworks/HPDeviceModel.framework
       - com.hp.dmf
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/ClientUI.fr amework
       - com.hp.dmf.ClientUI
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Configure.f ramework
       - com.hp.dmf.Configure
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork
       - com.hp.dmf.Core
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/CFXmlParser.plugin
       - com.hp.dmf.plugins.CFXmlParser
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/LegacySecureData.plugin
       - com.hp.dmf.plugins.LegacySecureData
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/SecureData.plugin
       - com.hp.dmf.plugins.SecureData
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/libXmlParser.plugin
       - com.hp.dmf.plugins.libXmlParser
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/DataStore.f ramework
       - com.hp.dmf.DataStore
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/DeviceID.fr amework
       - com.hp.dmf.DeviceID
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/HDT.framewo rk
       - com.hp.dmf.HDT
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/PML.framewo rk
       - com.hp.dmf.PML
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework
       - com.hp.dmf.Status
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/CDPrintingStatus.plugin
       - com.hp.dmf.plugins.CDPrintingStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/CoversStatus.plugin
       - com.hp.dmf.plugins.CoversStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceAlerts.plugin
       - com.hp.dmf.plugins.DeviceAlerts
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceStatus.plugin
       - com.hp.dmf.plugins.DeviceStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceTrays.plugin
       - com.hp.dmf.plugins.DeviceTrays
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/EstimatedPagesStatus.plugin
       - com.hp.dmf.plugins.EstimatedPagesStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/JobsStatus.plugin
       - com.hp.dmf.plugins.JobsStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/SpecialtyPrintingStatus.plugin
       - com.hp.dmf.plugins.SpecialPrintingStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/SuppliesStatus.plugin
       - com.hp.dmf.plugins.SuppliesStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/XMLServices .framework
       - com.hp.dmf.XMLServices
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Resources/PlugIns/dmfs tatusclient.bundle
       - com.hp.dmfstatusclient
       /Library/Frameworks/HPPml.framework
       - com.hp.hpio.HPPmlFramework
       /Library/Frameworks/HPServicesInterface.framework
       - com.hp.hpio.HPServicesInterfaceFramework
       /Library/Frameworks/HPServicesInterface.framework/Versions/B/Resources/CocoaWra pper.bundle
       - com.hp.hpio.CocoaWrapper
       /Library/Frameworks/HPSmartX.framework
       - com.hp.hpio.SmartX
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/CifsPlugins/HPCifsSer vice.plugin
       - com.hp.aio.smartx.plugin.DefaultCifsService
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/CopyPlugins/CIACopy.p lugin
       - com.hp.CIACopy
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/DeviceDetailsPlugins/ CIAPMLService.plugin
       - com.hp.CIAPMLService
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/DeviceDetailsPlugins/ HPHDTPlugin.plugin
       - com.hp.aio.smartx.plugin.DeviceDetailsDefault
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/DeviceManagerPlugins/ BonjourDiscoveryManager.plugin
       - com.hp.aio.smartx.plugin.bonjourdiscoverymanager
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/DeviceManagerPlugins/ HPDeviceManager.plugin
       - com.hp.aio.smartx.plugin.DeviceManager
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/FaxPlugins/HPDot4Scan .plugin
       - com.hp.HPDot4Scan
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/FaxPlugins/HPFaxPlugi n.plugin
       - com.hp.aio.HPFaxPlugin
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/ScanPlugins/HPDot4Sca n.plugin
       - com.hp.HPDot4Scan
       /Library/Frameworks/HPSmartX.framework/Versions/A/Plugins/ScanPlugins/XorbScan. plugin
       - com.hp.XorbScan
       /Library/Frameworks/KodakCMS.framework
       - com.kodak.KodakCMM.framework
       /Library/Frameworks/LogoSync.framework
       - com.gretagmacbeth.logosync
       /Library/Frameworks/MacFUSE.framework
       - com.google.MacFUSE
       /Library/Frameworks/MindFortress.framework
       - net.webis.mindfortress.framework
       /Library/Frameworks/NotesLib.framework
       - com.mac.pmplugins.NotusLib
       /Library/Frameworks/PMPluginsFramework.framework
       - com.pmframework.pmframework
       /Library/Frameworks/PMPluginsFramework4.framework
       - com.PMPlugins.PMPluginsFramework4
       /Library/Frameworks/PMPluginsFramework68kAligned.framework
       - com.pmframework.pmframework
       /Library/Frameworks/Pantomime.framework
       - com.collaboration-world.Pantomime
       /Library/Frameworks/ProFX.framework
       - com.apple.ProFX
       /Library/Frameworks/RIM_VSP.framework
       - com.rim.vsp
       /Library/Frameworks/RimBlackBerryUSB.framework
       - com.rim.RimBlackBerryUSB
       /Library/Frameworks/StuffIt.framework
       - com.stuffit.sdk
       /Library/Frameworks/StuffItCore.framework
       - com.stuffit.stuffitcore
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/apple.bundle
       - com.stuffit.format.apple
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/arc.bundle
       - com.stuffit.format.arc
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/arj.bundle
       - com.stuffit.format.arj
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/bin.bundle
       - com.stuffit.format.bin
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/btoa.bundle
       - com.stuffit.format.btoa
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/bz2.bundle
       - com.stuffit.format.bz2
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/cab.bundle
       - com.stuffit.format.cab
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/compress.bundle
       - com.stuffit.format.compress
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/cpt.bundle
       - com.stuffit.format.cpt
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/freeze.bundle
       - com.stuffit.format.freeze
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/gz.bundle
       - com.stuffit.format.gz
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/hqx.bundle
       - com.stuffit.format.hqx
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/lha.bundle
       - com.stuffit.format.lha
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/lzma.bundle
       - com.stuffit.format.lzma
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/mime.bundle
       - com.stuffit.format.mime
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/pack.bundle
       - com.stuffit.format.pack
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/pf.bundle
       - com.stuffit.format.pf
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/rar.bundle
       - com.stuffit.format.rar
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/sco.bundle
       - com.stuffit.format.sco
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/sevenz.bundle
       - com.stuffit.format.sevenz
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/sit.bundle
       - com.stuffit.format.sit
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/sitseg.bundle
       - com.stuffit.format.sitseg
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/sitx.bundle
       - com.stuffit.format.sitx
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/spacesaver.bundle
       - com.stuffit.format.spacesaver
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/tar.bundle
       - com.stuffit.format.tar
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/uu.bundle
       - com.stuffit.format.uu
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/yenc.bundle
       - com.stuffit.format.yenc
       /Library/Frameworks/StuffItCore.framework/Versions/A/Plug-Ins/zip.bundle
       - com.stuffit.format.zip
       /Library/Frameworks/SyncManagerCommon.framework
       - net.pocketmac.SyncManagerCommon
       /Library/Frameworks/SyncManagerMedia.framework
       - net.pocketmac.SyncManagerMedia
       /Library/Frameworks/Xalan-c-xc.framework
       - null
       /Library/Frameworks/Xerces-c-xc.framework
       - null
       /Library/Frameworks/Xerces-c-xc.framework/Versions/2.1
       - null
       /Library/Frameworks/libical.framework
       - null
       /Library/Image Capture/Devices/Canon MFScanner.app
       - jp.co.canon.ScanGear
       /Library/Image Capture/Scripts/Import and View with iPhoto.app
       - com.hp.iPhoto.icautotask
       /Library/Image Capture/TWAIN Data Sources/Canon D1100 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon D400-450 USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon D460-490 USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon D500 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF3010 USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4320-4350 USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4360-4390 USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4400 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4400 Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4500 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4500 Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4500w Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4500w Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF4600 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF5800 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF5900 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF5900 Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8000 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8000 Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8000C Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8000C Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8300 Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8300 Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8300C Series USB.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Image Capture/TWAIN Data Sources/Canon MF8300C Series.ds
       - jp.co.canon.ScanGear.bndl.Canon
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
       - com.divx.DivXBrowserPlugin
       /Library/Internet Plug-Ins/Flash Player.plugin
       - com.macromedia.Flash
       /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - com.Google.GoogleEarthPlugin.plugin
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       - com.oracle.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/LogMeIn.plugin
       - com.logmein.remctrlplugin
       /Library/Internet Plug-Ins/LogMeInSafari32.plugin
       - com.logmein.remctrlplugin
       /Library/Internet Plug-Ins/LogMeInSafari64.plugin
       - com.logmein.remctrlplugin
       /Library/Internet Plug-Ins/OVSHelper.plugin
       - com.divx.OVSHelper
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
       - com.microsoft.sharepoint.webkitplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/Internet Plug-Ins/npDimdimControl.plugin
       - com.apple.carbonbundletemplate
       /Library/Internet Plug-Ins/wkDimdimControl.plugin
       - com.dimdim.wkDimdimControl
       /Library/PDF Services/Save as Adobe PDF.app
       - com.apple.automator.SaveasAdobePDF
       /Library/Parallels/Parallels Mounter.app
       - com.parallels.server.mounter
       /Library/PreferencePanes/DivX.prefPane
       - com.divx.divxprefs
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/MacFUSE.prefPane
       - com.google.MacFUSE
       /Library/PreferencePanes/sfcore-prefpane.prefPane
       - com.extensis.sfcore-prefpane
       /Library/Printers/Canon/CUPSCMFP/BackGrounder/Canon CMFP BackGrounder.app
       - jp.co.canon.CUPSCMFP.BackGrounder
       /Library/Printers/Canon/CUPSCMFP/Info/PrinterInfo.plugin
       - jp.co.canon.CUPSCMFP.CUPSCMFPPrinterInfo
       /Library/Printers/Canon/CUPSCMFP/Libs/libcmfe_cmfp.framework
       - jp.co.canon.CUPSCMFP.libcmfe_cmfp
       /Library/Printers/Canon/CUPSCMFP/Manual/CanonCMFPHelp.help
       - jp.co.canon.CMFP.help
       /Library/Printers/Canon/CUPSCMFP/PBMs/IOM_BackGrounder.plugin
       - jp.co.canon.CUPSCMFP.IOM_BackGrounder
       /Library/Printers/Canon/CUPSCMFP/PBMs/IOM_LPRv6.plugin
       - jp.co.canon.CUPSCMFP.IOM_LPRv6
       /Library/Printers/Canon/CUPSCMFP/PBMs/PBM_LPRv6.plugin
       - jp.co.canon.print.CUPSCMFP.PBM_LPRv6
       /Library/Printers/Canon/CUPSCMFP/PDEs/AboutPDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.About
       /Library/Printers/Canon/CUPSCMFP/PDEs/AdvancedSettingsPDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.AdvancedSettings
       /Library/Printers/Canon/CUPSCMFP/PDEs/BasicSettingsPDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.BasicSettings
       /Library/Printers/Canon/CUPSCMFP/PDEs/CUPSCMFPPDECommon.framework
       - jp.co.canon.CUPSCMFP.CUPSCMFPPDECommon
       /Library/Printers/Canon/CUPSCMFP/PDEs/FinishingPDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.Finishing
       /Library/Printers/Canon/CUPSCMFP/PDEs/PaperSourcePDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.PaperSource
       /Library/Printers/Canon/CUPSCMFP/PDEs/QualityPDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.Quality
       /Library/Printers/Canon/CUPSCMFP/PDEs/SpecialFeaturesPDE.plugin
       - jp.co.canon.CUPSCMFP.PDEs.SpecialFeatures
       /Library/Printers/Canon/CUPSCMFP/Utilities/Canon CMFP Printmonitor.app
       - jp.co.canon.CUPS.CMFP.Printmonitor
       /Library/Printers/Canon/CUPSFAX/BackGrounder/Canon FAX BackGrounder.app
       - jp.co.canon.CUPSFAX.BackGrounder
       /Library/Printers/Canon/CUPSFAX/Info/PrinterInfo.plugin
       - jp.co.canon.CUPSFAX.CUPSFAXPrinterInfo
       /Library/Printers/Canon/CUPSFAX/Libs/libcmfe_fax.framework
       - jp.co.canon.CUPSFAX.libcmfe_fax
       /Library/Printers/Canon/CUPSFAX/Manual/CanonFaxHelp.help
       - jp.co.canon.Fax.help
       /Library/Printers/Canon/CUPSFAX/PBMs/IOM_BackGrounder.plugin
       - jp.co.canon.CUPSFAX.IOM_BackGrounder
       /Library/Printers/Canon/CUPSFAX/PBMs/IOM_LPRv6.plugin
       - jp.co.canon.CUPSFAX.IOM_LPRv6
       /Library/Printers/Canon/CUPSFAX/PBMs/PBM_LPRv6.plugin
       - jp.co.canon.print.CUPSFAX.PBM_LPRv6
       /Library/Printers/Canon/CUPSFAX/PDEs/AboutPDE.plugin
       - jp.co.canon.CUPSFAX.PDEs.About
       /Library/Printers/Canon/CUPSFAX/PDEs/BasicSettingPDE.plugin
       - jp.co.canon.CUPSFAX.PDEs.GeneralSettings
       /Library/Printers/Canon/CUPSFAX/PDEs/CUPSFAXPDECommon.framework
       - jp.co.canon.CUPSFAX.CUPSFAXPDECommon
       /Library/Printers/Canon/CUPSFAX/PDEs/CoverSheetPDE.plugin
       - jp.co.canon.CUPSFAX.PDEs.CoverSheet
       /Library/Printers/Canon/CUPSFAX/PDEs/SpecialFeaturesPDE.plugin
       - jp.co.canon.CUPSFAX.PDEs.SpecialFeatures
       /Library/Printers/Canon/CUPSFAX/Utilities/Canon CUPS Faxmonitor.app
       - jp.co.canon.CUPS.Faxmonitor
       /Library/Printers/Canon/CUPS_MF_Printer/Bidi/Bidi.bundle
       - jp.co.canon.CUPSMFPrinter.Bidi.Bidi.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Bins/Bins.bundle
       - jp.co.canon.CUPSMFPrinter.Bins.Bins.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Bins/Bins2.bundle
       - jp.co.canon.CUPSMFPrinter.Bins.Bins2.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3F.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3F.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3G.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3G.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3H.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3H.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3I.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3I.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3J.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3J.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3K.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3K.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3L.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3L.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3M.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3M.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3N.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3N.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-3O.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-3O.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-70.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-70.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-71.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-71.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-72.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-72.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-73.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-73.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-74.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-74.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-80.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-80.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-81.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-81.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-82.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-82.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-83.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-83.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-84.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-84.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-85.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-85.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-86.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-86.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Icons/LO-87.bundle
       - jp.co.canon.CUPSMFPrinter.Icons.LO-87.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Libs/Libs.bundle
       - jp.co.canon.CUPSMFPrinter.Libs.Libs.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Libs/libMacFontEngine_cupsbdl.framework
       - jp.co.canon.CUPSMFPrinter.libMacFontEngine_cupsbdl
       /Library/Printers/Canon/CUPS_MF_Printer/Manual/CanonMFHelp.help
       - jp.co.canon.CUPSMFPrinter.help
       /Library/Printers/Canon/CUPS_MF_Printer/PDEs/AdvancedSettingsPDE.plugin
       - jp.co.canon.CUPSMFPrinter.PDEs.AdvancedSettings
       /Library/Printers/Canon/CUPS_MF_Printer/PDEs/BasicSettingsPDE.plugin
       - jp.co.canon.CUPSMFPrinter.PDEs.BasicSettings
       /Library/Printers/Canon/CUPS_MF_Printer/PDEs/CUPSBDLPDECommon.framework
       - jp.co.canon.CUPSMFPrinter.CUPSBDLPDECommon
       /Library/Printers/Canon/CUPS_MF_Printer/PDEs/PaperSourcePDE.plugin
       - jp.co.canon.CUPSMFPrinter.PDEs.PaperSource
       /Library/Printers/Canon/CUPS_MF_Printer/PDEs/SecuredPDE.plugin
       - jp.co.canon.CUPSMFPrinter.PDEs.Secured
       /Library/Printers/Canon/CUPS_MF_Printer/Profiles/CNL980.bundle
       - jp.co.canon.CUPSMFPrinter.Profiles.CNL980.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Profiles/CNLA80.bundle
       - jp.co.canon.CUPSMFPrinter.Profiles.CNLA80.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Profiles/CNLD80.bundle
       - jp.co.canon.CUPSMFPrinter.Profiles.CNLD80.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Profiles/CNLH80.bundle
       - jp.co.canon.CUPSMFPrinter.Profiles.CNLH80.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBD1300ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBD1300ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBD500ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBD500ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBD530ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBD530ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBIR1133ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBIR1133ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBL100ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBL100ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBL190ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBL190ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBL250ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBL250ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBL410ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBL410ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Recipe/CNPZBLC600ZB.bundle
       - jp.co.canon.CUPSMFPrinter.Recipe.CNPZBLC600ZB.bundle
       /Library/Printers/Canon/CUPS_MF_Printer/Reci

  • How to get the table/tree/list cell underneath the mouse

    I feel like I must be missing something. How can I find out the tree cell underneath the mouse cursor?
    I am implementing drag and drop from a table to a tree. I need to know which tree cell the user dropped the item on. I can get the drop coordinates (in pixels, I assume) from the drag event, but there doesn't seem to be a way to convert that into the particular cell index. This same question applies to getting the list and table cell under at particular coordinates.
    If there isn't an API for this, has anyone found a reliable workaround (dividing Y by cell height, etc.)
    Thanks,
    Josh

    You need to put event handlers for the D&D events on the Cells that are being created (so you will need to set a custom cell factory). For example, every cell is a Node, and these support properties like 'onDragDroppedProperty', and 'onDragExitedProperty'.
    When you add event handlers to these, you should be notified of items being dragged onto specific Cells of the Tree. A Cell then can be matched with a particular item in the Tree by reading its TreeItem property.
    Also read the documentation for TreeItem. There is a bit there that says:
    "It is important to note however that a TreeItem is not a Node, which means that only the event types defined in TreeItem will be delivered. To listen to general events (for example mouse interactions), it is necessary to add the necessary listeners to the cells contained within the TreeView (by providing a cell factory)."
    Which gives a clear hint at the end that for other interactions, you should add listeners to the Cells.
    Good luck!

  • I get the error in infoview??

    Hi all;
    When I go to the Infoview page and click on Document List or My Favorites i get the following error :
    An error has occurred: Index: 0, Size: 0
    How do I resolve this?

    same problem...
    i can login into CMC and see folders/reports etc..
    just infoview>document list causes this poblem

  • How can I get the coordinate in the layer coordinate system while doing the iterate?

    I found that the position(x,y) the iterate function tell me is not right sometimes.
    Actually,it happens when the top of the layer is negative. The "y"is in the comp coordinate system(maybe?) but not the layer.In another word, the position with y=0 is not the top.
    More specifically, I have got the color map of a layer. I am able to get the color of any pixel in the layer. But I can't set the color one for one when I use "iterate",because there is an offset.
    Am I supposed to get the offset? Is there any way to access the whole layer directly if I use iterate function?

    so indeed it's the offset at play.
    AE will diminish the buffer at 20% increments, and not for each pixel that
    goes out of sight. it's not really in relation to the upper left corner,
    it's all about what part of your layer buffer is out of sight.
    there's also an "iterate offset function". check it out. perhaps it will
    save you some trouble.
    On Fri, Dec 19, 2014 at 2:45 PM, Hinanawi Tenshi <[email protected]>

  • MIGO Exit  -- get the serial number

    Hello, everyone
    When push the Enter button or save button in MIGO,I'd like to get the serial number using exit.
    But I think that it is impossible to get the serial number in MIGO Exit.
    Because, they are not IMPORT Parameter which can get serial number.
    Anyone knows if we can get the serial number in MIGO Exit?
    Soma

    Hi,
    Even I have a similar requirement to get the value of serial number in runtime in MIGO tcode, I searched and dint find any FM or BAPI to fetch it. So I used the following code.
    *field-symbols declarations
        field-symbols: <it_goserial>       type STANDARD TABLE,
                       <wa_goserial>       type any,
                       <lv_searial_number> type any.
    *for retreiving the serial number
                ASSIGN ('(SAPLMIGO)OREF_DETAIL->T_GOSERIAL') TO <it_goserial>.
                if sy-subrc = 0.
    *Get the serial numbers entered
                  READ TABLE <it_goserial> INDEX 1 ASSIGNING <wa_goserial>.
                  if sy-subrc = 0.
    *serial number is the second component of the wa_goserial structure (cannot use the component name 'serialno' b/c the component is NOT defined in the Data Dictionary - it's defined in program LMIGOKE1)
                    ASSIGN COMPONENT 2 OF STRUCTURE <wa_goserial> TO <lv_searial_number>.
    endif.
    endif.
    <lv_searial_number> contains the derial number value at runtime.

Maybe you are looking for

  • How to run a java class from a shell script with passing arguments

    hi, I have a jar with all the required classes. I was using ant to run the classes i needed. But now i want to use a shell script to run the class, also the class accepts some arguments so when script is run it should accept arguments. So can any one

  • Saving metadata manually - saves to all files, not only touched

    Since "Automatically write XMP" didn't work properly before version 1.3, I'm still not using it in 1.3. Still a little scared. My idea is to once in a while select all pictures (or just right click the topmost folder in the folder view) and select "s

  • Bluetooth adapter with digital input

    I'm interested to purchase a bose solo tv speaker together with a bluetooth adapter so that i can play music from my laptop using the bose speakers. Do you have any bluetooth adapters that I can plug into the digital input of the bose speakers instea

  • Log files In R12

    Hello, I am working on R12.1.2 which log files shlud be deleted in instance becauze database and apps node size increazing day by day. Thanks, MAAN

  • Java Studio Creator debugger

    I set a break point in my lines of code and want to step through it, instead of wanting to see the processes behind something i.e. assigned a CachedRowSetDataProvider I wish to move onto the next line in my code, so I use the Step Over command, howev