Very simple program

All i wanna do is create an object...but im having compilation errors.
import java.util.*;
public class AtypeName{
     public static void main(String args[]){
          ATypeName a = new ATypeName();
}the errors are
java:11: cannot resolve symbol
symbol : class ATypeName
location: class AtypeName
ATypeName a = new ATypeName();
.java:11: cannot resolve symbol
symbol : class ATypeName
location: class AtypeName
ATypeName a = new ATypeName();
^
2 errors
Process completed.

The class name is AtypeName, not ATypeName.
AtypeName a = new AtypeName();http://java.sun.com/developer/onlineTraining/new2java/programming/learn/

Similar Messages

  • 8.0 applicatio​n builder problem- very simple programs will not install on non LV machine

    Newbie at this...
    1.  Created a simple project (just math) in LV 8.0
    2.  Did the build
    3.  Built an installer but Deselected  RTE installer as I told my customer to download LV RTE 8.0
    4.  The installer put everything into a file folder called VOLUME... (?)
    5.  Copied VOLUME over to non LV machine that had LV 8.0 RTE downloaded and installed.
    6.  Ran ithe NI nstaller on non LV machine.  Ran Ok.
    7.  However,  no files were installed (checked the PROGRAMS directory).
    This is a REAL simple program.  Can anyone point me to some simple/stupid thing I did wrong?
    frustrated in San Diego....
    John

    John:
    Looking at all your steps, it seems like you are doing all the right things and in the right order too. Couple of things that you may try:
    1. Make sure that in your installer properties, you specify "ProgramsFileFolder" in the Source Files tab if you want your installer files to be  
        placed under "...\Programs\" (Please take a look at the attached screenshot)
    2. Try building an executable and make sure that you can run on the customer's computer (since it already has the LabVIEW Run Time Engine)
    Let me know what you find.
    Regards,
    Rudi N.
    Attachments:
    Installer.JPG ‏52 KB

  • Very simple Programming software for OS X Lion.

    I'm basically new to Mac and to OS X Lion, so be easy with me if my questions are rather simple than what i'm thinking. I recentely purchased a Macbook, switching from windows pc after many years of using it. My new Macbook pro came with OS X Lion and with several awesome software preinstalled, iLife etc... amount them was one called iWeb which is a very interesting software to build web site, back to the time when i was using windows, i was using dreamweaver to build amature web site, for members of my family and forth, with iWeb i realise that things are much eaiser, all i have to do is drag and drop, input my text, or resize windows and so on, i do not need to tap in any code as iWeb is doing that job for me. It's a very great app for amature. After using iWeb for a good while and really enjoy using it, i'm now wondering if there are the same kind of software to build really simple application for mac. Simple application such as memo notes, simple dairy with calendar inside, etc... i know about the Xcode, but that require me to tap in codes and more over Xcode is just too huge for me to finish learning all the featuers it has in no time, so no i don't want to use Xcode because i don't know how the codes for creating cocoa apps for OS X Lion.
    If you know any other programing softwares for mac which really doesn't require much of coding but instead work almost like dreamweaver or iWeb for web site building, please advice me here, it doesn't matter to me if it's free or shareware.
    Thanks in advance for your input and your time.

    Take a look at Automator.

  • Very simple program error (help)

    Dear group,
    Just wanted to get a number from sdtin and print it. The program shows a compiler error. Help.
    import java.io.*;
    class keys
         public static void main(String args[])
              int a,b;
              System.out.println("enter a number");
              try
                   a = System.in.read(b);
                   System.out.write(a);
              catch(IOException e){
    `               System.out.print("Sorry. can't print.");
    }

    error:
    symbol:cannot resolve sysbol
    location: class java.io.ImputStream
              a = System.in.read(b);but the same function works in this program.
    class keys{
      public static void main (String args[])
          byte name[] = new byte[100];
          int n_read = 0;
          System.out.println("What is your name?");
          try {
            n_read = System.in.read(name);
            System.out.print("Hello ");
            System.out.write(name,0,n_read);
          catch (IOException e) {
            System.out.print("Sorry.  can't catch your name.");
    }

  • Can't run very simple DOM parsing source on my machine - please help :(

    Hi Guys,
    I am trying to run the following very simple program on my machine to parse a very simple XML file.
    It just returns Document object NULL.
    Same code is working fine on another machine.
    Note: there is no silly mistake. i have valid xml file at valid place.
    Please help.
    import org.apache.xerces.parsers.*;
    import org.w3c.dom.*;
    import org.xml.sax.*;
    import java.io.*;
    class XML
         public static void main(String[] args)
              try{
                   String caseFile = "c:\\case-config\\config.xml";
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   factory.setValidating(true);
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   Document doc = builder.parse(caseFile);
                   System.out.println("\n\n----" + doc);
              }catch(Exception e)
                   e.printStackTrace();
    }

    You could also work with JDOM, which I find easier to use than regular DOM:
    import org.xml.sax.InputSource;
    import java.io.FileReader;
    import org.jdom.input.SAXBuilder;
    import org.jdom.Document;
    String caseFile = "c:/case-config/config.xml";
    InputSource inputSource = new InputSource(new FileReader(caseFile));
    SAXBuilder builder= new SAXBuilder();
    Document document = builder.build(inputSource);Just an alternate suggestion.

  • Very Simple C question - reading input parameters/flags... [SOLVED]

    This is an extremely simple question. Please forgive me for being a noob. I am writing an application in C (with GCC) called GAPE and need to be able to pass it parameters through a shell script (/usr/bin/gape) that can determine how it runs. To start with easy stuff, I want the end-user to be able to type "gape -V" to output the version of the program. How do I do that? I understand that I need to put the shell script in /usr/bin...where should I put the actual gcc-compiled gape application? Or do I even need a shell script? Can I just put the GAPE binary in /usr/bin and pass parameters to it directly? If so, how do I do that in C? Any help is greatly appreciated.
    Last edited by tony5429 (2008-03-10 12:00:21)

    include <stdio.h>
    main(int argc, char *argv[])
    int i;
    for(i = 1; i < argc; i++) //argc = the number of arguments
    printf("param nr %d: %s\n", i, argv[i]); // argv[i] contain the arguments, with 0 being the program name (anyone may correct me here)
    [jaqob@p238 c++-egna]$ ./a.out 1 2 3
    param nr 1: 1
    param nr 2: 2
    param nr 3: 3
    [jaqob@p238 c++-egna]$ ./a.out -h -V -zxvf
    param nr 1: -h
    param nr 2: -V
    param nr 3: -zxvf
    A very simple program that prints the parameters
    And yes, you can put the program in /usr/bin/ without a shellscript
    Last edited by JaQoB (2008-03-05 18:09:34)

  • Any ideas for a (fairly) simple program?

    Does anybody have any ideas for a fairly simple program that I could try to write (I am a fair programmer, but I'm not to creative)?

    You know, Java Game Programming for Dummies is actually a pretty good book (despite the "Dummies" part!) It is written in 1.0, but it has a "ponglet", card games, and several maze games. All the applets I've tried from them actually work (some typos in the book itself, but the CD is ok). Any of these could be "starter" code.
    Yahoo has a whole bunch of Java applet games. You could try to reproduce pieces of the games you see. (These are also interesting in the sense that you can immediately see what works in a game and what doesn't.)
    It is always fun to write little components. Cool buttons (write a nice little non-rectangular button that lights up or something), text boxes that look like digital displays, funny text labels (maybe with a weird font or with letters that jump all over the place when you mouse over them).. These don't take a whole lot of time to write, but write them well and they are very useful for your future games.
    Enjoy!
    :) jen

  • Very Simple Problem-- Need help in method selection process

    Hello,
    It's difficult to explain the background of the program I am making-- but I am stuck at a very simple problem, that I can only solve with a very long block of if statements:
    I have 3 possible numbers-- 1, 2, or 3.
    Imagine two numbers are already taken-- say 1 and 2. I want a variable to set itself to the number that's not taken (3).
    So, again: If two numbers were taken say 2 or 3-- I want the variable to be sent to the other one that isn't taken-- 1.
    Thank you for your help,
    Evan.

    Actually, I'll just tell you the context of the program-- here is what I have so far:
    This program is meant to simulate Monty Hall Problem:
    http://en.wikipedia.org/wiki/Monty_Hall_problem
    The program sets up an array of three possible values. Each one of those values represents a door with either a goat or a car behind it. It then randomly sets one of those values to 1 (in order to represent a car as per the Monty Hall problem), and 0's represent goats.
    The user, which is simulated by the program (does not involve actual interaction), chooses a door initially.
    The game show hosts then reveals a door that is not the users initial choice, but IS a goat ( an array value of 0).
    For example if the array was [0][0][1]
    The user could pick door one (array position 0). Which is a goat.
    The game show host then reveals a goat that is not the users choice-- which would be array position 1.
    After the game show host reveals the goat-- I want the user to always switch his decision to the only other remaining door that was not his first choice.
    Then I wanted the computer to test to see if his final choice is the one with a car. And to tally up the amount of times he got it right.
    --Sorry that was long winded:
    import TerminalIO.*;//imports TerminalIO package for system.out.println
    import java.util.*;//import java.util for random
    public class Monty_Problem
         int doors[]= {0,0,0};
         Random rand= new Random();
         double wins,totals=0;
         public void carAssignment()
              int car_door= rand.nextInt(3);
              doors[car_door]=1;
         public int judgesChoice(int judgeDoor, int initialChoice)
              if(judgeDoor != initialChoice && doors[judgeDoor]!=1)
                   return judgeDoor;
              else
                   return judgesChoice(rand.nextInt(3), initialChoice); //infinite loop right here that I cannot remedy.  I want the program to have the judge pick a location that is not occupied by a  '1' and is not the user's choice. 
         public void gamePlaySwitches()
              int initialChoice= rand.nextInt(3);
              int judgeDoor = 0;
              int secondChoice= 0;
              judgeDoor= judgesChoice(rand.nextInt(3), initialChoice);
              //This part is meant to have the user switch choices from his initial choice
                   // to the only other choice that hasn't been revealed by the judge. 
              while(secondChoice == initialChoice || secondChoice== judgeDoor)
                   secondChoice++;
              if(doors[secondChoice]==1)
                   wins++;
                   totals++;
              else
                   totals++;          
         public static void main(String [] args)//creates the main menu
              Monty_Problem a= new Monty_Problem();
              int games=0;
              while(games!=100)
                        a.carAssignment();
                        a.gamePlaySwitches();
                        games++;
              System.out.println(a.wins/a.totals);
    }Edited by: EvanD on Jan 11, 2008 4:17 PM

  • This is a very simple question,but I don't know.Please me.Thank you!

    I am a Chinese student in a university.I have a very simple question to ask.
    I have writed a EJB module,and I have deployed to Weblogic8.1 successfully.
    1.Now I want to write a client program.Is it necessary that the client program is packaged in the EJB package.For example ,the EJB package is Beans,is "package Beans " or "import Beans.*" necessary in my client program.
    2.If I only know the EJB interfaces,that means the EJB module is writed by other programer.I want to know how I can write the client program.How can I call EJB module's method writed by other programer.Could you give me a simple example?
    Thank you very much.

    I have writed a EJB module,and I have deployed to
    Weblogic8.1 successfully.:-)
    1.Now I want to write a client program.Is it
    necessary that the client program is packaged in the
    EJB package.For example ,the EJB package is Beans,is
    "package Beans " or "import Beans.*" necessary in my
    client program.You need not package your client with the EJB. It can be a JSP/servlet or a stand-alone application.
    2.If I only know the EJB interfaces,that means the
    EJB module is writed by other programer.I want to
    know how I can write the client program.How can I
    call EJB module's method writed by other
    programer.Could you give me a simple example?
    import java.util.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    import examples.*;
    class TestEJBHello {
        public static void main(String[] args) {
            Context context   = null;
            Object object     = null;
            // Hashtable for environment properties.
            Hashtable env = new Hashtable();
            env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            env.put(Context.PROVIDER_URL, "t3://localhost:7001");
            HelloHome home            = null;
            HelloWorld hello          = null;
            try {
                context     = new InitialContext(env);
                object      = context.lookup("HelloWorldTest");
                System.out.println(" JNDI Looked up >>> " +object);
                home        = (HelloHome)PortableRemoteObject.narrow(object, HelloHome.class);
                hello       = home.create();
                System.out.println(hello.hello());
            } catch(Exception e) {
                e.printStackTrace();
            } finally {
                close(context);        // Closes the initial context.
        private static void close(Context context) {
            try {
                context.close();
                System.out.println("*** Context closed. ***");
            } catch (NamingException namingException) {
                namingException.printStackTrace();
            } catch(Exception exception) {
                exception.printStackTrace();
    }Here's a sample client app code I use for a HelloWorld EJB. You need to have a EJB client JAR containing the home and remote interfaces in the classpath during compile time and runtime.
    x

  • PDF - Very Simple Request

    How can I move PDF files from my MacBook Pro to my iPad so that I can read them there? There seems to be no easy way to do this. I even purchased Pages, only to find out that you can't read PDF files in that program. This seems like a very simple thing to do but, apparently, it isn't. Can anyone help out here?

    I bought PDF Reader Pro for the iPhone/iPod Touch and it offers a way to put the app in a Wifi sharing mode. I then navigate to it with my Mac in Safari, nagivate to the displayed IP address on the iPod Touch and then click the upload button. They don't have a iPad version yet.
    Look for other apps that offer this simple way of PDF file transferring or check with the PDF Reader Pro developers.
    Remember - Each iPad app cannot share it's data space with other apps so if you use a PDF reader app I believe only that app can read the files...
    Sincerely,
    G.
    <Edited by Host>

  • HELP, most probably a very simple solution!

    I can compile the following file but I can't get it to run. I know something very simple is needed but I am still learning this java business and am currently brain dead. Please help as this is quite important for me! Any advice is much appreciated, thanks. It is basically meant to be a program to give co-ordinates in a JPanel etc... Please don't abuse me for not understanding!!! lol
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    //import com.borland.jbcl.layout.*;
    public class Picker extends JPanel
         String imageFile = "Images/knob.jpg";
         // Create JPanel and set the dimensions so that the crosshairs go in the right place
         Image img = Toolkit.getDefaultToolkit().getImage(imageFile);
         JPanel hSPickerPanel = new JPanel()
              public Dimension getPreferredSize(){return new Dimension(100, 100);}
              public Dimension getMaximumSize(){return getPreferredSize();}
              public Dimension getMinimumSize(){return getPreferredSize();}
              //PaintComponent method for this JPanel Component. Each component needs
              //its own so that each can be redrawn.
              public void paintComponent(Graphics g)
                   super.paintComponent(g);
                   //     Graphics2D g2D = (Graphics2D)g;
                   g.setClip(0, 0, getSize().width, getSize().height);
                   // g2D.drawImage(BC, null, 0, 0);
                   g.setXORMode(Color.WHITE);
                   //Problem.
                   // Draws the cross relating to the coordinates of the whole JPanel.
                   // Not hSPickerPanel. Sorted. 01/08/03. each panel wants to have its
                   //own paintComponent method.
                   g.drawImage(img, xCoord, yCoord,15,15,this);
                   // g.drawOval(xCoord, yCoord, 15, 15);
                   //g.fillOval(xCoord, yCoord, 15,15);
                   // g.drawLine(xCoord + 10 , yCoord,xCoord - 10 , yCoord);
                   // g.drawLine(xCoord, yCoord + 10, xCoord, yCoord - 10);
                   g.drawString(String.valueOf(xCoord) + ":" + String.valueOf(100 - yCoord), 54, 47);
         JLabel HueSatTitleLabel = new JLabel();
         JLabel hueSatLabel = new JLabel();
         int xCoord = 50;
         int yCoord = 50;
         String coordinates;
         String xString;
         String yString;
         GridBagLayout gridBagLayout1 = new GridBagLayout();
         JButton jButton1 = new JButton();
         public Picker()
              try
                   jbInit(); // calls the method below that adds the button to 'this'
              catch(Exception e)
                   e.printStackTrace();
         //dddddddddddddddddddddddddddddddddddddddddddddddddddddddd
         // BrtnsCtrstPckrPnl = new JPanel() creates JPanel.
         //     public void paintComponent(Graphics g)
         /*     super.paintComponent(g);
                   Graphics2D g2D = (Graphics2D)g;
                   g2D.setClip(0, 0, getSize().width, getSize().height);
                   // g2D.drawImage(BC, null, 0, 0);
                   g2D.setXORMode(Color.WHITE);
                   g2D.drawLine(xCoord - 10, yCoord, xCoord + 10, yCoord);
                   g2D.drawLine(xCoord, yCoord - 10, xCoord, yCoord + 10);
                   g2D.drawString(String.valueOf(xCoord) + ":" + String.valueOf(100 - yCoord), 54, 47);
         /*          super.paintComponent(g);
                   //     Graphics2D g2D = (Graphics2D)g;
                             g.setClip(0, 0, getSize().width, getSize().height);
                             // g2D.drawImage(BC, null, 0, 0);
                             g.setXORMode(Color.WHITE);
                             g.drawLine(xCoord + 10 , yCoord,xCoord - 10 , yCoord);
                             g.drawLine(xCoord, yCoord + 10, xCoord, yCoord - 10);
                             g.drawString(String.valueOf(xCoord) + ":" + String.valueOf(100 - yCoord), 54, 47);
         //ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
         private void jbInit() throws Exception
              this.setLayout(gridBagLayout1);
              hSPickerPanel.setBorder(BorderFactory.createEtchedBorder());
              HueSatTitleLabel.setBorder(BorderFactory.createEtchedBorder());
              HueSatTitleLabel.setText("Hue & Saturation");
              hueSatLabel.setBorder(BorderFactory.createEtchedBorder());
              xString = Integer.toString(xCoord);
              yString = Integer.toString(yCoord);
              coordinates = xString +" : "+ yString;
              hueSatLabel.setText(coordinates);
              hSPickerPanel.addMouseListener(new MouseAdapter()
                        public void mouseReleased(MouseEvent e)
                             xCoord = Math.max(Math.min(e.getX(), 100), 0);
                             yCoord = Math.max(Math.min(e.getY(), 100), 0);
                             displayCoordinates(xCoord,yCoord);
                             hSPickerPanel.repaint();
                        public void mousePressed(MouseEvent e)
                             xCoord = Math.max(Math.min(e.getX(), 100), 0);
                             yCoord = Math.max(Math.min(e.getY(), 100), 0);
                             displayCoordinates(xCoord,yCoord);
                             hSPickerPanel.repaint();
              hSPickerPanel.addMouseMotionListener(new MouseMotionAdapter()
                        public void mouseDragged(MouseEvent e)
                             xCoord = Math.max(Math.min(e.getX(), 100), 0);
                             yCoord = Math.max(Math.min(e.getY(), 100), 0);
                             displayCoordinates(xCoord,yCoord);
                             hSPickerPanel.repaint();
              //Add components to Back Panel (this)
              this.setMaximumSize(new Dimension(118, 165));
              this.setMinimumSize(new Dimension(118, 165));
              jButton1.setText("Reset");
              jButton1.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             jButton1_actionPerformed(e);
              this.add(hSPickerPanel, new GridBagConstraints(0, 1, 2, 1, 1.0, 1.0
                   ,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 3, 0, 0), 101, 102));
              this.add(HueSatTitleLabel, new GridBagConstraints(0, 0, 2, 1, 0.0, 0.0
                   ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(2, 3, 0, 0), 30, 1));
              this.add(hueSatLabel, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0
                   ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 3, 5, 0), 4, 3));
              this.add(jButton1, new GridBagConstraints(1, 2, 1, 1, 0.0, 0.0
                   ,GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 3, 0));
         public void displayCoordinates(int x, int y)
              xString = Integer.toString(x);
              yString = Integer.toString(y);
              coordinates = xString +" : "+ yString;
              hueSatLabel.setText(coordinates);
         void jButton1_actionPerformed(ActionEvent e)
              xCoord = 50;
              yCoord = 50;
              displayCoordinates(xCoord, yCoord);
              hSPickerPanel.repaint();

    Use a URL object to locate your image instead of a string. To do that, import the java.net.* library and create a URL object for your image:
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    //import com.borland.jbcl.layout.*;
    import java.net.*;
    public class Picker extends JPanel
        //String imageFile = "Images/knob.jpg";
        Class cl = ((Picker) this).getClass();
        URL imageURL=cl.getResource("Images/knob.jpg");
        // Create JPanel and set the dimensions so that the crosshairs go in the right place
        Image img = Toolkit.getDefaultToolkit().getImage(imageURL);
        JPanel hSPickerPanel = new JPanel()
    }To view your Panel, you have to add a "main" method and create a frame to display your panel:
    public class Picker extends JPanel
        void jButton1_actionPerformed(ActionEvent e)
        public static void main(String[] args)
         Picker p=new Picker();
         JFrame frame=new JFrame("Picker Example");
         frame.getContentPane().add(p);
         frame.setVisible(true);
         frame.pack();
    }You can see your panel by:
    - compiling: javac Picker.java
    - and running your application with the "main" method: java Picker

  • How to create a simple program

    I downloaded JBuilder Foundation and it looks very complicated. I thought I could start a new project like you can in C++ Builder and choose "console application" and it would bring you to the code window with nothing in it or perhaps just a header file or two. But when I create a new project it brings me to a code window with a whole bunch of complicated code already there. And I don't understand any of it. Really what I want to be able to do is start a new project and just type this into the code window:
    public class Welcome1 {
    public static void main(String args[ ])
    System.out.println("Welcome to Java!");
    And then click Run and it outputs:
    Welcome to Java!
    But I don't know how to do that in this JBuilder. I may need to switch to another IDE or maybe just download a text editor and the Java SDK. If you can tell me what I should do that would be good. Thanks

    download a text editor and the Java SDK.I'd recommend that. It's easy to learn an IDE afterwards, but many people are incapable of writing and compiling code without an IDE because they don't know how javac works etc.
    For simple programs a text editor is more than enough, then once you get your head around the classpath, you're home free!

  • What is wrong with my simple program!

    Hello everybody,
    I have a very simple Java program, but it could not run as i expect.
    Could anybody help me firgure it out ?
    Thank you very much in advance
    still_learn
    Here is my program:
    import java.io.*;
    public class Practice
    static InputStreamReader reader = new
    InputStreamReader(System.in);
    static BufferedReader keyboard = new BufferedReader
    (reader);
    public static void main(String[] args) throws
    IOException
    String response;
    do{
         System.out.println("");
         for(int i=0; i<20; i++)
         System.out.println("George Michael");
         do{
         System.out.print("Do you want to continue?
    (y/n) ");
         response = keyboard.readLine();
         }while((response != "y")&&(response != "n"));
              }while(response == "y");
    }// end of main
    }// end of class

    You didn't say what you expected, so debugging becomes very difficult. However I do notice at the end of the code that you compare two strings using == and !=. This does not work. If you want to see if two strings have the same content, use the equals() method of the String class. In your case:}while((!response.equals("y"))&&(!response.equals("n")));
    }while(response.equals("y");

  • Video stutter in very simple video project

    My very simple 20 minute travel video, made in iMovie 4.0.1, with less than 10 transitions and extracted audio clips, freezes, stutters, and is impossible to edit. It's my first project in this version of iMovie. I got the program, along with Quicktime 7.11, when I upgraded to OSX 10.3.9.
    I've posted before, and added RAM as recommended. Now my computer meets the specs for iMovie 4. It's used for very little else. No external hard drive, no bookmarks, and very few audio clips and transitions. Also tried downloading the updated Quicktime 7.13. Same problem.
    When I remove audio clips, stuttering is almost all gone.
    I would think this program would be able to handle such a simple project.
    Any advice you might have would be appreciated. Should I go back to earlier versions of the programs? Operating system? If so, how do I do that?

    Using old hardware with iMovie is a crapshoot, especially with QT 7. On my G4, I had to downgrade to QT 6.5.2 as someone else suggested. I also ran into the problem you did in trying to downgrade. Here is the solution that got me by:
    1. Download Pacifist (http://versiontracker.com/dyn/moreinfo/macosx/12743). This will allow you to bypass the downgrade error you received in running the Reinstaller.
    2. First run the QT 7.0.1 Reinstaller (this is where Pacifist came in handy).
    NOTE: It may be hard to finder this Reinstaller. If you have problems, first try step 3 below using Pacifist, but if that does not work, I can find a way to get you the 7.0.1 Reinstaller.
    3. Next run the QT 6.5.2 Reinstaller.
    (http://www.apple.com/support/downloads/quicktime652reinstallerforquicktime701.ht ml)
    That should allow your project to run smoothly again. Our machines video cards just don't do well with QT 7.
    NOTE: Some people don't have the problem we had. I believe our problems are made worse by incremental upgrades of QT.
    I hope this helps!

  • Can anyone answer a very simple question for me ive heard the apple was giving a free iphone 4 or 4s bumper away is there any truth to that?

    can anyone answer a very simple question for me ive heard the apple was giving away iphone 4 or 4s bumpers is there any truth to that?

    Not any more, no. There was a free bumper program back when the iPhone 4 originally came out. It has long since expired.

Maybe you are looking for

  • Java.sql.SQLException: ORA-00979: not a GROUP BY expression in a query

    I am getting java.sql.SQLException: ORA-00979: not a GROUP BY expression when I run select count(*) from ( select count(rec_no) AS REC_NO_NUM,created_by AS CREATED_BY,to_char(created_dt,'Mon YYYY') AS CREATED_DT,to_date(to_char(created_dt,'Mon YYYY')

  • Regarding im52 transaction

    Dear PS consultants, While processing the transaction IM52 i am getting an error message as NO MEASURES FOUND. Can any one help me out, where i had done misatake. I created project and wbs elements and activated availbility control and budgeted. and

  • IPhoto wont load in Iweb

    I am trying to make a website and when I tried to add the pictures Iphoto wont load just the message LOADING IPHOTO IMAGES, I know I have over 7,000 pictures so I waited like hours to load but nothing happen... Please help

  • Create folder

    Hi all, I need to create folder on windows XP with function throw R/3. Is there any function that can do it?

  • Error DIsp+work process stoped

    Dear All, While i m starting my ecc6.0 server there is the message the disp+work process stoped . what would be the problem please . how to trubleshoot when disp+work process has been stoped . deepak