Help with a label output. Probably something simple.

Don't worry about the rest of the code, my problem is that the label will not update after the btOption1 button is clicked.
Any suggestions?
// Create the event
    class ButtonListener implements ActionListener
        public void actionPerformed(ActionEvent e)
            if(e.getSource() == btOption1)
                // Declare variables
                int intTickets = 0;
                double dblSurcharge = 0;
                double dblTotal = 0;
                String strNum1 = lblFName1.toString();
                String strNum2 = lblFName2.toString();
                String strNum3 = lblFName3.toString();
                String strNum4 = lblFName4.toString();
                String strOutput = "";
                // Calculate the amount of tickets sold for the surcharge
                intTickets = Integer.parseInt(strNum1) + Integer.parseInt(strNum2) + Integer.parseInt(strNum3) + Integer.parseInt(strNum4);
                // Calculate the surcharge
                dblSurcharge = 5 * intTickets;
                // Calculate the total cost
                dblTotal = dblSurcharge + ((Integer.parseInt(strNum1) * 7.50) + (Integer.parseInt(strNum2) * 6.25) + (Integer.parseInt(strNum3) * 8.75) + (Integer.parseInt(strNum4) * 7.50));
                //  Convert the double to string
                strOutput = dblTotal.toString();
                // Display the total cost of the tickets
                lblOutput.setText("$" + dblTotal);
    }Edited by: Anonymous23 on Jun 7, 2010 3:05 PM

import javax.swing.*;
import java.awt.GridLayout;
import java.awt.event.*;
import java.awt.*;
public class FandangoTickets extends JFrame
    int intTickets = 0;
    int intSurcharge = 5;
    double dblTotal = 0;
    private JButton btOption1 = new JButton("Order");
    private JLabel lblImage = new JLabel(new ImageIcon("Images/Fandango.jpg"));
    private JTextField lblFName1 = new JTextField("0");
    private JTextField lblFName2 = new JTextField("0");
    private JTextField lblFName3 = new JTextField("0");
    private JTextField lblFName4 = new JTextField("0");
    private JLabel lblOutput = new JLabel("$0.00");
    public FandangoTickets()
        setLayout(new GridLayout (7,3,3,3));
        add(new JLabel("Matinee Tickets:"));
        add(new JLabel(""));
        add(new JLabel(""));
        add(new JLabel(""));
        add(new JLabel("Adult Ticket"));
        add(lblFName1);
        add(new JLabel(""));
        add(new JLabel("Child Ticket"));
        add(lblFName2);
        add(new JLabel("Evening Tickets:"));
        add(new JLabel(""));
        add(new JLabel(""));
        add(new JLabel(""));
        add(new JLabel("Adult Ticket"));
        add(lblFName3);
        add(new JLabel(""));
        add(new JLabel("Child Ticket"));
        add(lblFName4);
        add(lblImage);
        add(btOption1);
        add(lblOutput);
    class ButtonListener implements ActionListener
        public void actionPerformed(ActionEvent e)
            if(e.getSource() == btOption1)
                String strNum1 = lblFName1.toString();
                String strNum2 = lblFName2.toString();
                String strNum3 = lblFName3.toString();
                String strNum4 = lblFName4.toString();
                String strOutput = "";
                dblTotal = intSurcharge + ((Integer.parseInt(strNum1) * 7.50) + (Integer.parseInt(strNum2) * 6.25) + (Integer.parseInt(strNum3) * 8.75) + (Integer.parseInt(strNum4) * 7.50));
                strOutput = Double.toString(dblTotal);
                lblOutput.setText("$" + dblTotal);
    public static void main()
        FandangoTickets frame = new FandangoTickets();
        frame.setTitle("Fandango Tickets");
        frame.setSize(300,300);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
}

Similar Messages

  • I need help with printing labels.  please

    I need help with printing labels.  thanks in advance

    Welcome to Apple Support Communities.
    In Address Book, first select a name or group of names to print.
    Then File, Print, select Style, Mailing Labels, then Layout to select a specific target label (such as an Avery number), or define your own...

  • Help with Package Label Design

    Hi, I work for a one of the fortune 500 company as a helpdesk. Last month my company came out with a go green logo and when I saw I decide to create one. I showed the logo to my Director and my director forwarded the design to the Marketing department. They really like the design, but they couldn't use it because they already pay a design company for that logo and the logo were already print on the market. What happen next, is that they send me an email Yesterday asking me if I'm interest in getting an interview for a packaging designer job and the interview is going to be for next month. Now, I have no experience with packaging, label and printing and they know that, but I will like to surprise the with couple of design. I would like to know what software do I need to use from design to printing and if there is any good website with good tutorials. Thanks

    They probably liked your style ( on the green logo ) and want to incorporate it into their packaging.  You should be honest and tell them you do not have any experience.  They'll probably bring you in at "entry level" so they can groom you to their corporate culture.  You'll probably be working under a senior designer and will probably spend a few months learning how things are done.  I'd imagine you'll need some basic knowledge of Illustrator and Photoshop, if not some intermediate level capabilities with both programs.
    Now, if you want to impress them, find a current package the company had produced in the last few years.  Pull it apart and get it to lie flat.  Re-create the entire piece using Illustrator.  This will include a spot layer with dies.  Focus on improving the design and look of the piece, but make sure you do not copy what has already been done.  Come up with something original and incorporate your version of the "green" logo.  It does not have to be anything out-of-sight, but shows you know the company, you know how to improve the existing packaging out there, and you'll show initiate.  They'll probably never use it ( like your "green" logo, but will get you the job ).
    This will take you some time.  I do not know of any web tutorials, but both Illustrator and Photoshop come with a few.  You could also go to a local bookstore and take alook at what they have in their "graphic design" section.  Some books come with a CD that has some templates and files you can take a look at.
    There must be a void they're looking to fill, otherwise you'd never get the interview.  Don't get too stressed out trying to impress them.  They're already impressed.  But, if you "claim" to know it all in software, you'll be doing yourself a huge injustice.  Talent does not come in a box.  Sounds like they're willing to get you started, so go for it.

  • Help with Logo and Banner  (probably a really simple task)

    This is most likely a very simple task...
    I am new to DW -- I was asked to learn it by my employer.
    Here's what I have done...
    Created a container DIV
    within container:
    banner DIV
    navigation DIV
    left column DIV
    Right Column DIV
    Footer
    An after thought was how I want to format the banner.  I want to divide the banner div into a left and right column.  Left side is the logo.  Right side is the text.
    Can someone lend me a hand or even offer a better solution?

    Within the banner container div either float the logo left or the content right.  No need to do both.
    http://www.w3schools.com/css/css_float.asp
    This is all depending on the amount of text and where you need it.  If you have a fixed size container and need things in a specific position, you could forget the float and absolutely position the elements within the parent (banner) container.
    http://www.w3schools.com/css/css_positioning.asp
    A word of advice though.  Pick up Fireworks, Photoshop, Illustrator or similar graphics editing program first and draw up a prototype of the design before you start coding things.  Make sure this is 100% (or at least 75%) sure what they want before you spend the time coding something.  You can ignore this comment if you already have completed this step, but I just thought I would throw it out there anyways.

  • Help with formatting multiline output into comma delimited ordered output

    I have 2 tables:
    SQL> desc table_1;
    Name Null? Type
    ===================================
    ID NOT NULL NUMBER
    DATA1 NOT NULL VARCHAR2(440)
    DATA2 NOT NULL VARCHAR2(1024)
    SQL> desc table_2;
    Name Null? Type
    ===================================
    ID NOT NULL NUMBER
    ATTNAME NOT NULL VARCHAR2(255)
    ATTVAL                          VARCHAR2 (4000)
    DATA1 NOT NULL CHAR(1)
    DATA2                          VARCHAR2 (2000)
    DATA3                          VARCHAR2 (255)
    I need to get ATTVAL from where e.g. ATTNAME=att_name1 to ATTNAME=att_name6 from every entry (with its unique ID), and format the output into comma delimited format in e.g. this order:
    att_val1,att_val3,att_val6,att_val4,att_val5,att_val6
    So e.g. for entry with ID "9812" from the query below, the output I need would be:
    187,179,156,134,1436,1809
    What I've got so far is as follows:
    SQL> SELECT id,attname,attval FROM table_2 WHERE id in (SELECT id from table_1 WHERE data2='xxx')
    AND attname in ('att_name1','att_name3','att_name6','att_name4','att_name5','att_name6');
    ID               ATTNAME               ATTVAL
    ===============================
    1970 att_name1 123
    1970 att_name2 abc
    1970 att_name3 1234
    1970 att_name4 def
    1970 att_name5 1134
    1970 att_name6 ghj
    9812 att_name4 134
    9812 att_name5 1436
    9812 att_name3 156
    9812 att_name1 187
    9812 att_name2 179
    9812 att_name6 1809
    77 att_name1 1980
    77 att_name5 1867
    77 att_name3 174
    77 att_name4 1345
    77 att_name2 1345
    77 att_name6 1345
    but I don't know how to format the output comma limited in certain order. (or if this is the best way of getting the data out)
    Would someone have idea how this could be done?

    846954 wrote:
    Thanks Frank!
    I got much further now :).
    I've got Oracle 10g So I used the "SYS_CONNECT_BY_PATH" for my query.
    Now I get the output in the format I want, however, it comes out in the order that the attributes are (which is pretty random).The values you posted are in order: 'attval1' < 'attval2' < ...
    So I'm using this now(had to use "|" as separator because SYS_CONNECT_BY_PATH would not work with comma due to some of the attval having comma in them ):The values you posted don't contain and commas.
    You're hiding what the problem is. It would really help if you posted actual data. It always helps if you post CREATE TABLE and INSERT statements for a little sample data, and the results you want from that data.
    Assuming you really have something that has to be in a certain order, and that order is not based on anything in the values themselves, then DECODE might be a good way to do it. Storing the sort value in a table might be even better.
    It looks like you were using an Oracle 9 exanple. In Oracle 10, using SYS_CONNECT_BY_PATH is simpler:
    SELECT     id
    ,     LTRIM ( SYS_CONNECT_BY_PATH (attval, '|')
               , '|'
               )          AS attvals
    FROM     (
              SELECT     id
              ,     attval
              ,     ROW_NUMBER () OVER ( PARTITION BY  id
                                  ORDER BY          DECODE (...)
                                )     AS curr
              WHERE     id     IN (
                             SELECT  id
                             FROM     table_1
                             WHERE     data2     = 'xxx'
              AND     attname     IN ('attname1','attname2','attname3','attname4','attname5','attname6')
    WHERE     CONNECT_BY_ISLEAF     = 1
    START WITH     curr     = 1
    CONNECT BY     curr     = PRIOR curr + 1
         AND     id     = PRIOR id
    ;You don't need two almost-identical ROW_NUMBERs; one will do just fine.

  • Won't display images - Its probably something simple!

    Hey ,
    Ive been trying for ages, looked throught the tutorials (i have even tried just using java pasted from the site for one of the simple programs) and looking through old forum questions but can't find out why my GUI wont display images. It compiles fine but then when i run the program ... no pics!
    I suspect its something to do with the directory, i have tired:
    - putting the images in the same directory as the java classes,
    - putting in the entire image location paths (for this i get illegal characters error because it has '\' in the path but i get round this using '\\' ) but still no joy.
    Like i said am just using the example programme from the site so i know its correct, Any ideas??
    Thanx
    Lisa

    Here is a simple program to test:
    JFrame frame = new JFrame();
    JLabel label = new JLabel("image.jpg");
    frame.getContenPane()..add( label );
    frame.pack();
    frame.setVisible(true);a) Place "image.jpg" is the same directory as the source and class files.
    b) Don't use any package names for you class.
    c) Compile using javac, not through and ide or anything.
    d) Make sure your classpath includes ".", so it will search the current directory.

  • Need help with the text output here... kinda a newbie..

    Alright the problem I am having is with the output of this program. It does not appear to calculate the mortgage formula correctly and outputs some other data that does not make any sense. here is the code. Any help on this matter would be great!!
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    public class Calculator extends JFrame implements ActionListener {
    private JPanel panelAdder;
    private JLabel labela;
    private JLabel labelt;
    private JLabel labelr;
    private JTextField textFieldAmount;
    private JTextField textFieldTerm;
    private JTextField textFieldRate;
    private JTextField textFieldResult;
    private JButton buttonCalc;
    public Calculator() {
      initComponents();
      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      setVisible(true);
      pack();
      // Add Listeners
      buttonCalc.addActionListener(this);
    public void initComponents() {
    //Initialize Components
    panelAdder = new JPanel();
    labela = new JLabel("Amount");
    textFieldAmount = new JTextField();
    labelt = new JLabel("Term");
    textFieldTerm = new JTextField();
    labelr = new JLabel("Rate");
    textFieldRate = new JTextField();
    textFieldResult = new JTextField();
    buttonCalc = new JButton("Calculate");
    //Set Object Attributes
    textFieldResult.setEditable(false);
    textFieldResult.setColumns(8);
    textFieldAmount.setColumns(6);
    textFieldTerm.setColumns(2);
    textFieldRate.setColumns(2);
    Container contentPane = getContentPane();
    contentPane.setLayout(new FlowLayout());
    //Lets add the components to the panel
    panelAdder.add(labela);
    panelAdder.add(textFieldAmount);
    panelAdder.add(labelt);
    panelAdder.add(textFieldTerm);
    panelAdder.add(labelr);
    panelAdder.add(textFieldRate);
    panelAdder.add(buttonCalc);
    panelAdder.add(textFieldResult);
    contentPane.add(panelAdder);
    public static void main(String[] args) {
      Calculator frame = new Calculator();
    private void setResultValue() {
       double amount = Double.parseDouble(textFieldAmount.getText());
       double term = Integer.parseInt(textFieldTerm.getText());
       double rate = Double.parseDouble(textFieldRate.getText()) / 100.;
       //double result = amount * ( rate * Math.pow ( ( 1 + rate ), term ) ) / ( Math.pow( ( 1 + rate ), term ) - 1 );
       double result = (amount*((rate/12)/(1-Math.pow((1+(rate/12)),-(term*12)))));
       textFieldResult.setText(Double.toString(result));
    public void actionPerformed(ActionEvent event) {
      System.out.println("Action Button");
      String command = event.getActionCommand();
      if (command == "Calculate") {
          setResultValue();
    }

    Alright the problem I am having is with the output of
    this program. It does not appear to calculate the
    mortgage formula correctly and outputs some other
    data that does not make any sense. here is the code.
    Any help on this matter would be great!!First of all, what is the mortgage formula?

  • I need help with repaint() and validate() or something else im not aware of

    Im a teacher and im trying to make educational games for my students. This is a simplified code of something i want the applet to do. When the JButton is pressed i want the interior panels to change. In this case JPanel pan3 is my main panel and i want to be able to switch between JPanel pan1 and JPanel pan2 by pressing either [ JButton 1 ] or [ JButton 2 ].
    What is happening in my code here when i press one of the buttons is that the interior panel will change the first time but not the second time, plus it will freeze up.
    Here is the code if someone can help me.
    import java.awt.*;
    import javax.swing.*;
    public class PanelApplet extends JApplet
         public void init()
              Panelswitch ps=new Panelswitch();
              ps.pan3.add(ps);
              ps.paneBuilder();
              getContentPane().add(ps.pan3);
              resize(500,500);
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class Panelswitch extends JPanel implements ActionListener
         public static Panelswitch pan1=new Panelswitch();
         public static Panelswitch pan2=new Panelswitch();
         public JPanel pan3;
         public Panelswitch()
              pan3=new JPanel();
              pan3.setLayout(new GridLayout(1,1,5,5));
         public static final String ONE="ONE";
         public static final String TWO="TWO";
         JButton one=new JButton("one");
         JButton two=new JButton("two");
         JLabel oneLabel=new JLabel("One Label");
         JLabel twoLabel=new JLabel("Two Label");
         public void paneBuilder()
              setLayout(new GridLayout(3,1,5,5));
              add(one);
              one.setActionCommand(ONE);
              one.addActionListener(this);
              add(two);
              add(oneLabel);
              two.setActionCommand(TWO);
              two.addActionListener(this);
         public void paneBuilder2()
              setLayout(new GridLayout(1,3,5,5));
              add(twoLabel);
              add(one);
              one.setActionCommand(ONE);
              one.addActionListener(this);
              add(two);
              two.setActionCommand(TWO);
              two.addActionListener(this);
         public void actionPerformed(ActionEvent e)
              // Im trying to make this take down panel 2 and replace it with panel 1
              if(e.getActionCommand().equals(ONE))
                   pan2.setVisible(false);
                   pan3.removeAll();
                   pan3.setLayout(new GridLayout(1,1,5,5));
                   pan1.paneBuilder();
                   pan1.setVisible(true);
                   pan3.add(pan1);
                   pan3.validate();
                   pan3.repaint();
                   System.out.println("one");
              // Im trying to make this take down panel 1 and replace it with panel 2
              if(e.getActionCommand().equals(TWO))
                   pan1.setVisible(false);
                   pan3.removeAll();
                   pan3.setLayout(new GridLayout(1,1,5,5));
                   pan2.paneBuilder2();
                   pan2.setVisible(true);
                   pan3.add(pan2);
                   pan3.validate();
                   pan3.repaint();
                   System.out.println("two");
    Thanks for looking

    Here's some sample code:
    import javax.swing.JPanel;
    import javax.swing.JLabel;
    import javax.swing.JFrame;
    import javax.swing.JButton;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    public class SwapFrame extends JFrame implements ActionListener {
      private JPanel firstPanel = new JPanel ();
      private JPanel secondPanel = new JPanel ();
      private JPanel buttonPanel = new JPanel ();
      private JButton addFirstJButton = new JButton("Foo");
      private JButton addSecondJButton = new JButton("Bar!");
      private Container frameContainer = null;
      public SwapFrame() {  // With JApplet, put this in your 'init()' method.
        // Frame specific.
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setSize(new Dimension (400, 400));
        firstPanel.setLayout(new BorderLayout());
        firstPanel.add(new JButton ("Foo"), BorderLayout.CENTER);
        secondPanel.setLayout(new BorderLayout());
        secondPanel.add(new JButton ("Bar!"), BorderLayout.CENTER);
        buttonPanel.setLayout(new GridLayout(1, 2));
        buttonPanel.add(addFirstJButton);
        buttonPanel.add(addSecondJButton);
        addFirstJButton.addActionListener(this);
        addFirstJButton.setPreferredSize(new Dimension (100, 48));
        addSecondJButton.addActionListener(this);
        addSecondJButton.setPreferredSize(new Dimension (100, 48));
        frameContainer = getContentPane();
        frameContainer.setLayout(new BorderLayout());
        frameContainer.add(firstPanel, BorderLayout.CENTER);
        frameContainer.add(buttonPanel, BorderLayout.SOUTH);
        // Show application.
        this.validate();
        this.setVisible(true);
      public void actionPerformed (ActionEvent e) {
        if (e.getSource() instanceof JButton && ((JButton)e.getSource()) == addFirstJButton) {
          frameContainer.remove(secondPanel);
          frameContainer.add(firstPanel, BorderLayout.CENTER);
          this.validate();
          this.repaint();
        } else {  // There can only be two buttons...
          frameContainer.remove(firstPanel);
          frameContainer.add(secondPanel, BorderLayout.CENTER);
          this.validate();
          this.repaint();
      public static void main (String []args) {
        new SwapFrame();
    }Regards,
    Devyn

  • Help with a re-install or something!

    Upgraded mac around a month and a half ago and system has been absolutely dire ever since. Takes several minutes to boot (used to take no more than 10 seconds - was brand new in Nov 2014). PowerPoint, Word, Excel all cause it crash at least 5 times a day (I'm a teacher and cannot simply stop using these or switch to pages etc.). Safari crashes regularly, USB drives won't eject themselves... I use laptop approximately 2-3 hours a day and it crashes at least 4 times a day.
    I can only assume these problems are associated with Yosemite update as it wasn't nearly this bad before. I have read people talking about a "clean install" etc. can anyone help talk me through how to do this? I haven't a clue but can't keep using the laptop without throwing it out a window!!!!
    Thanks!

    Hope this helps - I don't really understand any of it!
    Start time: 14:13:32 01/31/15
    Revision: 1184
    Model Identifier: MacBookPro11,1
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 5 days 18:28
    FileVault: On
    Swap (MiB): 4095
    Activity
       CPU: user 7%, system 16%
       Net: 2668 in, 63 out (KiB/s)
    I/O per process: nsurlsessiond (UID 242) 1 MB/s
    System errors: nsurlsessiond (UID 242) 1004.4 per second
    Forks
       kernel_task -> launchd (UID 0) x2
    Diagnostic reports
       2015-01-02 discoveryd crash
       2015-01-04 mdworker crash x12
       2015-01-05 mdworker crash x5
       2015-01-14 discoveryd crash
       2015-01-15 cloudd crash
       2015-01-17 Safari crash
       2015-01-23 discoveryd crash
       2015-01-25 Safari hang x2
       2015-01-25 discoveryd crash
    Log
       Jan 29 22:44:18 memorystatus_thread: idle exiting pid 2534 [networkd_privile]
       Jan 29 22:44:19 memorystatus_thread: idle exiting pid 2545 [CoreServicesUIAg]
       Jan 29 22:44:20 memorystatus_thread: idle exiting pid 2517 [lsuseractivityd]
       Jan 29 22:44:21 memorystatus_thread: idle exiting pid 2513 [secinitd]
       Jan 29 22:44:22 memorystatus_thread: idle exiting pid 2514 [tccd]
       Jan 29 22:44:23 memorystatus_thread: idle exiting pid 2544 [com.apple.intern]
       Jan 29 22:44:24 memorystatus_thread: idle exiting pid 2582 [nsurlstoraged]
       Jan 29 22:44:25 memorystatus_thread: idle exiting pid 2584 [DataDetectorsDyn]
       Jan 29 22:44:26 memorystatus_thread: idle exiting pid 2583 [soagent]
       Jan 29 22:44:27 memorystatus_thread: idle exiting pid 2516 [coreduetd]
       Jan 29 22:44:28 memorystatus_thread: idle exiting pid 2585 [tccd]
       Jan 29 22:44:29 memorystatus_thread: idle exiting pid 2509 [cfprefsd]
       Jan 29 22:44:30 memorystatus_thread: idle exiting pid 2586 [systemstatsd]
       Jan 29 22:44:31 memorystatus_thread: idle exiting pid 2587 [lsuseractivityd]
       Jan 29 22:44:32 memorystatus_thread: idle exiting pid 2508 [cfprefsd]
       Jan 31 11:46:14 disk logger: failed to open output file /Volumes/KINGSTON/.fseventsd/00000000001d2d43 (No such file or directory). mount point /Volumes/KINGSTON/.fseventsd
       Jan 31 11:46:14 disk logger: failed to open output file /Volumes/KINGSTON/.fseventsd/00000000001d2d43 (No such file or directory). mount point /Volumes/KINGSTON/.fseventsd
       Jan 31 11:46:14 failed to unlink old log file /Volumes/KINGSTON/.fseventsd/00000000001d2d43 (No such file or directory)
       Jan 31 11:46:14 failed to unlink old log file /Volumes/KINGSTON/.fseventsd/00000000001d2d43 (No such file or directory)
       Jan 31 11:46:14 unmounting: failed to remove log dir /Volumes/KINGSTON/.fseventsd (No such file or directory)
       Jan 31 12:34:18 check_vol_last_mod_time:XXX failed to get mount time (25; &mount_time == 0x10cfcf498)
       Jan 31 14:10:06 memorystatus_thread: idle exiting pid 2596 [DataDetectorsDyn]
       Jan 31 14:10:06 memorystatus_thread: idle exiting pid 2670 [CMFSyncAgent]
       Jan 31 14:10:06 memorystatus_thread: idle exiting pid 2683 [ContainerMetadat]
       Jan 31 14:10:06 memorystatus_thread: idle exiting pid 2688 [com.apple.toneli]
    Loaded kernel extensions
       com.avg.Antivirus.OnAccess.kext (2015.0)
    Daemons
       com.adobe.fpsaud
       com.apple.installer.osmessagetracing
       com.apple.security.syspolicy
       - status: -15
       com.avg.Antivirus.infosd
       - status: 1
       com.avg.Antivirus
       com.dymo.pnpd
       com.microsoft.office.licensing.helper
    Agents
       com.adobe.ARM.UUID
       com.apple.AirPortBaseStationAgent
       com.apple.helpd
       - status: -15
       com.apple.photostream-agent
       com.avg.Antivirus
       com.epson.Epson_Low_Ink_Reminder.launcher
       com.epson.esua.launcher
       com.epson.eventmanager.agent
       com.paragon.updater
       com.spotify.webhelper
    User login items
       BetterTouchTool
       - /Applications/BetterTouchTool.app
       Dropbox
       - /Applications/Dropbox.app
    iCloud errors
       Finder: 1
       bird: 69
       cloudd: 106
    Restricted files: 202
    Contents of /Library/LaunchAgents/com.avg.Antivirus.gui.plist
       - mod date: Aug 14 14:37:43 2014
       - checksum: 1737179676
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.avg.Antivirus</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/AVG AntiVirus.app/Contents/MacOS/AVG AntiVirus</string>
        <string>-AVGStandaloneInstanceAllowed</string>
        <string>YES</string>
        </array>
        <key>EnvironmentVariables</key>
        <dict>
        <key>AVGINSTDIR</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/</string>
        <key>AVGPRODUCTID</key>
        <string>com.avg.Antivirus</string>
        <key>DYLD_LIBRARY_PATH</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/lib</string>
        </dict>
        <key>KeepAlive</key>
        <true/>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
       ...and 6 more line(s)
    Contents of /Library/LaunchAgents/com.epson.Epson_Low_Ink_Reminder.launcher.plist
       - mod date: Sep 16 16:00:00 2014
       - checksum: 891421492
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Epson Software/Epson Low Ink Reminder.app/Contents/EpsonLowInkReminderAgent.app/Contents/MacOS/EpsonLowInkRe minderAgent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.epson.Epson_Low_Ink_Reminder.launcher</string>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.epson.esua.launcher.plist
       - mod date: Oct  6 16:00:00 2014
       - checksum: 1726226152
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>StartInterval</key>
        <integer>3600</integer>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Epson Software/EPSON Software Updater.app/Contents/EPSON Software Updater Agent.app/Contents/MacOS/EPSON Software Updater Agent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.epson.esua.launcher</string>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.epson.eventmanager.agent.plist
       - mod date: Sep 21 16:00:00 2014
       - checksum: 1862971771
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.epson.eventmanager.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app/Contents/MacOS/EEventManager</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.paragon.updater.plist
       - mod date: Mar 26 15:46:34 2014
       - checksum: 962844124
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>StartInterval</key>
        <integer>86400</integer>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Paragon Updater/Paragon Updater.app/Contents/MacOS/Paragon Updater</string>
        <string>--check</string>
        <string>--delay=30</string>
        </array>
        <key>Label</key>
        <string>com.paragon.updater</string>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.avg.Antivirus.infosd.plist
       - mod date: Aug 14 14:37:43 2014
       - checksum: 2229474660
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.avg.Antivirus.infosd</string>
        <key>Program</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Daemons/infosd</string>
        <key>EnvironmentVariables</key>
        <dict>
        <key>AVGINSTDIR</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/</string>
        <key>AVGPRODUCTID</key>
        <string>com.avg.Antivirus</string>
        <key>DYLD_LIBRARY_PATH</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/lib</string>
        </dict>
        <key>KeepAlive</key>
        <true/>
        <key>MachServices</key>
        <dict>
        <key>com.avg.Antivirus.infosd</key>
        <true/>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchDaemons/com.avg.Antivirus.services.plist
       - mod date: Aug 14 14:37:43 2014
       - checksum: 1676278726
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>AVGINSTDIR</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/</string>
        <key>AVGPRODUCTID</key>
        <string>com.avg.Antivirus</string>
        <key>DYLD_LIBRARY_PATH</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/lib</string>
        </dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.avg.Antivirus</string>
        <key>Program</key>
        <string>/Applications/AVG AntiVirus.app/Contents/Backend/bin/avgd.sh</string>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
       - mod date: Mar 26 07:00:00 2014
       - checksum: 998894468
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>MachServices</key>
        <dict>
        <key>com.microsoft.office.licensing.helper.port</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.microsoft.office.licensing.helper</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.microsoft.office.licensing.helper</s tring>
        </array>
        <key>ServiceIPC</key>
        <true/>
       </dict>
       </plist>
    Contents of /etc/sysctl.conf
       - mod date: Aug 14 14:37:43 2014
       - checksum: 748606111
       kern.sysv.shmall=65536
       kern.sysv.shmmax=268435456
       kern.sysv.shmmni=64
       kern.sysv.shmseg=32
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
       - mod date: Aug 12 11:00:10 2014
       - checksum: 394026997
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.spotify.webhelper.plist
       - mod date: Jan 29 22:53:55 2015
       - checksum: 210343194
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.spotify.webhelper</string>
        <key>KeepAlive</key>
        <dict>
         <key>NetworkState</key>
         <true/>
        </dict>
        <key>RunAtLoad</key>
        <true/>
        <key>Program</key>
        <string>/Users/USER/Library/Application Support/Spotify/SpotifyWebHelper</string>
        <key>SpotifyPath</key>
        <string>/Applications/Spotify.app</string></dict>
       </plist>
    Bad plists
       /Library/Preferences/com.epson.Easy Photo Print.UnInstallList.plist
       /Library/Preferences/com.epson.Epson Event Manager.UnInstallList.plist
       /Library/Preferences/com.epson.Epson Low Ink Reminder.UnInstallList.plist
       /Library/Preferences/com.epson.EPSON Scan.UnInstallList.plist
       /Library/Preferences/com.epson.Epson Scanner ICA Driver.UnInstallList.plist
       /Library/Preferences/com.epson.EPSON Software Updater.UnInstallList.plist
       /Library/Preferences/com.epson.Inkjet Printer Driver.UnInstallList.plist
    Extensions
       /Library/Extensions/EPSONUSBPrintClass.kext
       - com.epson.print.kext.USBPrintClass
       /System/Library/Extensions/DymoUsbPrinterClassDriver.kext
       - com.dymo.usbprinterclassdriver.kext
       /System/Library/Extensions/EPSONUSBPrintClass.kext
       - com.epson.print.kext.USBPrintClass
       /System/Library/Extensions/JMicronATA.kext
       - com.jmicron.JMicronATA
    Applications
       /Applications/AVG AntiVirus.app
       - com.avg.Antivirus
       /Applications/Adobe Photoshop Lightroom 5.app
       - com.adobe.Lightroom5
       /Applications/Adobe Reader.app
       - com.adobe.Reader
       /Applications/BetterTouchTool.app
       - com.hegenberg.BetterTouchTool
       /Applications/DYMO Label.app
       - com.dymo.dls
       /Applications/Dropbox.app
       - com.getdropbox.dropbox
       /Applications/Epson Software/EPSON Manuals.app
       - com.epson.EPSON-Manuals
       /Applications/Epson Software/EPSON Scan Settings.app
       - com.epson.scan.settingutility
       /Applications/Epson Software/EPSON Scan.app
       - com.epson.scan.standalone
       /Applications/Epson Software/EPSON Software Updater.app
       - com.epson.EPSON_Software_Updater
       /Applications/Epson Software/Easy Photo Print.app
       - com.EPSON.EasyPhotoPrint
       /Applications/Epson Software/Easy Photo Print/QuickPrint/QuickPrintA.app
       - com.epson.QuickPrintA
       /Applications/Epson Software/Easy Photo Print/QuickPrint/QuickPrintB.app
       - com.epson.QuickPrintB
       /Applications/Epson Software/Epson Firmware Updater/XP-322 323 325 Series/Epson Firmware Updater.app
       - com.epson.firmwareupdater
       /Applications/Epson Software/Epson Low Ink Reminder.app
       - com.epson.Epson_Low_Ink_Reminder
       /Applications/Epson Software/Event Manager.app
       - com.epson.ProjectManager
       /Applications/Epson Software/Uninstaller.app
       - com.epson.Uninstaller
       /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
       - com.microsoft.languageregister
       /Applications/Microsoft Office 2011/Microsoft Document Connection.app
       - com.microsoft.DocumentConnection
       /Applications/Microsoft Office 2011/Microsoft Excel.app
       - com.microsoft.Excel
       /Applications/Microsoft Office 2011/Microsoft Outlook.app
       - com.microsoft.Outlook
       /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
       - com.microsoft.Powerpoint
       /Applications/Microsoft Office 2011/Microsoft Word.app
       - com.microsoft.Word
       /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
       - com.microsoft.ASApplication
       /Applications/Microsoft Office 2011/Office/Equation Editor.app
       - com.microsoft.EquationEditor
       /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
       - com.microsoft.alerts.daemon
       /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
       - com.microsoft.openxml.chart.app
       /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
       - com.microsoft.ClipGallery
       /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
       - com.microsoft.outlook.databasedaemon
       /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
       - com.microsoft.outlook.databaseutility
       /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
       - com.microsoft.Graph
       /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
       - com.microsoft.outlook.officereminders
       /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app
       - com.microsoft.office.setupassistant
       /Applications/Microsoft Office 2011/Office/Microsoft Query.app
       - com.microsoft.Query
       /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
       - com.microsoft.office.uploadcenter
       /Applications/Microsoft Office 2011/Office/My Day.app
       - com.microsoft.myday
       /Applications/Microsoft Office 2011/Office/Office365Service.app
       - com.microsoft.Office365Service
       /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
       - com.microsoft.openxml.excel.app
       /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
       - com.microsoft.SyncServicesAgent
       /Applications/OpenEmu-2.app
       - org.openemu.OpenEmu
       /Applications/Paintbrush.app
       - com.soggywaffles.Paintbrush
       /Applications/Photomatix Pro 5.app
       - com.hdrsoft.photomatixpro
       /Applications/Skype.app
       - com.skype.skype
       /Applications/Spotify.app
       - com.spotify.client
       /Applications/Utilities/Adobe Flash Player Install Manager.app
       - com.adobe.flashplayer.installmanager
       /Applications/VLC.app
       - org.videolan.vlc
       /Applications/uTorrent.app
       - com.bittorrent.uTorrent
       /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/Silverlight/OutOfBrowser/SLLauncher.app
       - com.microsoft.silverlight.sllauncher
       /Library/Application Support/Paragon Updater/Paragon Updater.app
       - paragon.Paragon-Updater
       /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
       - com.apple.ScriptEditor.id.cocoa-applet-template
       /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
       - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
       /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
       - com.apple.ScriptEditor.id.file-processing-droplet-template
       /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
       - com.apple.ScriptEditor.id.image-file-processing-droplet-template
       /Library/Frameworks/DYMO/DLS8/Addins/DYMO Excel Add-in.app
       - com.dymo.dls.addin.excel
       /Library/Frameworks/DYMO/DLS8/Addins/DYMO Word Add-in.app
       - com.dymo.dls.addin.word
       /Library/Image Capture/Devices/Canon IJScanner2.app
       - jp.co.canon.ijscanner2.scanner.ica
       /Library/Image Capture/Devices/Canon IJScanner4.app
       - jp.co.canon.ij.ica.scanner4
       /Library/Image Capture/Devices/EPSON Scanner.app
       - com.epson.scanner.ica
       /Library/Printers/EPSON/InkjetPrinter2/AutoSetupTool/EPIJAutoSetupTool2.app
       - com.epson.ijprinter.EPIJAutoSetupTool2
       /Library/Printers/EPSON/InkjetPrinter2/AutoSetupTool/EPRemoteAutoSetupTool.app
       - com.epson.ijprinter.EPRemoteAutoSetupTool
       /Library/Printers/EPSON/InkjetPrinter2/Backend/epsonremote.app
       - com.epson.ijprinter.app.epsonremote
       /Library/Printers/EPSON/InkjetPrinter2/Filter/commandtoescp.app
       - com.epson.ijprinter.commandtoescp
       /Library/Printers/EPSON/InkjetPrinter2/Filter/eprastertopng.app
       - com.epson.ijprinter.eprastertopng
       /Library/Printers/EPSON/InkjetPrinter2/Filter/pdftopdf2.app
       - com.epson.ijprinter.pdftopdf2
       /Library/Printers/EPSON/InkjetPrinter2/Filter/rastertoescpII.app
       - com.epson.ijprinter.rastertoescpII
       /Library/Printers/EPSON/InkjetPrinter2/Utility/RemotePrint/Epson Remote Print Utility.app
       - com.epson.ijprinter.RemotePrintUtility
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Epson Printer Utility 4.app
       - com.epson.ijprinter.EpsonPrinterUtility4
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UTL/Epson Printer Utility Lite.app
       - com.epson.ijprinter.EpsonPrinterUtilityLite
       /Library/Printers/hp/Fax/fax.backend
       - com.hp.fax
       /Library/Printers/hp/Fax/rastertofax.filter
       - com.hp.rastertofax
       /Library/Printers/hp/Utilities/HP Utility.app
       - com.hp.printerutility
       /Library/Printers/hp/Utilities/HP Utility.app/Contents/Applications/HP Event Status.app
       - com.hp.event.status.handler.generic
       /Library/Printers/hp/Utilities/HP Utility.app/Contents/Applications/LegacyScanEventHandler.app
       - com.hp.scan.button.handler.legacy
       /Library/Printers/hp/Utilities/HP Utility.app/Contents/Library/LoginItems/HP Device Monitor.app
       - com.hp.devicemonitor
       /Library/Printers/hp/Utilities/HP Utility.app/Contents/Library/LoginItems/HP Device Monitor.app/Contents/Library/LoginItems/HP Device Monitor.app
       - com.hp.devicemonitor
       /Library/Printers/hp/cups/filters/pdftopdf.filter
       - com.hp.print.cups.filter.pdftopdf
    Frameworks
       /Library/Frameworks/EpsonInformationService.framework
       - com.epson.EpsonInformationService
    PrefPane
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
    Bundles
       /Library/Address Book Plug-Ins/DYMO Address Book Addin.bundle
       - com.dymo.dls.addressbook.plugin
       /Library/Application Support/DYMO Label Software/Widget/DYMO.wdgt
       - com.dymo.widget.dls
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/DYMO NPAPI Addin.plugin
       - com.dymo.dls.npapi.plugin
       /Library/Internet Plug-Ins/DYMO Safari Addin.plugin
       - com.dymo.dls.safari.plugin
       /Library/Internet Plug-Ins/Flash Player.plugin
       - com.macromedia.Flash
       /Library/Internet Plug-Ins/NP_2020Player_IKEA.plugin
       - com.2020technologies.2020Player-IKEA.NP
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/Printers/Canon/IJScanner/Plugins/ag07_09.plugin
       - jp.co.canon.scangear.ag07.09
       /Library/Printers/Canon/IJScanner/Plugins/ag08_09.plugin
       - jp.co.canon.scangear.ag08.09
       /Library/Printers/Canon/IJScanner/Plugins/cijsdl_bjnp.plugin
       - jp.co.canon.ij.scangear.cijsdl.bjnp
       /Library/Printers/Canon/IJScanner/Plugins/cijsdl_iom.plugin
       - jp.co.canon.ij.scangear.cijsdl.iom
       /Library/Printers/Canon/IJScanner/Plugins/cijsdl_lld.plugin
       - jp.co.canon.ij.scangear.cijsdl.lld
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_ag.plugin
       - jp.co.canon.ij.scangear.cijsds.ag
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_ijfsh.plugin
       - jp.co.canon.ij.scangear.cijsds.ijfsh
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_mldv0.plugin
       - jp.co.canon.ij.scangear.cijsds.mldv0
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_os106.plugin
       - jp.co.canon.ij.scangear.cijsds.os106
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_racs2.plugin
       - jp.co.canon.ij.scangear.cijsds.racs2
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_rotate.plugin
       - jp.co.canon.ij.scangear.cijsds.rotate
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_smac.plugin
       - jp.co.canon.ij.scangear.cijsds.smac
       /Library/Printers/Canon/IJScanner/Plugins/cijsds_zoom.plugin
       - jp.co.canon.ij.scangear.cijsds.zoom
       /Library/Printers/Canon/IJScanner/Plugins/cncl09_09.plugin
       - jp.co.canon.scangear.lld09.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq2413_09.plugin
       - jp.co.canon.scanner.cnq2413.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq2414_09.plugin
       - jp.co.canon.scanner.cnq2414.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq4807_09.plugin
       - jp.co.canon.scanner.cnq4807.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq4808_09.plugin
       - jp.co.canon.scanner.cnq4808.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq4809_09.plugin
       - jp.co.canon.scanner.cnq4809.09
       /Library/Printers/Canon/IJScanner/Plugins/cnq9601_09.plugin
       - jp.co.canon.scanner.cnq9601.09
       /Library/Printers/Canon/IJScanner/Plugins/ijfshlib_09.plugin
       - jp.co.canon.scangear.ijfshlib.09
       /Library/Printers/Canon/IJScanner/Plugins/mld07_09.plugin
       - jp.co.canon.scangear.mld07.09
       /Library/Printers/Canon/IJScanner/Plugins/mld08_09.plugin
       - jp.co.canon.scangear.mld08.09
       /Library/Printers/Canon/IJScanner/Plugins/mld09_09.plugin
       - jp.co.canon.scangear.mld09.09
       /Library/Printers/Canon/IJScanner/Plugins/mld9601_09.plugin
       - jp.co.canon.scangear.mld9601.09
       /Library/Printers/Canon/IJScanner/Plugins/sfusb_09.plugin
       - jp.co.canon.sf.scanner.sfusb.09
       /Library/Printers/Canon/IJScanner/Plugins/sgusb_09.plugin
       - jp.co.canon.scangear.usb.09
       /Library/Printers/Canon/IJScanner/Plugins/smac_09.plugin
       - jp.co.canon.scangear.smac.09
       /Library/Printers/Canon/IJScanner/Plugins/zoom_09.plugin
       - jp.co.canon.scangear.zoom.09
       /Library/Printers/EPSON/CIOSupport/CIOHelper.plugin
       - com.epson.print.plugin.CIOHelper
       /Library/Printers/EPSON/CIOSupport/EPSONUSBPrintClass.plugin
       - com.epson.print.plugin.USBPrintClass
       /Library/Printers/EPSON/CIOSupport/XIOP.plugin
       - com.epson.print.plugin.XIOP
       /Library/Printers/EPSON/CIOSupport/XIORemoteClient.plugin
       - com.epson.print.plugin.XIORemoteClient
       /Library/Printers/EPSON/CIOSupport/XIORemoteServer.plugin
       - com.epson.print.plugin.XIORemoteServer
       /Library/Printers/EPSON/InkjetPrinter2/PDE/PDECPlugin01.plugin
       - com.epson.ijprinter.PDECPlugin01
       /Users/USER/Library/Address Book Plug-Ins/SkypeABDialer.bundle
       - com.skype.skypeabdialer
       /Users/USER/Library/Address Book Plug-Ins/SkypeABSMS.bundle
       - com.skype.skypeabsms
    dylibs
       /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Libraries/mbupgx.dylib
       /Applications/Microsoft Office 2011/Office/OPF.framework/Versions/14/Resources/OPF_Common.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/Fm20.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/MicrosoftOLE2TypesLib.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RefEdit.dylib
       /Applications/Microsoft Office 2011/Office/Visual Basic for Applications.framework/Versions/14/Frameworks/RichEdit.dylib
       /Library/Application Support/com.avg.Antivirus/update/backup/#Applications#AVG AntiVirus.app#Contents#Backend##lib#libavgcore.dylib
       /Library/Frameworks/DYMO/DLS8/Barcode.framework/Versions/A/Resources/libUSPS4CB .dylib
    App extensions
       com.getdropbox.dropbox.garcon
    Elapsed time (sec): 356

  • Help with Batch Labeler (extremely Urgent)

    Good Afternoon Eeveryone,
    I am in need of help to create a Batch file to stamp the filename of the PDF document in the document itself.
    This is for audit and control purposes.
    i have the following javascript to add the filename as a header.
    app.addSubMenu({ cName: "Header",cUser: "Set/Remove Header", cParent: "File", nPos: 20 });
    app.addMenuItem({ cName: "(Filename)", cParent: "Header", cExec: "SetHeader(1)"});
    app.addMenuItem({ cName: "-------------------------------", cParent: "Header",cExec: "{}"});
    app.addMenuItem({ cName: "(Filename)", cParent: "Header", cExec: "RemoveHeader(1)"});
    //Set/remove Header
    function SetHeader(ARG)
    var re = /.*\/|\.pdf$/ig;
    var FileNM = this.path.replace(re,"")+".pdf";
    var Path = this.path;
    var AcDate = new Date();
    var AcDateFormat = "yyyy/mmm/dd  HH:MM"
    var Box2Width = 50
    for (var p = 0; p < 1; p++)
      var aRect = this.getPageBox("Crop",p);
      var TotWidth = aRect[2] - aRect[0]
      if (ARG<=3 || ARG==9)
       { var fd = this.addField("xftDate", "text", p, [20,1600, TotWidth-30-30,30]);
          fd.value = "Nº:" + FileNM;
           fd.textSize=12; fd.readonly = true;
           if (ARG==1){ fd.alignment="left" };
           if (ARG==2){ fd.alignment="center" };
           if (ARG==3){ fd.alignment="right" };
      if (ARG==4 || ARG==5 ||ARG==9)
       {  var hStart=(TotWidth/2)-(Box2Width/2)
           var hEnd=((TotWidth/2)+(Box2Width/2))
           if (ARG==5){var hStart=(TotWidth-Box2Width-30); var hEnd=(TotWidth-30);}
           var fp = this.addField(String("xftPage"+p+1), "text", p, [hStart,30,hEnd,1450]);
           fp.value = "Page: " + String(p+1)+ "/" + this.numPages;
           fp.textSize=12;  fp.readonly = true;
           fp.alignment="center";
    function RemoveHeader(ARG)
    if (ARG<=3 || ARG==9) {var x = this.removeField("xftDate");}
    if (ARG==4 || ARG==9)
       {  for (var p = 0; p < this.numPages; p++)
          {var x = this.removeField(String("xftPage"+p+1)); }
    I found this on another Thread and made some changes to suit my needs, now i need this to reproduce to a large ammount of pdf files, and that works with adobe reader.
    i have this batch file that i also took from another thread, if i click on it it works fine, i change the directory where it sends the files but when i drop a file on it it gives a error saying it cant "create object acroexch.app"
    '//////  User settings /////////////////////////////////////////////////////////
    fileSaveDir = "c:\Temp"    '/->state an existing folder for saving changed files
    mode = 1         '/->  0=work hidden; 1= show acrobat
    test = 1             '/-> 0= don't show messages; 1=show messages
    '    // set WSH objects
    set oWsh = CreateObject ("Wscript.Shell")
    Set oArgs = WScript.Arguments
    Set fso = CreateObject("Scripting.FileSystemObject")
    '    // test basic files/folders
    if not fso.FolderExists(fileSaveDir) then : msgBox("Folder """ &fileSaveDir &""" don't exist") : wscript.quit : end if
    if oArgs.Count = 0 then :    MsgBox("Drag & Drop files on this") : Wscript.quit : end if
    '    // set acrobat basic objects
    Set App = CreateObject("Acroexch.app")
    if mode > 0 then app.show
    Set AVDoc = CreateObject("AcroExch.AVDoc")
    Set AForm = CreateObject("AFormAut.App") 'from AFormAPI
    '    // write  acro-js to a variable for later executing
    Ex = "  // set Date and filename as footer  "&vbLF _
      & "  var re = /.*\/|\.pdf$/ig;  "&vbLF _
      & "  var FileNM = this.path.replace(re,"""")+"".pdf"";  "&vbLF _
      & "  var AcDate = new Date();  "&vbLF _
      & "  var AcDateFormat = ""yyyy/mmm/dd  HH:MM"";  "&vbLF _
      & "  for (var p = 0; p < this.numPages; p++)   "&vbLF _
      & "  {   "&vbLF _
      & "    var aRect = this.getPageBox(""Crop"",p);  "&vbLF _
      & "    var TotWidth = aRect[2] - aRect[0];  "&vbLF _
      & "    var fd = this.addField(""xftDate"", ""text"", p, [30,15, TotWidth-30-30,30]);   "&vbLF _
      & "    fd.value =  util.printd(AcDateFormat, AcDate) + ""   ("" + FileNM +"")"";   "&vbLF _
      & "    fd.textSize=6;   "&vbLF _
      & "    fd.readonly = true;  "&vbLF _
      & "    fd.alignment=""left"";  "&vbLF _
    '    // kernel: batch processing of js-code
    for each xFile in oArgs
        if test = 1 then : OK = msgbox("Change file: " & xFile,1) : if OK = 2 then WScript.quit : end if
        If not fso.FileExists(xFile) Then : msgbox("File doesn't exist") : wscript.quit : end if
        If AVDoc.Open(xFile,"") Then
            set PDDoc = AVDoc.GetPDDoc
            AForm.Fields.ExecuteThisJavaScript Ex
            outFile = fileSaveDir &"\" &mid(xFile,InstrRev(xFile,"\")+1)
            if test = 1 then : OK = msgbox("Script executed"&vbCr&"SaveAs: "&outfile,1) : if OK = 2 then WScript.quit : end if
            If fso.FileExists(outFile) Then fso.DeleteFile(outfile)
            PDDoc.save 1, outFile
            App.CloseAllDocs
        else
            msgbox("Coudn't open file!") : wscript.quit
        end if
    next
    OK = msgbox("Batchjob finished!" &vbCr &"Close Acrobat?",1) : if OK = 1 then app.exit
    Set AVDoc = Nothing : Set PDDoc = Nothing
    Set APP = Nothing : Set AForm = Nothing

    thanks for all the replies, the documents are forms usage rights, the first javascript is running fine and dandy doing exactly what i want, all i need is something to run that javascript on multiple pdf at once.
    since this is for audit purposes i really could use this otherwise i would have to manually write over 400 document filename/numbers on eveyr piece of paper..
    =X

  • Help with Zebra Label Printer and Multi Order Shipping Tool- Partial Label Printing

    I have a zebra gx420d which is compatible the zebra 2844 (its the new model) and I am having a hard time printing labels with the multi order shipping tool. I have the correct driver, the printer test page works fine, and everything is configured for a 4x6 label.
    I have set the selling preferences in paypal to match the zebra 2844 printer and within the mult order tool, I have edited the settings to also match zebra 2844.
    My problem is that regardless of what or how I do it, my printer will only print a 1/4 of the label. It is not shrinking the label, it is starting to print at the correct size but stops 1/4 of the way through. Almost like it thinks my label size is too small but as i mentioned, I confirmed 4x6 on the label settings at both printer properties and printer preferences. I spent and hour on tech support with zebra and they confirmed the printer is working as it is supposed to. I also know this because my Amazon labels print correctly as well. Its only paypal and ebay labels that are not working. Very frustrating.  Can anyone help?

    Hi,
    did you upload the desgin in a standard text with option ITF? This you can copy then to the layoutset. At least this is the way of working with BARONE.
    Cheers,
    Stefan

  • Help with commandLink, actionListener, param in a simple CRUD example

    Hi All,
    I'm trying to build a very simple CRUD (create read update delete) interface as a proof of concept (concept being that I have some aptitude with JSF) and here is my problem:
    I have a dataTable, each row of which represents a campaign object. I want an "edit" link in each row that will load a single-edit page for the campaign in that row. I am not sure how to access the value of the param (campaignId) within the backing bean's actionListener method. Below is the code for the link and thanks in advance.
    Matt
    <h:commandLink
       actionListener="#{CampaignBean.chooseCampaign}"
       action="#{CampaignBean.editCampaign}"
       rendered="#{not campaign.editable }">
                   <h:outputText value='#{campaign.campaignName}'
                                 rendered="#{not campaign.editable }"/>
                   <f:param name="chosenCampaign"
                                 value="#{campaign.campaignId }"/>
              </h:commandLink>

    Thank you very much! Actually a co-worker had pointed me to your site yesterday afternoon and I was going to post a link to it. Your articles are very helpful!!!

  • Need help with component label

    Hi all,
    I want to have label for my components. so when any existing components on the page is opened for editing(for example if I open any components in edit mode from foundation, Tab name is seen and if there is multiple tab like in textImage component its confusing what component is that)I am using fieldLabel properties to show label in my component but this properties is not working for me. Please advice...
    Thanks A lot in Advance..

    Hi,
    Yeah, its clear now. sorry for confusion. So as i understood you actually want to show label for your component not the tabs and OOTB using title will not help you. If you want to achieve this then you have to change your hierarchy.
    Yake an example:
    If your current hierarchy is like below
    dialog (tabpanel) --> items (widgetcollection) --> tab1 (panel)--> items (widgetcollection) --> etc.....
    then you have to move your tabpanel inside another panel which has property "layout" and value as "fit", so the new hierarchy will look like this
    dialog (panel) -->items (widgetcollection)-->Main Tab(tabpanel) --> items (widgetcollection) --> tab1 (panel)--> items (widgetcollection) --> etc.....
    and at panel use property "title" to set the main title
    The look and feel will be different than to normal tab panel obviously as you used panel but hope it will be fine.
    Let me know you need more information.
    I would also suggest you to refer - http://dev.day.com/docs/en/cq/current/widgets-api/output/CQ.Ext.TabPanel.html from more info.
    Thanks,
    Pawan

  • Help with an error output

    I have a FLVPlayback component for show videos from a menu. when the video get completed it returns to the menu, but when it returns, the menu items dont work again and i get this output, can somebody help me with this????
    TypeError: Error #1009: No se puede acceder a una propiedad o a un método de una referencia a un objeto nulo.
    at Popular2_fla::MainTimeline/frame1()
    at flash.display::MovieClip/gotoAndStop()
    at Popular2_fla::MainTimeline/completePlay()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.video::FLVPlayback/http://www.adobe.com/2007/flash/flvplayback/internal::handleVideoEvent()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::httpDoStopAtEnd()
    at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::httpNetStatus()
    i have it working in previous version of my project, i just changed the buttons, and it stop working as i want. HELP!!!
    i apologize for my english

    i get this:
    TypeError: Error #1009: No se puede acceder a una propiedad o a un método de una referencia a un objeto nulo.
    at Popular2_fla::MainTimeline/frame1()[Popular2_fla.MainTimeline::frame1:10]
    at flash.display::MovieClip/gotoAndStop()
    at Popular2_fla::MainTimeline/completePlay()[Popular2_fla.MainTimeline::frame1:7]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.video::FLVPlayback/http://www.adobe.com/2007/flash/flvplayback/internal::handleVideoEvent()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::httpDoStopAtEnd()
    at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::httpNetStatus()
    And the code in the frame is:
                        stop();
                        import fl.video.*;
                        vidPlayer.addEventListener(VideoEvent.COMPLETE, completePlay);
                        function completePlay(e:VideoEvent):void {
    Line 7: -- >    gotoAndStop(1);
    Line 10: -- >  btn1.addEventListener(MouseEvent.CLICK, vid1);
                        btn2.addEventListener(MouseEvent.CLICK, vid2);
                        btn3.addEventListener(MouseEvent.CLICK, vid3);
    function vid1(e:Event):void{
    vidPlayer.source = "hockey.flv"
    gotoAndStop(3);
    function vid2(e:Event):void{
    vidPlayer.source = "guitar.flv"
    gotoAndStop(4);
    function vid3(e:Event):void{
    vidPlayer.source = "bear.flv"
    gotoAndStop(5);

  • Help with z program output and scrollbars

    Morning all
    We are running an ERP2004 SAP system, and we're having some problems with a z program. Basically it was a quick bit of code put together to check user names against the names stored in PA.
    Now the problem is that when the report is output on a PC running its screen resolution at 1024x768, we can't see the last field output in the report and there's no horizontal scroll bar. If we run the program on a desktop with a screen resolution at 1280x1024, we can see the last column, so no need for the scrollbar and it's not output.
    Now I thought SAP added the scroll bars automatically for you if you needed them? Has anyone come across this before, because I haven't and it seems very strange indeed!

    and also u have to checl LINE-SIZE while defining the Report.
    Regards
    Prabhu

Maybe you are looking for

  • HP Laptop Upgrade / Replacemen​t

    I need to upgrade / replace my current HP laptop and want some guidance on what to replace it with. I currenty have the following: HP Pavilian DV9000 Product Name dv9760ei Product Number KP947EA Microprocessor 2.40 GHz Intel Core 2 Duo processor T830

  • IPhone Mail app; IMAP; x509 client certificate?

    The title says it all really. I have an x509 client certificate happily installed in my iPhone's keychain. This certificate works correctly in Safari, allowing access to sites which demand it. When I try to collect mail from an IMAP server which also

  • New aluminum Macbook and S-Video

    New aluminum Macbook and S-Video It have come to the conclusion that the new MacBook's and MacBook Pro's can not output to S-video. I have tired the Apple Mini DisplayPort to DVI and then the Apple DVI to Video but no luck, the two do not connect as

  • 1st and 2nd nanos

    I ahve and old battered nano, but i still need it in my life, My girlfriend has a nice shiney new one, I installed hers on to my computer, it updated my software and now my i pod will not get recognised by my computer. It will only charge. Is this be

  • Delete Business Object Type (SWO1)

    Hi gurus, How can we delete/modify objects in SWO1 that were created in a previous version. Are these actions allowed, is there a workaround if its not allowed? Thanks for your help! Jason