Help find a small Java Opensource project

Hi
For an assignment in university I need to improve (i.e fix bugs and profiling) an existing java application. The application must be an opensource one and should contain 1000 - 1500 source lines of code. Please help me to find a suitable project.
Cheers
Lahiru

I doubt you'll find much though that's that small. 1500 LOC is nothing, I doubt anyone would release his creation to the world until it was larger than that (unless maybe it were very trivial and complete by then).

Similar Messages

  • Help is needed for java mp3 project!!

    I'm doing a java applet which hav the function of playing mp3 files as for my case is .wav file.. I can start to play by using the audio clip object file but how about jumping to next song by pressing the fast forwad button and back track the previous ones by pressing the backward button.. Does we need to use a loop or method? Please give me some advise Plz.... Thnks..

    Hi, I've just done a music playing app, an I used JMF,
    http://java.sun.com/products/java-media/jmf/index.jsp
    Give that a go.

  • Where to find People to Join Game Project?

    Where is a good place to go to solicit for people to help
    with a small free game project?
    I want to do a simple game and im mostly wondering how
    to meet amateur gamers that do artwork for games?
    I know about Sourceforge but since there are 100s (or 1000s?)
    of projects (not always gaming) it seems like smaller
    projects would get lost in the mix.
    Anyway, I was wondering if anyone could point the way to any
    good communities or forums for java game designers?

    http://community.java.net/projects/

  • Problem with small java program

    need some help with a small Java assignment I am doing.
    When I compile the code i get 2 errors they are
    invalid method declaration: return type required
    public CreateRandomFile() LINE 87
    ^
    cannot resolve symbol
    new CreateRandomFile(); LINE 112
    ^
    Any help is greatly appreciated
    **********CODE BEGINS HERE ***********************
    import javax.swing.*;
    import java.io.*;
    import BreezySwing.*;
    public class RandomTest extends GBFrame
    JLabel accLabel = addLabel("Account Number",1,1,1,1);
    IntegerField accField = addIntegerField(0,1,2,1,1);
    JLabel firstLabel = addLabel("First Name",2,1,1,1);
    JTextField firstField = addTextField("",2,2,1,1);
    JLabel lastLabel = addLabel("Last Name",3,1,1,1);
    JTextField lastField = addTextField("",3,2,1,1);
    JTextArea resultArea = addTextArea("",4,1,2,3);
    JButton acceptButton = addButton("Accept",7,1,2,1);
    JButton accessButton = addButton("Access",8,1,2,1);
    JButton clearButton = addButton("Clear",9,1,2,1);
    private RandomAccessFile file;
    public void buttonClicked(JButton buttonObj)
    if (buttonObj == acceptButton)
    else
    if (buttonObj == accessButton)
    else
    accField.setNumber(0);
    resultArea.setText("");
    firstField.setText("");
    lastField.setText("");
    private void openFile()
    FileOutputStream foStream = new FileOutputStream ("acc.dat");
    ObjectOutputStream doStream = new ObjectOutputStream (foStream);
    if ("acc.dat" == null || "acc.dat".equals(""))
    System.out.println("Invalid File Name");
    else
    try{
    file = new RandomAccessFile ("acc.dat","rw");
    catch (IOException e)
    System.out.println("File does not exist or Invalid File Name");
    private Record getRecord()
    Record record = new Record();
    int accountNumber;
    try{
    accountNumber = Integer.parseInt(accField.getText());
    if (accountNumber <1 || accountNumber >100)
    System.out.println("Account doesn't exist");
    return null;
    file.seek((accountNumber -1)*Record.size());
    record.read(file);
    catch (NumberFormatException nfe)
    System.out.println("Account does not exist");
    System.out.println("Invalid Number Format");
    catch (IOException io)
    System.out.println("Error reading file");
    return record;
    public createRandomFile() // <----- ERROR HERE
    Record blank = new Record();
    openFile();
    try{
    file = new RandomAccessFile("acc.dat", "rw");
    for (int i=0;i<100;i++)
    blank.write(file);
    System.exit(0);
    catch (IOException e )
    System.out.println("File doesn't exist");
    System.out.println("Invalid File Name");
    System.exit(1);
    public static void main(String args[])
    JFrame tpo = new RandomTest();
    tpo.setTitle("Assignment 1");
    tpo.setSize(200,330);
    tpo.setVisible(true);
    new createRandomFile(); // <--- ERROR HERE
    }

    I changed the things you suggested by have a new error of
    cannot resolve symbol
    symbol : method createRandomFile ()
    location: class javax.swing.JFrame
    tpo.createRandomFile();
    ^
    **************new code here***************************
    import javax.swing.*;
    import java.io.*;
    import BreezySwing.*;
    public class RandomTest extends GBFrame
         JLabel accLabel = addLabel("Account Number",1,1,1,1);
         IntegerField accField = addIntegerField(0,1,2,1,1);
         JLabel firstLabel = addLabel("First Name",2,1,1,1);
         JTextField firstField = addTextField("",2,2,1,1);
         JLabel lastLabel = addLabel("Last Name",3,1,1,1);
         JTextField lastField = addTextField("",3,2,1,1);
    JTextArea resultArea = addTextArea("",4,1,2,3);
    JButton acceptButton = addButton("Accept",7,1,2,1);
    JButton accessButton = addButton("Access",8,1,2,1);
         JButton clearButton = addButton("Clear",9,1,2,1);
         private RandomAccessFile file;
    public void buttonClicked(JButton buttonObj)
         if (buttonObj == acceptButton)
         else
         if (buttonObj == accessButton)
         else
         accField.setNumber(0);
         resultArea.setText("");
         firstField.setText("");
         lastField.setText("");
    private void openFile()
         FileOutputStream foStream = new FileOutputStream ("acc.dat");
         ObjectOutputStream doStream = new ObjectOutputStream (foStream);
         if ("acc.dat" == null || "acc.dat".equals(""))
         System.out.println("Invalid File Name");
         else
         try{
              file = new RandomAccessFile ("acc.dat","rw");
         catch (IOException e)
              System.out.println("File does not exist or Invalid File Name");
    private Record getRecord()
         Record record = new Record();
         int accountNumber;
         try{
              accountNumber = Integer.parseInt(accField.getText());
         if (accountNumber <1 || accountNumber >100)
              System.out.println("Account doesn't exist");
              return null;
         file.seek((accountNumber -1)*Record.size());
         record.read(file);
         catch (NumberFormatException nfe)
         System.out.println("Account does not exist");
         System.out.println("Invalid Number Format");
         catch (IOException io)
              System.out.println("Error reading file");
    return record;
    public void createRandomFile()
    Record blank = new Record();
    openFile();
    try{
         file = new RandomAccessFile("acc.dat", "rw");
         for (int i=0;i<100;i++)
         blank.write(file);
         System.exit(0);
    catch (IOException e )
         System.out.println("File doesn't exist");
         System.out.println("Invalid File Name");
         System.exit(1);     
    public static void main(String args[])
    JFrame tpo = new RandomTest();
    tpo.setTitle("Assignment 1");
    tpo.setSize(200,330);
    tpo.setVisible(true);
    tpo.createRandomFile();
    }     

  • HT201070 Since my last update RAW - Files from Nikon D800 are not shown correctly in the Finder as small prewiev. Can anybody help ?

    Since my last update  to 10.8.4 RAW - Files from Nikon D800 are not shown correctly in the Finder as small prewiev. Can anybody help ?

    update 10.8.5 solved this problem. Thankyou anyway.

  • Where can I find a JSF 2.0 Opensource Project?

    I have searched GoogleCode and SourceForge and found few JSF2.0 opensource projects, some are JSP and other framework or JSF 1.something.
    Any suggestions as to any good JSF2.0 projects out there currently in development? My interests are social networks, CMS, and ERPs. But I'm open to other things too.
    Thanks,
    Bruno Pierri Galvao

    BrunoPierriGalvao wrote:
    I have searched GoogleCode and SourceForge and found few JSF2.0 opensource projects, some are JSP and other framework or JSF 1.something.
    Any suggestions as to any good JSF2.0 projects out there currently in development? My interests are social networks, CMS, and ERPs. But I'm open to other things too.You're probably better off using other technology, since word on the street is that Java is in decline. [Some say,|http://forums.sun.com/thread.jspa?messageID=10965041] that as a language, it's just about deprecated.

  • Need help in writing a small java code

    Hi,
    I have a small requirement where I need write a small java code. I am thinking of using array. Please suggest if you know the solution:
    1. Need to compare user logon id is preset in the lookup table or not.
    2. If user id present in the lookup then send type "A" mail
    3. If user id in not present in the lookup then send type "B" email.
    Please suggest.
    Thanks,
    Kalpana.

    use this code . you have to pass userlogin and lookup name
    Public String GetEmail(String UserLogin,String lookupcode)
    String email;
    try{
    tcLookupOperationIntf lookupIntf = Platform.getService(tcLookupOperationIntf.class);
    HashMap<String, String> lookupValues = getLookupHashMap(lookupIntf, lookupCode);
    String found = lookupValues.get(UserLogin);
    if (found!=null) email= "EMAIL A";
    else
    email= "EMAIL B";
    }catch(Exception e){}
    return email;
    private HashMap<String, String> getLookupHashMap(tcLookupOperationsIntf lookupOperationsIntf, String lookupCode)throws tcAPIException,tcInvalidLookupException,tcColumnNotFoundException {
    HashMap<String, String> lookupMap = new HashMap<String, String>();
              tcResultSet resultLookupHashMap = lookupOperationsIntf
                        .getLookupValues(lookupCode);
              int countResultLookupHashMap = resultLookupHashMap.getRowCount();
    if (countResultLookupHashMap > 0) {
                   for (int i = 0; i < countResultLookupHashMap; i++) {
                        resultLookupHashMap.goToRow(i);
                        lookupMap.put(resultLookupHashMap..getStringValue("Lookup Definition.Lookup Code Information.Code Key"),
    resultLookupHashMap.getStringValue("Lookup Definition.Lookup Code Information.Decode"));
    return lookupMap;
    }

  • Help with Java programming project

    Hi,
    I need help in writing this Java program. The purpose of this program is to read a variable-length stream of 0, 1 characters from an input text file (call it input.txt) one character at a time, and generate the corresponding B8ZS output stream consisting of the +, - , and 0 characters (with appropriate substitutions) one-character-at-a-time into a text file (called output.txt).
    The program must use a class called AMIConverter with an object called AMI . Class AMIConverter must have a method called convert which converts an individual input character 0 or 1 into the appropriate character 0 or + or - of AMI.
    It first copy the line to file output.txt. Then read the line one character at a time and pass only valid characters (0 or 1) to AMI.convert, which assumes only valid characters. The first 1 in each new 'Example' should be converted to a +.
    This is what is read in, but this is just a test case.
    0101<1000
    1100a1000b00
    1201g101
    should now produce two lines of output for each 'Example', as shown below:
    This should be the output of the output.txt file
    Example 1
    in :0101<1000
    out:0+0-+000
    Example 2
    in :1100a1000b00
    out:+-00+00000
    Example 3
    in :1201g101
    out:+0-+0-
    To elaborate more, only 1 and 0 are passed to "convert" method. All others are ignored. 0 become 0 and 1 become either + or - and the first "1" in each new example should be a +.
    This is what I have so far. So far I am not able to get the "in" part, the characters (e.g. : 0101<1000 ) out to the output.txt file. I am only able to get the "out" part. And I also can't get it to display a + for the first "1" in each new examples.
    import java.io.*;
    public class AMIConverter
         public static void main (String [] args) throws IOException
              AMI ami = new AMI();
              try
                   int ch = ' ';
                   int lineNum = 1;
         int THE_CHAR_0 = '0';
         int THE_CHAR_1 = '1';
                   BufferedReader infile = new BufferedReader(new FileReader("input.txt"));
         PrintWriter outfile = new PrintWriter("output.txt");
         outfile.write("Example " + lineNum);//prints Example 1
         outfile.println();
         outfile.write("in :");
    outfile.println();
    outfile.write("out:");
         while ((ch = infile.read()) != -1)
         if (ch == '\r' || ch == '\n')
              lineNum++;
              outfile.println();
              outfile.println();
              outfile.write("Example " + lineNum);
              outfile.println();
              outfile.write("in :");
              outfile.println();
              outfile.write("out:");
         else
         if (ch == THE_CHAR_0)
              int output = ami.convert(ch);
              outfile.write(output);
         else     
         if (ch == THE_CHAR_1)
              int output = ami.convert(ch);
              outfile.write(output);          
    }//end while
         infile.close();
         outfile.close();
         }catch (IOException ex) {}
    }//main method
    }//class AMIConverter
    This is my AMI class
    import java.io.*;
    public class AMI
         int THE_CHAR_0 = '0';
    int THE_CHAR_1 = '1';
    int total = '+';
    int minus = '-';
    int count = 0;
    public int convert(int ch)
         try
              PrintWriter outfile = new PrintWriter("output.txt");
              if (ch == THE_CHAR_0)
         return ch;
         else
         if (ch == THE_CHAR_1)
         count++;
         if (count%2 == 1)
              ch = total;
              return (ch);
         else
                             ch = minus;     
                             return (ch);      
    }catch (FileNotFoundException e) {}      
         return ch;
    }//method convert
    }//class AMI
    Any help would be appreicated.
    Thanks!

    Hi,
    I need help in writing this Java program. The purpose of this program is to read a variable-length stream of 0, 1 characters from an input text file (call it input.txt) one character at a time, and generate the corresponding B8ZS output stream consisting of the +, - , and 0 characters (with appropriate substitutions) one-character-at-a-time into a text file (called output.txt).
    The program must use a class called AMIConverter with an object called AMI . Class AMIConverter must have a method called convert which converts an individual input character 0 or 1 into the appropriate character 0 or + or - of AMI.
    It first copy the line to file output.txt. Then read the line one character at a time and pass only valid characters (0 or 1) to AMI.convert, which assumes only valid characters. The first 1 in each new 'Example' should be converted to a +.
    This is what is read in, but this is just a test case.
    0101<1000
    1100a1000b00
    1201g101
    should now produce two lines of output for each 'Example', as shown below:
    This should be the output of the output.txt file
    Example 1
    in :0101<1000
    out:0+0-+000
    Example 2
    in :1100a1000b00
    out:+-00+00000
    Example 3
    in :1201g101
    out:+0-+0-
    To elaborate more, only 1 and 0 are passed to "convert" method. All others are ignored. 0 become 0 and 1 become either + or - and the first "1" in each new example should be a +.
    This is what I have so far. So far I am not able to get the "in" part, the characters (e.g. : 0101<1000 ) out to the output.txt file. I am only able to get the "out" part. And I also can't get it to display a + for the first "1" in each new examples.
    import java.io.*;
    public class AMIConverter
    public static void main (String [] args) throws IOException
    AMI ami = new AMI();
    try
    int ch = ' ';
    int lineNum = 1;
    int THE_CHAR_0 = '0';
    int THE_CHAR_1 = '1';
    BufferedReader infile = new BufferedReader(new FileReader("input.txt"));
    PrintWriter outfile = new PrintWriter("output.txt");
    outfile.write("Example " + lineNum);//prints Example 1
    outfile.println();
    outfile.write("in :");
    outfile.println();
    outfile.write("out:");
    while ((ch = infile.read()) != -1)
    if (ch == '\r' || ch == '\n')
    lineNum++;
    outfile.println();
    outfile.println();
    outfile.write("Example " + lineNum);
    outfile.println();
    outfile.write("in :");
    outfile.println();
    outfile.write("out:");
    else
    if (ch == THE_CHAR_0)
    int output = ami.convert(ch);
    outfile.write(output);
    else
    if (ch == THE_CHAR_1)
    int output = ami.convert(ch);
    outfile.write(output);
    }//end while
    infile.close();
    outfile.close();
    }catch (IOException ex) {}
    }//main method
    }//class AMIConverterThis is my AMI class
    import java.io.*;
    public class AMI
    int THE_CHAR_0 = '0';
    int THE_CHAR_1 = '1';
    int total = '+';
    int minus = '-';
    int count = 0;
    public int convert(int ch)
    try
    PrintWriter outfile = new PrintWriter("output.txt");
    if (ch == THE_CHAR_0)
    return ch;
    else
    if (ch == THE_CHAR_1)
    count++;
    if (count%2 == 1)
    ch = total;
    return (ch);
    else
    ch = minus;
    return (ch);
    }catch (FileNotFoundException e) {}
    return ch;
    }//method convert
    }//class AMIAny help would be appreicated.
    Thanks!

  • Wondering if someone could help a beginner out with a project thru AIM IMs

    my screen name is Ohshtdude and I have a very basic java project due in a few hours, I have a good portion of it done I just have a few basic questions(dont know too much about java, been studying it for a week or two now), if someone can IM me and help me out a bit it would be very much appreciated, thank you

    Chris373 wrote:
    i have the first part done (asking the user to type in a sentence and stopping the program if they type stop), Perhaps not. An if block will only run once (if at all), while it sounds like you need something that will repeat until the user types "stop". A loop might work better here.
    and i'm aware that I should probably declare a string for the sentence input, You've already got one, ans.
    but the part I dont know how to do is how to get the program to read through the characters and count the same consecutive letters. Figure out how you'd solve this on paper, the exact steps you'd use, then break these steps down into smaller steps, and keep breaking until you're at very primitive steps, and finally, then try to code this into Java. You'll want to be online and looking at the String API as it will have some methods that you'll need, and you can find ithere: [http://java.sun.com/javase/6/docs/api/java/lang/String.html]
    i'm just asking for someone to help walk me through this.A walk-through may be still asking a bit too much. Some nudges hopefully in a positive direction may be forthcoming though.

  • Can I use AdvancedDatagrid in an opensource project?

    I have a student Flex Builder education license. Can I use
    AdvancedDatagrid in an opensource project?

    I am new to Swing, and I would like to know, if is
    possible create a application using Swing as view tier
    in a J2EE(EJB) project? Yes, it is entirely possible, they are usually called Rich Clients (as in functionality) and may or may not use RMI/EJB. They typically also include the Controller (from MVC pattern) in the Client. The EJB represent the model, remember that the MVC is a Client Server Pattern, not an J2EE pattern.
    Did anybody create one yet?Yes, the idea is not uncommon, you can read a more here:
    http://www.google.co.uk/search?hl=en&ie=ISO-8859-1&q=Rich+Swing+Java+Client&btnG=Google+Search&meta=
    How many J2EE projects do you know which Swing is used
    as view tier? Using Swing is so much more complicate
    than a ordinary output in HTML? No, just different. Instead of doing each action in your Swing App, use the normal EJB method.
    Is there a open source project uses this approach?Probably, checkout the list of Google links above.
    Here is a sun tutorial, that introduces the principals.
    http://java.sun.com/features/2002/03/whatdev.html
    I don't want to use M$
    Visual Basic anymore! Please, help me! Good for you :-)

  • Pls Help me run bank java application

    hi i am having a error running this banking application "Bank_Application_System"
    the application is a banking system where customers can withdraw and deposit money and other functions. I downloaded it from [DOWNLOADED BANK JAVA APP|http://www.fullinterview.com/final-year-projects/article/bank_application_system-java-engineering-project-download-15509.html] But when i run it in netbeans it comes up with a error in the class Display2 saying there is a problem with "ResultsModel model;" saying it cannot find symbol also "import java.io.*;" says it is a unused import. Can somone help me pls
    package bankapplication2;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.io.*;
    public class Display2 extends JFrame //implements ActionListener
        private JLabel jlabel1;
        private JLabel jlabel2;
        private JLabel jlabel3;
        private JLabel jlabel4;
        private JLabel jlabel5;
        private JTextField NAME;
        private JTextField ACC;
        private JTextField DATE;
        private JTextField ADD;
        private JTextField AGE;
        private JTextField BALANCE;
        private JButton jbutton;
        private JPanel jpanel1;
        private JPanel jpanel2;
        private JPanel jpanel3;
        JLabel command=new JLabel();
        JScrollPane resultsPane;
        Connection connection;
        Statement statement;
        ResultsModel model;
    // more code and methods pls see link for fullcode
    void displaydeposit(String s,int i)
            String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
            String url = "jdbc:odbc:BankDatabase";
            setBounds(100,100,480,120);
            setResizable(false);
            setDefaultCloseOperation(DISPOSE_ON_CLOSE);
            JButton OK = new JButton("OK");
            JLabel lable=new JLabel("Customer Database");
            lable.setToolTipText("Customer Database");
            lable.setFont(new Font("SansSerif",Font.BOLD,18));
            JPanel lpanel=new JPanel();
            lable.setForeground(Color.red);
            lpanel.setBackground(Color.orange);
            lpanel.add(lable,"Center");
            lpanel.setToolTipText("Customer Database");
           Container contentPane=getContentPane();
           contentPane.add(lpanel,"North");
           getContentPane().add(OK,BorderLayout.SOUTH);
           try
                Class.forName(driver);
                connection=DriverManager.getConnection(url);
                statement=connection.createStatement();
                model=new ResultsModel();
                JTable table=new JTable(model);
                //table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                resultsPane=new JScrollPane(table);
                getContentPane().add(resultsPane,BorderLayout.CENTER);
                if(i==1)   
                model.setResultSet(statement.executeQuery("SELECT * from DepositInfo WHERE Account_Num = '"+s+"'"));
                else if(i==2)
                model.setResultSet(statement.executeQuery("SELECT * from WithdrawInfo WHERE Account_Num = '"+s+"'"));   
                OK.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent e)
                        MainMenu mm = new MainMenu();
                        mm.menu();
                        setVisible(false);
            catch(ClassNotFoundException cnf)
                System.out.println(cnf);
            catch(SQLException sql)
                System.out.println(sql);
            pack();
            setVisible(true);
        /*private JMenuItem makeMenuItem(String name)
            JMenuItem m=new JMenuItem(name);
            m.addActionListener(this);
            return m;
        public void actionPerformed(ActionEvent evt)
              String command=evt.getActionCommand();
              if(command.equals("OK"))
                  setVisible(false);
                    MainMenu mm=new MainMenu();
                    mm.menu();
    }

    this is the error message when i run the application
    init:
    deps-clean:
    Created dir: C:\Users\Documents\NetBeansProjects\BankApplication2\build
    Updating property file: C:\Users\Documents\NetBeansProjects\BankApplication2\build\built-clean.properties
    Deleting directory C:\Users\Documents\NetBeansProjects\BankApplication2\build
    clean:
    init:
    deps-jar:
    Created dir: C:\Users\\Documents\NetBeansProjects\BankApplication2\build
    Updating property file: C:\Users\Documents\NetBeansProjects\BankApplication2\build\built-jar.properties
    Created dir: C:\Users\Documents\NetBeansProjects\BankApplication2\build\classes
    Created dir: C:\Users\Documents\NetBeansProjects\BankApplication2\build\empty
    Compiling 8 source files to C:\Users\Documents\NetBeansProjects\BankApplication2\build\classes
    C:\Users\arinze\Documents\NetBeansProjects\BankApplication2\src\bankapplication2\Display2.java:35: cannot find symbol
    symbol  : class ResultsModel
    location: class bankapplication2.Display2
        ResultsModel model;
    C:\Users\arinze\Documents\NetBeansProjects\BankApplication2\src\bankapplication2\Display2.java:201: cannot find symbol
    symbol  : class ResultsModel
    location: class bankapplication2.Display2
                model=new ResultsModel();
    2 errors
    C:\Users\Documents\NetBeansProjects\BankApplication2\nbproject\build-impl.xml:413: The following error occurred while executing this line:
    C:\Users\Documents\NetBeansProjects\BankApplication2\nbproject\build-impl.xml:199: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 2 seconds)

  • How to find next number range for project definition in tcode CJ20N

    Hai Experts,
          Please help me 'How to find next number range for project definition in tcode "CJ20N". I was trying in function module NUMBER_GET_NEXT. Is it right function module? If its right what input i need to give for this tcode and for the field project definition?
    Note: I searched in forum before posting, but couldn't find the solution.
    Thanks
    Regards,
    Prabu S.

    Hi,
    For project defination internal number is assigned by system.
    When you saves's project then system allocate one number to project defination, you can view it,
    SE11 >>> table  PROJ >> Click on contents >>> execute,
    here you will get your project defination & number is assigned to project defination.
    kapil

  • HELP! Getting a 4:3 project from a 16:9 sequence back to 4:3 sequence!

    So here's the dilemma,
    I'm helping another user with a video project. The user created a whole movie out of 4:3 stills and an audio file, but arranged them in a 1280x720 (720p30) sequence. Now, of course, the images display with pillarboxing on both sides.
    The goal: *Get this already edited sequence back to 4:3 dimensions without pillarboxing from the 16:9 sequence, without having to re-edit it. How do we go about doing this? We would like the final sequence to be DV-NTSC*

    Thanks, but I tried that at first before posting here. The problem is, when I remove attributes it puts the image back to original size, scaling it up so large that I can't even see it well in the canvas. Then, Final Cut won't let me scale it down small enough to see the whole original image.
    Tom Wolsky on the FCE forum suggested this:
    Make a new sequence that's DV 4:3 and copy and paste the content from the HD sequence to the DV sequence. Depending on the size of the still images you may need to rescale them in FCE, but this should give you cleaner results than nesting the HD sequence.
    I will try it tonight and get back telling how it worked.

  • Need help with a small application

    Hi all, I please need help with a small application that I need to do for a homework assignment.
    Here is what I need to do:
    "Write an application that creates a frame with one button.
    Every time the button is clicked, the button must be changed
    to a random color."
    I already coded a part of the application, but I don't know what to do further.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ColourButton extends JFrame {
         JButton button = new JButton("Change Colour");
         public ColourButton() {
              super ("Colour Button");
              setSize(250, 150);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add(button);
              add(panel);
              setVisible(true);
         public static void main(String[] args) {
              ColourButton cb = new ColourButton();
    }The thing is I'm not sure what Event Listener I have to implement and use as well as how to get the button to change to a random color everytime the button is clicked.
    Can anyone please help me with this.
    Thanks.

    The listener:
    Read this: [http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]
    The random color:
    [Google this|http://www.google.com/search?q=color+random+java]

  • How can i get "CRM JAVA CUSTOMER PROJECT 5.0"

    Guys... how can i download the "CRM JAVA CUSTOMER PROJECT 5.0" package

    Hello Christopher,
    We are having difficulties in finding "CRM JAVA CUSTOMER PROJECT 5.0" too.
    Could you please tell how to re-create the Software Component association?
    Thanks and Regards,
    Reena

Maybe you are looking for