Error Message(I can't pickout the problem)

I compiled my program and got the following error message.
The code is long and i realise people have little time to spare
but i would appreciate someone can tell me why.
===
H:\myjava>javac LPCPROJECT1.java
LPCPROJECT1.java:125: showSaveDialog(java.awt.Component) in javax.swing.JFileCho
oser cannot be applied to (LPCPROJECT1.Savehandler)
int result = fileChooser.showSaveDialog( this );
^
LPCPROJECT1.java:169: inner classes cannot have static declarations
public static void main (String [] args)
^
2 errors
====
import javax.swing.*;
//import javax.swing.table.AbstractTableModel;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
//import javax.swing.JTable;
//import javax.swing.table.TableColumn;
//import javax.swing.DefaultCellEditor;
//import javax.swing.table.TableCellRenderer;
//import javax.swing.table.DefaultTableCellRenderer;
//import javax.swing.JScrollPane;
//import javax.swing.JComboBox;
//import javax.swing.JFrame;
//import javax.swing.SwingUtilities;
//import javax.swing.JOptionPane;
public class LPCPROJECT1 extends JApplet
{ private int MemorySize=100;
private JTextField MemoryContent[];
private JLabel MemoryAddress[],MemoryAdd1,MemoryAdd2;
private JPanel Memory1,Memory2,Memory3,Memory,Right,mainpane;
private JScrollPane scrollPane1;
private JButton load,save,clear,exit;
private File fileName;
public void init()
{ load=new JButton("LOAD");
//run.setMinimumSize(new Dimension(170,40));
//run.setPreferredSize(new Dimension(170,40));
//run.setMaximumSize(new Dimension(170,40));
save=new JButton("SAVE");
Savehandler Sa=new Savehandler();
save.addActionListener(Sa);
clear=new JButton("CLEAR");
exit=new JButton("EXIT");
JPanel Memory1 = new JPanel();
Memory1.setLayout(new FlowLayout());
Memory1.add(load);
Memory1.add(save);
Memory1.add(clear);
Memory1.add(exit);
MemoryAdd1=new JLabel("MemoryAddress");
MemoryAdd1.setBorder(BorderFactory.createLineBorder(Color.black));
MemoryAdd1.setPreferredSize(new Dimension(147,45));
MemoryAdd1.setMinimumSize(new Dimension(147,45));
MemoryAdd1.setMaximumSize(new Dimension(147,45));
MemoryAdd2=new JLabel("MemoryContent");
MemoryAdd2.setBorder(BorderFactory.createLineBorder(Color.black));
MemoryAdd2.setPreferredSize(new Dimension(147,45));
MemoryAdd2.setMinimumSize(new Dimension(147,45));
MemoryAdd2.setMaximumSize(new Dimension(147,45));
Memory2=new JPanel();
Memory2.setBackground(Color.red);
Memory2.setLayout(new BoxLayout(Memory2, BoxLayout.X_AXIS));
Memory2.setPreferredSize(new Dimension(295,45));
Memory2.setMinimumSize(new Dimension(295,45));
Memory2.setMaximumSize(new Dimension(295,45));
MemoryAdd1.setAlignmentX (Component.CENTER_ALIGNMENT);
Memory2.add(MemoryAdd1);
MemoryAdd2.setAlignmentX (Component.CENTER_ALIGNMENT);
Memory2.add(MemoryAdd2);
MemoryAddress=new JLabel[MemorySize];
for(int i=0;i<MemoryAddress.length;i++)
{ MemoryAddress[i]=new JLabel(" "+i);
MemoryContent=new JTextField[MemorySize];
for(int i=0;i<MemoryContent.length;i++)
{ MemoryContent[i]=new JTextField();
Memory3=new JPanel();
Memory3.setBackground(Color.red);
Memory3.setLayout(new GridLayout(MemorySize+1,2));
for(int i=0;i<MemorySize;i++)
{ Memory3.add(MemoryAddress[i]);
Memory3.add(MemoryContent);
scrollPane1=new JScrollPane(Memory3);
scrollPane1.setPreferredSize(new Dimension(300, 570));
scrollPane1.setMinimumSize(new Dimension(300, 570));
scrollPane1.setMaximumSize(new Dimension(300, 570));
Memory=new JPanel();
Memory.setBackground(Color.green);
Memory.setLayout(new BoxLayout(Memory, BoxLayout.Y_AXIS));
Memory.setMinimumSize(new Dimension(300,650));
Memory.setPreferredSize(new Dimension(300,650));
Memory.setMaximumSize(new Dimension(300,650));
Memory.add(Memory1);
Memory.add(Memory2);
Memory.add(scrollPane1);
Right=new JPanel();
Right.setBackground(Color.blue);
//Right.setMinimumSize(new Dimension(295,650));
//Right.setPreferredSize(new Dimension(295,650));
//Right.setMaximumSize(new Dimension(295,650));
mainpane=new JPanel();
mainpane.setBackground(Color.magenta);
mainpane.setMinimumSize(new Dimension(695,845));
mainpane.setPreferredSize(new Dimension(695,845));
mainpane.setMaximumSize(new Dimension(695,845));
mainpane.setLayout(new BoxLayout(mainpane,BoxLayout.X_AXIS));
mainpane.add(Memory);
mainpane.add(Right);
Container c=getContentPane();
c.add(mainpane);
private class Savehandler implements ActionListener
{ public void actionPerformed(ActionEvent event)
{ JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY );
int result = fileChooser.showSaveDialog( this );
// user clicked Cancel button on dialog
if ( result == JFileChooser.CANCEL_OPTION )
return;
fileName = fileChooser.getSelectedFile();
if ( fileName == null || fileName.getName().equals( "" ) )
JOptionPane.showMessageDialog( null,"Invalid File Name",
"Invalid File Name",
JOptionPane.ERROR_MESSAGE );
else
{ // Open the file
try
{ FileWriter out = new FileWriter(fileName);
for(int i=0;i<MemorySize;i++)
{ out.write(MemoryContent[i].getText() + "\n");
out.close();
//out = new FileOutputStream(fileName);
//p = new PrintStream( out );
catch ( IOException e )
{ JOptionPane.showMessageDialog( null,
"Error Opening File", "Error",
JOptionPane.ERROR_MESSAGE );
catch(FileNotFoundException fnfe)
{ System.err.println("FileNotFoundException: " + fnfe.getMessage());
catch(IOException ioe)
{ System.err.println("IOException: " + ioe.getMessage());
public void load()
public void clear()
public void exit()
public static void main (String [] args)
{ JFrame frame = new JFrame("LPC");
frame.addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)
System.exit(0);
LPCPROJECT1 LPC=new LPCPROJECT1();
LPC.init();
frame.getContentPane().add(LPC);
frame.pack();
frame.setSize(700,850);
frame.setVisible(true);
====

jkwhtfield replied before I finished formatting your code :P. But he's right, it should be outside SaveHandler like this:
import javax.swing.*;
//import javax.swing.table.AbstractTableModel;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
//import javax.swing.JTable;
//import javax.swing.table.TableColumn;
//import javax.swing.DefaultCellEditor;
//import javax.swing.table.TableCellRenderer;
//import javax.swing.table.DefaultTableCellRenderer;
//import javax.swing.JScrollPane;
//import javax.swing.JComboBox;
//import javax.swing.JFrame;
//import javax.swing.SwingUtilities;
//import javax.swing.JOptionPane;
public class LPCPROJECT1 extends JApplet {
     private int MemorySize=100;
     private JTextField MemoryContent[];
     private JLabel MemoryAddress[],MemoryAdd1,MemoryAdd2;
     private JPanel Memory1,Memory2,Memory3,Memory,Right,mainpane;
     private JScrollPane scrollPane1;
     private JButton load,save,clear,exit;
     private File fileName;
     public void init() {
          load=new JButton("LOAD");
          //run.setMinimumSize(new Dimension(170,40));
          //run.setPreferredSize(new Dimension(170,40));
          //run.setMaximumSize(new Dimension(170,40));
          save = new JButton("SAVE");
          Savehandler Sa=new Savehandler();
          save.addActionListener(Sa);
          clear=new JButton("CLEAR");
          exit=new JButton("EXIT");
          JPanel Memory1 = new JPanel();
          Memory1.setLayout(new FlowLayout());
          Memory1.add(load);
          Memory1.add(save);
          Memory1.add(clear);
          Memory1.add(exit);
          MemoryAdd1=new JLabel("MemoryAddress");
          MemoryAdd1.setBorder(BorderFactory.createLineBorder(Color.black));
          MemoryAdd1.setPreferredSize(new Dimension(147,45));
          MemoryAdd1.setMinimumSize(new Dimension(147,45));
          MemoryAdd1.setMaximumSize(new Dimension(147,45));
          MemoryAdd2=new JLabel("MemoryContent");
          MemoryAdd2.setBorder(BorderFactory.createLineBorder(Color.black));
          MemoryAdd2.setPreferredSize(new Dimension(147,45));
          MemoryAdd2.setMinimumSize(new Dimension(147,45));
          MemoryAdd2.setMaximumSize(new Dimension(147,45));
          Memory2=new JPanel();
          Memory2.setBackground(Color.red);
          Memory2.setLayout(new BoxLayout(Memory2, BoxLayout.X_AXIS));
          Memory2.setPreferredSize(new Dimension(295,45));
          Memory2.setMinimumSize(new Dimension(295,45));
          Memory2.setMaximumSize(new Dimension(295,45));
          MemoryAdd1.setAlignmentX(Component.CENTER_ALIGNMENT);
          Memory2.add(MemoryAdd1);
          MemoryAdd2.setAlignmentX (Component.CENTER_ALIGNMENT);
          Memory2.add(MemoryAdd2);
          MemoryAddress=new JLabel[MemorySize];
          for(int x=0;x<MemoryAddress.length;x++) {
               MemoryAddress[x]=new JLabel(" "+x);
          MemoryContent=new JTextField[MemorySize];
          for(int x=0;x<MemoryContent.length;x++) {
               MemoryContent=new JTextField();
          Memory3=new JPanel();
          Memory3.setBackground(Color.red);
          Memory3.setLayout(new GridLayout(MemorySize+1,2));
          for(int i=0;i<MemorySize;i++) {
               Memory3.add(MemoryAddress);
               Memory3.add(MemoryContent);
          scrollPane1=new JScrollPane(Memory3);
          scrollPane1.setPreferredSize(new Dimension(300, 570));
          scrollPane1.setMinimumSize(new Dimension(300, 570));
          scrollPane1.setMaximumSize(new Dimension(300, 570));
          Memory=new JPanel();
          Memory.setBackground(Color.green);
          Memory.setLayout(new BoxLayout(Memory, BoxLayout.Y_AXIS));
          Memory.setMinimumSize(new Dimension(300,650));
          Memory.setPreferredSize(new Dimension(300,650));
          Memory.setMaximumSize(new Dimension(300,650));
          Memory.add(Memory1);
          Memory.add(Memory2);
          Memory.add(scrollPane1);
          Right=new JPanel();
          Right.setBackground(Color.blue);
          //Right.setMinimumSize(new Dimension(295,650));
          //Right.setPreferredSize(new Dimension(295,650));
          //Right.setMaximumSize(new Dimension(295,650));
          mainpane=new JPanel();
          mainpane.setBackground(Color.magenta);
          mainpane.setMinimumSize(new Dimension(695,845));
          mainpane.setPreferredSize(new Dimension(695,845));
          mainpane.setMaximumSize(new Dimension(695,845));
          mainpane.setLayout(new BoxLayout(mainpane,BoxLayout.X_AXIS));
          mainpane.add(Memory);
          mainpane.add(Right);
          Container c=getContentPane();
          c.add(mainpane);
     private class Savehandler implements ActionListener {
          public void actionPerformed(ActionEvent event) {
               JFileChooser fileChooser = new JFileChooser();
               fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY );
               int result = fileChooser.showSaveDialog( this );
               // user clicked Cancel button on dialog
               if (result == JFileChooser.CANCEL_OPTION) return;
               fileName = fileChooser.getSelectedFile();
               if (fileName == null || fileName.getName().equals("")) {
                    JOptionPane.showMessageDialog(null,"Invalid File Name","Invalid File Name",JOptionPane.ERROR_MESSAGE);
               else {
               // Open the file
                    try {
                         FileWriter out = new FileWriter(fileName);
                         for(int i=0;i<MemorySize;i++) {
                              out.write(MemoryContent.getText() + "\n");
                         out.close();
                         //out = new FileOutputStream(fileName);
                         //p = new PrintStream(out);
                    catch (IOException e) {
                         JOptionPane.showMessageDialog(null,"Error Opening File", "Error",JOptionPane.ERROR_MESSAGE);
                    catch(FileNotFoundException fnfe) {
                         System.err.println("FileNotFoundException: " + fnfe.getMessage());
                    catch(IOException ioe) {
                         System.err.println("IOException: " + ioe.getMessage());
          public void load() {}
          public void clear() {}
          public void exit() {}
     public static void main (String [] args) {
          JFrame frame = new JFrame("LPC");
          frame.addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) {
                    System.exit(0);
          LPCPROJECT1 LPC=new LPCPROJECT1();
          LPC.init();
          frame.getContentPane().add(LPC);
          frame.pack();
          frame.setSize(700,850);
          frame.setVisible(true);
}There are some other errors, but I think it's because you've commented out some stuff...

Similar Messages

  • I have been exporting lightroom webgaleries to my iweb site without any problem.  Suddenly I get the error message "finder can't complete the operation because some data can't be read or written" - error code -36 - thoughts?

    i have been exporting lightroom web galleries to my iweb site without any problem.  Suddenly I get the error message "finder can't complete the operation because some data can't be read or written" - error code -36 - and the move to the sites folder on my idisk fails..... thoughts?

    Try this community: MobileMe on my Mac: MobileMe: Apple Support Communities.
    And you can continue to use iWeb for some time to come. The following will explain:
    It's now confirmed that iWeb and iDVD have been discontinued by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD.
    On June 30, 2012 MobileMe will be shutdown. HOWEVER, iWeb will still continue to work but without the following:
    Features No Longer Available Once MobileMe is Discontinued:
    ◼ Password protection
    ◼ Blog and photo comments
    ◼ Blog search
    ◼ Hit counter
    ◼ MobileMe Gallery
    All of these features can be replaced with 3rd party options.
    I found that if I published my site to a folder on my hard drive and then uploaded with a 3rd party FTP client subscriptions to slideshows and the RSS feed were broken.  If I published directly from iWeb to the FPT server those two features continued to work correctly.
    There's another problem and that's with iWeb's popup slideshows.  Once the MMe servers are no longer online the popup slideshow buttons will not display their images.
    Click to view full size
    However, Roddy McKay and I have figured out a way to modify existing sites with those slideshows and iWeb itself so that those images will display as expected once MobileMe servers are gone.  How to is described in this tutorial: #26 - How to Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued.
    In addition the iLife suite of applications offered on disc is now a discontinued product and the remaining supported iApps will only be available thru the App Store from now on.
    HOWEVER, the iLife 11 boxed version that is still currently available at the online Apple Store (Store button at the top of the page) and those copies still on the shelves of retailers will include iWeb and iDVD.

  • My home page is google and it works but when I open a new tab it displays an error message :Firefox can't find the file at chrome://quick_start/content/index.ht

    I've made sure a dozen times that my home page is set correctly, and when I hit the home button next to the search bar it works and takes me right to google BUT whenever i open a new tab i get the error that my page cannot load and the web url that it keeps trying to remember is in the error message:
    Firefox can't find the file at chrome://quick_start/content/index.html.
    of course the last dot is not the url anymore but the end of the sentence for the error message, but i don't ever use chrome ever on my laptop only my cell so what is going on????? help fix god please!!!!!!

    Do you have the FastStart extension?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Safari won't start after showing an error message: Safari can't use the extension "Omnibar" because the extension is no longer valid.

    Since yesterday evening (19-01-2015) safari won't start. After clicking the safari application it shows an error message: Safari can't use the extension "Omnibar" because the extension is no longer valid.
    This message almost directly disappears whereupon the Problem Report opens. I've tried to find a solution on the web but without succes.
    I'm running OS X Yosemite version 10.10.1 and Safari version 8.0.2 on a:
    MacBook Pro (Retina 13-inch, Mid 2014)
    Processor 3 GHz Intel Core i7
    Memory 16 GB 1600 MHz DDR3
    Graphics Intel Iris 1536 MB
    Since I updated to Yosemite I've been having multiple problems. I already read a clean install will solve most of them. But till then I would love safari to work again.
    Thanks!

    There is no need to download anything to solve this problem.
    If Safari crashes on launch and you don't have another web browser, you should be able to launch Safari by starting up in safe mode.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those.
    After removing the malware, remember to reset your home page in all the web browsers affected, if it was changed.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Im getting a constant error message: "you can't open the application PACE because PowerPC applications are no longer supported". I cant find PACE to delete it?

    Im getting a constant error message: "you can't open the application PACE because PowerPC applications are no longer supported". I cant find PACE to delete it?

    PACE is a rather crappy copy protection software used by the following;
    Antares
    Melodyne
    Cycling 74 Max/MSP/Jitter
    iZotope oZone
    Line6 POD Farm
    McDSP plug-ins (some software purchases include a green iLok key)
    MOTU
    Overloud
    Pro Tools
    Serato
    Virtually all Digidesign (RTAS and TDM) plug-ins
    Virtually all Waves Products
    So if you have any of there, they might be the cause of your problems.
    Allan

  • Hi there, got 3 issues at once.... 1) can't download the latest itune version (it simply stops, not even an error message) 2) can't access the itune store and in order to fix this i need the latest version 3) one of my ipods isn't recognised by itune

    Hi there, got 3 issues at once....
    1) can't download the latest itune version onto my PC (it simply stops, not even an error message)
    2) can't access the itune store and in order to fix this i need the latest version - catch 22!
    3) one of my ipods isn't recognised by itune, nit sure if because of the earlier problems?
    .... thanks
    S.

    Hello SAB7700,
    This first article can help get iTunes successfully downloaded and updated, which should restore access to the iTunes Store.
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Once iTunes is successfully updated, the following articles provides steps that can help get your iPod working in iTunes again and the iTunes Store functioning, should the update not resolve these issues
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/TS1369
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    Allen

  • When trying to open iphoto I get the error message "You can't open the application iPhoto because it may be damaged or incomplete." How do I fix this and get my photo's back?

    When trying to open iphoto I get the error message "You can't open the application iPhoto because it may be damaged or incomplete." How do I fix this and get my photo's back?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.

  • I keep getting the error message: " You can't open the application "%@" because it may be damage or incomplete" when I try to install a software that I purchased.

    I have a typing software that I bought a while ago. I had installed it on an old pc but I just bought a macbook and I'd like to install it onto the new macbook, as I no longer use the old pc. When I open the installer, I get the error message: " You can't open the application "%@" because it may be damage or incomplete"
    Does anybody know if this is fixable or if I need to just buy a new disk?
    Thanks!!!

    I copy pasted this from the developers website for the minimum requirements of your device: Macintosh® OS X 10.4 – 10.5, PowerPC G4, G5 or Intel Core Duo processor, 800 MHz processor or higher, 256 MB RAM, CD/DVD-ROM drive, 300 MB free hard disk space, Video card with 32 MB of video RAM, 1024 x 768 24-bit color display, Speakers, keyboard & mouse.
    Does a macbook pro meet these requirements?

  • Got an error message "You can't open the application iMovie because it may be damaged or incomplete"  What do I do next to try to fix?  Thanks.

    I tried accessing imovie after not using it for a long time and got an error message "You can't open the application iMovie because it is damaged or incomplete. I'm not sure how to go about addressing it.  Your suggestions would be very much apprecaited.

    Judging by your OSX, I presume that your iMac would have come with 2 installation discs.
    iMovie and all the iLife software will be on disc 2.
    Run the disc and re-install iMovie.
    After that, do a software update.,
    Best,

  • When I try to authorize home sharing in iTunes, I get error message 5506. What is the problem?

    When I try to authorize home sharing in iTunes, I get error message 5506.
    What is the problem?

    Home Sharing
    Setting up Home Sharing on your Computer
    http://support.apple.com/kb/HT4620?viewlocale=en_US&locale=en_US
    Understanding  >  http://support.apple.com/kb/HT3819
    How to  >  http://support.apple.com/kb/HT2688
    Troubleshooting  >  http://support.apple.com/kb/TS2972

  • New MacPro 10.9.4 included Keynote. Worked fine. An update was released August 21. Just downloaded the 6.2.2 update and now get error message "You can't open the application because PowerPC applications are no longer supported". Any ideas?

    New MacPro 10.9.4 purchased three weeks ago included Keynote. App worked fine. New update for Keynote was released August 21. Just downloaded the 6.2.2 update. Tried to launch app and now get error message "You can’t open the application “Keynote.app” because PowerPC applications are no longer supported." Confused as to why it worked prior to update. Nothing else has changed. No issues with recent iMovie, Pages or Numbers updates. Any ideas?

    I tested this:
    Reinstalled Aperture 3.1 from the Trial Installer.
    In some way it seems to be working. But the whole thing is a scary Chimera.
    It can create an Aperture library. I can import and edit images, even in Graphic Converter ias an external editor.
    But the Media Browser does not show the aperture Library that I created.
    The versioning is inconsistent. The library appears as an Aperture 3.4 library in the Finder.  Aperture 3.5 seems to be able to read this library and to upgrade it to 3.5
    The Applications folder is showing the application as version 3.4 and as compatible. Spotlight is showing it as illegal.
    When opening the chimera Aperture, I see plenty of warnings in the Console window:
    An Aperture "Hang" report
    xpcproxy assertion failed
    com.apple.IconServiceAgent: main failed to composite image
    quicklookd: Warning
    and more ... the hang was critical. I had to force quit Aperture more than once.
    So be careful. I would not trust any important Aperture library to this patched application, without testing thoroughly. Be careful with your  precious photos.

  • I downloaded Maverick X 9.2 on my Mac Air. I get this error message: "You can't open the application "microsoft Word" because PowerPC applications are no longer supported." Help?

    I downloaded Maverick X 9.2 on my Mac Air. I get this error message: "You can't open the application "microsoft Word" because PowerPC applications are no longer supported." Help?

    QUESTION: Were you induced to upgrade to Mavericks after seeing this dialog box?

  • Error message: 'you can't open the application because the Classic environment is no longer supported'

    I get the error message 'you can't open the application because the Classic environment is no longer supported', when will this issue be fixed? I need to use a program to analyse videos called 'J watcher' that is vital for my thesis. It worked in the last operating system but refuses to open in this one. When will this issue be fixed/what can I do about it?

    Is there any way to fix this?
    Yes, but it's not easy.
    I've only tested this on Snow Leopard, but I think it will work in Lion. You need to have Java installed, which it's not by default in Lion. Since I'm not using Lion myself, I can't tell you how to do that.
    Download the Java/Mac version (1.0) of the application from JWatcher Downloads. You'll get a zip archive. Expand it. Now you have an application called "JWatcher_V1.0." This is only the installer. It won't run, because it has PowerPC-only version of the Java application stub.
    Select the line of text below in your browser and copy it to the clipboard:
    /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/MacOS
    In the Finder, select Go > Go to Folder... from the menu bar (this menu may be slightly different in Lion.) Paste the clipboard contents into the text box. You should now see a folder with two files in it, one of which is named "JavaApplicationStub." Leave that window open.
    Now right-click on the icon of JWatcher_V1.0 and select "Show Package Contents" from the contextual menu. A new Finder window opens. Open the folder called "MacOS". Inside that folder is a file also named "JWatcher_V1.0". Move it to the Trash. Drag the file JavaApplicationStub to where it was. Rename the file (it will be copied, not moved) JWatcher_V1.0. Close the Finder window.
    Now double-click the installer. It should launch. Install the application wherever you choose. You're not done yet.
    The installer creates a folder named, once again, "JWatcher_V1.0". Inside it is an application. That, too, is named "JWatcher_V1.0". Select it, and do exactly the same thing you did before with the installer: replace the binary inside with a copy of JavaApplicationStub.
    You should now be able to run it.

  • When I open a new tab I get the following error message: Firefox can't find the file at /C:/Users/Tanisha/AppData/Local/TNT2/2.0.0.1128/pinnedSearch.htm."

    I can still browse websites, but I want to know what is causing this error message.

    hello tanisha625, it looks like some program has overwritten the default new tab page. you can either install the [https://addons.mozilla.org/firefox/addon/searchreset/ searchreset addon] to get rid of the problem or manually reset the page that opens on each new tab.
    enter '''about:config''' into the firefox location bar (confirm the info message in case it shows up), search for the preference named '''browser.newtab.url''' and double-click & change its value to '''about:newtab'''.

  • TS2167 i'm getting an error message.. can't create the file "header.jpg." The disk may be damaged or full, or you may not have suuficient access priveleges.

    I need to publish to a local folder on my desk top and I am getting this error message.
    can’t create the file “header.jpg.” The disk may be damaged or full, or you may not have suuficient access priveleges.
    Please help... I need to copy to a disk... it was working fine until I attached a big project, I tried to delete the project, but still not workng.

    Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    3 - launch iWeb and try again.
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    OT

Maybe you are looking for

  • K9N platinum - AHCI for Intel x25 SSD

    Hello... I intend to set up an 80Gb Intel x25 SSD 2nd Gen (Win 7 - 64bit) on my system in a week or so its a  K9N platinum v1, apparently I need AHCI set on the SATA channel - looking through the BIOS setup (Rev1.8) I can't seam to find this option -

  • Unable to sign into iTunes store...java error

    Hi, when I try to sign in to my iTunes I get this error. java.lang.outofmemoryerror: java heap space I just bought an iMac and transferred all my iTunes files to this computer. I have authorized it and it is one of two computers currently authorized

  • Customizing the sort order of a field

    Hi, I would like to sort the order of a group on values within a field rather than in eg. ascending order eg. I would like to sort the group by values in the Status field, so if the Status values are 'Open', 'Closed', 'Unresolvable' then I would like

  • Cannot enter value in selection screen for Hierarchy variable.

    Hi All, I have a hierarchy variable on the selection screen for Org unit. When i execute the report via Bex or RSRT i am able to enter the value directly into the selection screen input field without going for F4 help and then selecting the value. Bu

  • Program for service order

    hi experts my requirement is to upload service order data from nonsap to sap using batch input recording of lsmw for that i need to write custom program please can give guide lines for developement regards raj