Plesae help on Arraylist import

Hi all
jcreator is giving me an error when i import the following package:
import java.util.ArrayList;
I use the above package at university on xemacs. Does jcreator have a different name for importing arraylists???
Here is my code:
import java.util.ArrayList;
public class ItemList
private ArrayList list;
public ItemList()
{list = new ArrayList();
public int size()
int i = 0;
int listSize = list.size();
while (i<list.size())
String t = (String)list.get(0);
System.out.println(t);
i ++;
return i;
public String get(int index)
index = 0;
while (index <list.size())
String t = (String)list.get(index);
     System.out.println (t);
     index ++;
return "";
public void remove(int index)
list.remove(index);
int listSize = list.size();
listSize = list.size()-1;
public void add(int index, String item)
list.add(index, item);
public String displayList()
String ret = "";
int index = list.size();
ret +=(String) get(index);
return ret;

ArrayList has only been around since 1.2. You have 1.1.8 and 1.2.2 installed. If jcreator were using 1.2.2, then all would be well - thus, I have deduced that jcreator is using 1.1.8. I would suggest uninstalling 1.1.8 and reinstalling jcreator (just a guess there)
Good luck
Lee

Similar Messages

  • Basic help with ArrayLists

    I'm doing a project in Java where I have to put numbers in a list, then shuffle them. Then I have to access those numbers and create a Bingo card. I've got everything down except for the accessing the numbers part. How exactly do I access integers from an array list? I read online that I should cast the elements in the ArrayList to an int, but I try that and get an incovertible types error message when I try to compile. Here is my code so far:
    import java.util.ArrayList;
    import java.util.Random;
    import java.util.Collections;
    * Numbers class -- will generate a list of numbers, shuffle them, and then have a method to return them to the Bingo card.
    public class Numbers
        private ArrayList bingoB;
        int cnt;
        String testString;
        public Numbers()
           bingoB = new ArrayList();
           resetNumbers();
        public int getNumberB()
             int test = (int) bingoB.get(0);
             testString = "b-" + test;
             return testString;
        public void resetNumbers()
            for(cnt = 1; cnt <= 15; cnt++)
            bingoB.add(new Integer(cnt));
            Collections.shuffle(bingoB);I really need help with the casting/accessing integer part, but any other tips about what I've got going on in the int getNumberB method would be helpful as well. Thanks in advance.

    You don't cast to 'int', you cast to 'Integer'. You put 'Integer' in, so you take 'Integer' out.
    To get the 'int' value from an 'Integer', use the "intValue()" method in the Integer class.
    testString should be local to getNumberB--it should not be an instance variable. Is getNumberB supposed to return an int or a String? If you want the String, you need:
    public String getNumberB() { ...}

  • Need help in export/import

    Hello All,
    I need help in export/import of an  internal table (based on deep structure) to/from desktop either in excel or XML file.
    I have an int table which has to be sent to desktop either in xls or xml file and then import back to an internal table(with deep structure).
    Ex :
    Int table is based on structure.
    Structure has fields
    as
    f1 -
    f2 -
    f3 - table type
    Your help will be appreciated.

    Hi Nishant,
    Please put your question in below mention forum.
    SAP Business One SDK
    Thanks
    Mohammad Imran

  • Premiere Pro CS5: please help problem with importing a file error output "there was an error decompressing audio or video"

    please help problem with importing a file error output "there was an error decompressing audio or video"

    this is related to what adobe program/version?

  • Please help a very important

    Please help a very important
    There I have a database 8i
    An area of 36 GB and night Eugene space on the hard disk is 2 GB
    I want to reduce the database space has decided to delete the tables from 2006 to 2010,
    But the database space 36 still Kiev and what to do

    I wish I could locate the apple document about backups, I know there's an official one but I can't find it. If you have a .mac account you can use the "backup" program to do that. The other way is third party programs that will backup any updated files to a remote computer on your network, or another drive. Probably the easiest though is just burning the files you need to save to DVDs or CDs. Someone else could probably explain this a whole lot better than me though, so give it a try.
    Oh! And just out of curiocity, how did the program not work? Did you get an error, or was the folder just too far gone to get back? If the lisence you purchaced is transferable, you might just want to sell it to someone here or on ebay. Good luck.

  • Help with ArrayList...

    Hi Everyone:
    I have this java program that I'm doing for school and I need a little bit of insite on how to do certain things. Basically what I did was I read a text file into the program. Once I tokenized the text(by line), I created another object(we'll call it Throttle) and passed the values that was tokenized, then I stored the object(Throttle) into ArrayList. Now, my question is how to I access the object(Throttle) from the ArrayList and use the object's(Throttle) methods? Here's the code that I have currently:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    public class Project1 extends JFrame
    private JButton numOfThrottles, shiftThrottle, createThrottle, quit;
    private JPanel panel;
    private FileReader fr;
    private BufferedReader br;
    private FileWriter fw;
    private int tempTop;
    private int whatToShift;
    private int tempPosition;
    private ArrayList arrThrottles = new ArrayList();
    private String line;
    private Throttle myThrottle = null, daThrottle;
    private StringTokenizer st;
    public Project1()
    super ("Throttles - by Joe Munoz");
    panel = new JPanel();
    setContentPane(panel);
    panel.setLayout(null);
    //**button stuff
    numOfThrottles = new JButton("Number of Throttles");
    shiftThrottle = new JButton("Shift a Throttle");
    createThrottle = new JButton("Create New Throttle");
    quit = new JButton("Quit");
    panel.add(numOfThrottles);
    panel.add(shiftThrottle);
    panel.add(createThrottle);
    panel.add(quit);
    numOfThrottles.setBounds(5,7,150,25);
    shiftThrottle.setBounds(5,30,150,25);
    createThrottle.setBounds(5,50,150,25);
    quit.setBounds(5,70,150,25);
    numOfThrottles.addActionListener(new ClickDetector());
    shiftThrottle.addActionListener(new ClickDetector());
    createThrottle.addActionListener(new ClickDetector());
    quit.addActionListener(new ClickDetector());
    //window stuff
    setSize(170,135);
    show();
    try
    br = new BufferedReader(new FileReader("C:\\Storage.txt"));
    catch (FileNotFoundException ex)
    System.out.println ("File Not Found!");
    try
    line = br.readLine();
    while (line != null)
    st = new StringTokenizer(line, " ");
    tempTop = Integer.parseInt(st.nextToken());
    tempPosition = Integer.parseInt(st.nextToken());
    myThrottle = new Throttle(tempTop, tempPosition);
    arrThrottles.add(myThrottle);
    line = br.readLine();
    catch(Exception e)
    System.out.println("IO Exception!!!");
    System.exit(0);
    private class ClickDetector implements ActionListener
    public void actionPerformed(ActionEvent event)
    try
    if (event.getSource() == numOfThrottles)
    JOptionPane.showMessageDialog(null, "Number of Throttles is..." + myThrottle.getNumOfThrottles());
    if (event.getSource() == shiftThrottle)
    String shift = JOptionPane.showInputDialog("Please Choose a Throttle from 0 to " + (arrThrottles.size() - 1));
    whatToShift = Integer.parseInt(shift);
    System.out.println ("whatToShift = " + whatToShift);
    // Need help here
    if (event.getSource() == createThrottle)
    String inTop = JOptionPane.showInputDialog("Please Enter Top");
    tempTop = Integer.parseInt(inTop);
    String inPosition = JOptionPane.showInputDialog("Please Enter Position");
    tempPosition = Integer.parseInt(inPosition);
    myThrottle = new Throttle(tempTop, tempPosition);
    arrThrottles.add(myThrottle);
    JOptionPane.showMessageDialog(null, "The Throttle has been created");
    if (event.getSource() == quit)
    System.out.println ("you clicked quit");
    catch (Exception e)
    JOptionPane.showMessageDialog(null, "No Numbers inputted!");
    Any insite/suggestions on what to do? Thank You.
    Joe

    Hi,
    I have a question addition to this same question.
    If you have an object and there are 10 different objects with in the object ..
    tempTop = Integer.parseInt(st.nextToken());
    tempPosition = Integer.parseInt(st.nextToken());
    tempBottom = 10;
    Is this how you access( from the same example) each object value
    strTop= (Throttle)arrThrottles.get(i).tempTop;
    strPos= (Throttle)arrThrottles.get(i).tempPosition;
    strB= (Throttle)arrThrottles.get(i).tempBottom;
    ----I AM USING ARRAYS in a JAVABEAN
    Class test {
    public objectTEMP t[] = null;
    public void initialize(val1,al2) {
         t = redim(t,10,false); //To set the length of the array to 10
    public class T {
    String s1 = null;
    String s2 = null;
    int i1 = null;
    public void setS1(String inVal) {
              s1=inVal;
    public void setS2(String inVal) {
         s2=inVal;
    public void setI1(int inVal) {
         i1=inVal;
    public String getS1() {
              return s1;
    public String getS2() {
              return s2;
    public String getI1() {
              return i1;
    for (int i=0; i<t.length;i++) {
    System.out.println("t"+i+t.getS1());
    t.setS1("SOMESTRING");
    System.out.println("t"+i+t.getS1());
    Any use the setter and getter method from JSP to update or get the information.
    I want to change this to ArrayList as they are fast and they have resizing ability.
    How to I implement this in ARRAYLIST.
    Thanks a bunch

  • Help with ArrayLists!

    Hi, I'm taking a java class at school, and I'm really, really bad at it. Anyway, I need help... I'm not even really sure what my problem is.. but I will try to explain.
    Anyway, I know I have a ton of problems, and I'm not even close to finishing the program, but here goes. I think part of my problem stems from making the arraylists into fish objects.. is there any way to work around that?
    The error that is popping up right now is "cannot resolve method- get (int)"; I'm thinking it doesn't work becuase I made the lists into fish objects, yes?
    Driver class
    * Driver class for the Fish class.
    * Christina
    * May 12, 2005
    import java.util.*;
    import cs1.Keyboard;
    public class Play
    public static void main (String [] args)
    boolean done = false;
    Fish comp = new Fish();
    Fish user = new Fish();
    Fish deck = new Fish();
    Fish userPairs = new Fish();
    Fish compPairs = new Fish();
    deck.fill();
    comp.deal();
    user.deal();
    System.out.println("Welcome to the lame, boring, Go Fish game... Yeah. Indeed.");
    System.out.println("Well.. you should know how to play.. if you don't I'd like to accuse you of" +
    " being an android, because only robots would not have played Go Fish before. Robots and hermits." +
    " Maybe you're a robot hermit? Or an alien? ");
    System.out.println("Your cards and pairs will be printed out before your turn. ");
    user.printCard();
    Method class:
    * Contains all the methods for the lame, command line version of Go Fish
    * Christina
    * May ??, 2005
    import java.util.*;
    import cs1.Keyboard;
    public class Fish
    ArrayList array = new ArrayList();
    Random generator = new Random();
    public Fish ()
    ArrayList array = new ArrayList();
    //ArrayList comp = new ArrayList();
    public void fill() //Fills the deck with 52 cards.
    for (int count= 0; count < 14; count++)
    for (int index = 0; index < 4; index++)
    Integer cardNum = new Integer(count);
    array.add(cardNum);
    public void deal(Fish array2) //Deals cards to the user and computer
    int num;
    for (int index=0; index <= 7; index++)
    num = generator.nextInt(52);
    array.add(array2.get(num));
    array2.remove(num);
    public void drawCard (Fish Array2)
    int num, length;
    length = deck.size();
    num = generator.nextInt(length);
    Integer card = new Integer(num);
    array.add(card);
    array2.remove(card);
    public void removeCard(int num)
    array.remove(num);
    public void printCard()
    for(int i = 0; i< array.size(); i++)
    System.out.println(array.get(i));
    /**public void sort()
    for(int i= 0; i < array.size(); i++)
    if(array.get(i).compareTo(i+1))
    array.add(i+1, array.get(i));
    //public int getCard()
    // int num;
    // return num.get();
    public void askUser(String card)
    System.out.println("Pick a card to ask for. Enter the number of the card ie 2." +
    "Note: Aces are represented by 0, Jacks by 11, Queens 12, and Kings 13.");
    card = Keyboard.readString();
    public void askComputer(int num, int length)
    length = this.size();
    num = generator.nextInt(length);
    this.get(num);
    System.out.println("Do you have any " + num);
    public void Pair(int pair)
    }

    Thanks a ton for the help^^ Unfortunately, because of my poor design no doubt, I still have plenty of problems.
    Oh, and I'd rather not
    Now, I have no idea why it refuses to acknowledge any of the method calls in the driver class.
    What the compiler says is wrong:
    --------------------Configuration: Final Project - j2sdk1.4.2_06 <Default> - <Default>--------------------
    C:\Program Files\Xinox Software\JCreatorV3LE\MyProjects\Final Project\Play.java:22: cannot resolve symbol
    symbol : method fill ()
    location: class java.util.ArrayList
    deck.fill();
    ^
    C:\Program Files\Xinox Software\JCreatorV3LE\MyProjects\Final Project\Play.java:23: cannot resolve symbol
    symbol : method deal ()
    location: class java.util.ArrayList
    comp.deal();
    ^
    C:\Program Files\Xinox Software\JCreatorV3LE\MyProjects\Final Project\Play.java:24: cannot resolve symbol
    symbol : method deal ()
    location: class java.util.ArrayList
    user.deal();
    ^
    C:\Program Files\Xinox Software\JCreatorV3LE\MyProjects\Final Project\Play.java:31: cannot resolve symbol
    symbol : method printCard ()
    location: class java.util.ArrayList
    user.printCard();
    ^
    4 errors
    Process completed.
    Now edited code:
    * Contains all the methods for the lame, command line version of Go Fish
    * Christina
    * May ??, 2005
    import java.util.*;
    import cs1.Keyboard;
    public class Fish
        ArrayList array = new ArrayList();
        Random generator = new Random();
        public Fish ()
        public void fill() //Fills the deck with 52 cards.
            for (int count= 0; count < 14; count++)
                for (int index = 0;  index < 4; index++)
                   Integer cardNum = new Integer(count);
                   array.add(cardNum);
        public void deal(ArrayList array2) //Deals cards to the user and computer
            int num;
            for (int index=0; index <= 7; index++)
            num = generator.nextInt(52); 
            array.add(array2.get(num));
            array2.remove(num);
        public void drawCard (ArrayList array2)
            int num, length;
            length = array2.size();
            num = generator.nextInt(length);
            Integer card = new Integer(num);
            array.add(card);
            array2.remove(card);
        public void removeCard(int num)
            array.remove(num);
        public void printCard()
            for(int i = 0; i< array.size(); i++)
                System.out.println(array.get(i));
        //public int getCard()
        //    int num;
        //    return num.get();
        public void askUser(String card)
            System.out.println("Pick a card to ask for. Enter the number of the card ie 2." +
             "Note: Aces are represented by 0, Jacks by 11, Queens 12, and Kings 13.");
            card = Keyboard.readString();
        public void askComputer(int num, int length)
            length = array.size();
            num = generator.nextInt(length);
            array.get(num);
            System.out.println("Do you have any " + num);
        public void Pair(int pair)
    * Driver class for the Fish class.
    * Christina
    * May 12, 2005
    import java.util.*; 
    import cs1.Keyboard;
    public class Play
        public static void main (String [] args)
            boolean done = false;
            ArrayList comp = new ArrayList();
            ArrayList user = new ArrayList();
            ArrayList deck = new ArrayList(52);
            ArrayList userPairs = new ArrayList();
            ArrayList compPairs = new ArrayList();
            deck.fill();
            comp.deal();
            user.deal();       
            System.out.println("Welcome to the lame, boring, Go Fish game... Yeah. Indeed.");
            System.out.println("Well.. you should know how to play.. if you don't I'd like to accuse you of" +
                        " being an android, because only robots would not have played Go Fish before. Robots and hermits." +
                        " Maybe you're a robot hermit? Or an alien? ");
            System.out.println("Your cards and pairs will be printed out before your turn. ");
            user.printCard();
    }

  • Need help creating arraylist

    I am trying to help a friend in school with a project and we need some help...
    We need to write a program to estimate how much paint is needed to paint a house. Assuming we know the square feet that a gallon of paint covers, number of coats required, and the dimensions of the wall, window, door, or gable.
    We are using a GUI to enter the data for the different regions.
    We have the GUI created and the hierchy competed. I need some help creating the arraylist to run the program.
    The user will enter a new region by selecting:
    surface type
    width
    height
    then you will be able to add or insert to include this region in the list.
    You will also be able modify, delete, or navigate to existing regions in the list by selecting the appropriate navigigation buttons below:
    ( |< or < or > or >| )
    Classes include:
    PaintEstimatorView
    PainEstimator Model
    Regions:
    Wall
    Door
    Gable
    Window
    And the Approriate Listners
    Each region will have its own height and width which are set when the region is created
    Each region will compute and return its area and the walls and gables will contribute to the surface; windows and doors will reduce the surface.
    each region will calculate its area.
    We need to include a View and Model
    The view will manage the interface and the model will provide the necessary processing.
    responsibilities of the view:
    Instantiate and arrange the windowobjects
    instantiate and initialize the model
    handle user generated events such as button clicks and menu selections by sending message to the model
    represent the model to the user.
    Model:
    Define and manage the applications data(coordinating the activities of several programmer defined classes)
    respond to messages from the view
    We have the GUI completed I just need some help getting the arraylist started to run the program.
    We will need to keep a count and index of all the regions created by the user and you need to be able to shuffle throught them if you need to delete or modify them. You also need to insert windows and doors which will subtract from the total surface area but you have to go back to which ever wall or gable and create the window or door before or after that region.
    If anybody could help it would be greatly appreciated.
    Thanks in adavnce
    Rus

    Sorry, I forgot to add my code last night.
    This is what we have so far.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    public class TestSwingCommonFeatures extends JFrame {
    private JRadioButton wall, window, gable, door;
    private JButton computegal;
    public TestSwingCommonFeatures() {
    // Create a panel to group three buttons
    JPanel p1 = new JPanel(new GridLayout(2, 2, 5, 5));
    JTextField sqftpergal = new JTextField(8);
         JTextField coats = new JTextField(8);
         JTextField gallonsneeded = new JTextField(8);
         gallonsneeded.setEditable(false);
         p1.add(new JLabel("SQ ft / gallon"));
    p1.add(sqftpergal);
    p1.add(new JLabel("Number of gallons:"));
    p1.add(coats);
    p1.add(new JLabel("Gallons needed:"));
    p1.add(gallonsneeded);
         p1.add(computegal = new JButton("Compute gallons needed"));
         //computegal;
    p1.setBorder(new TitledBorder("Select gallons & coats"));
    // Create a font and a line border
    Font largeFont = new Font("TimesRoman", Font.BOLD, 20);
    Border lineBorder = new LineBorder(Color.BLACK, 2);
    // Create a panel to group two labels
    // panel 2
         JPanel p2 = new JPanel(new GridLayout(4, 2, 5, 5));
    p2.add(wall = new JRadioButton("wall"));
    p2.add(gable = new JRadioButton("gable"));
         p2.add(new JButton("ADD"));
              p2.add(window = new JRadioButton("window"));
              p2.add(door = new JRadioButton("door"));
                   p2.add(new JButton("Remove"));
    p2.add(new JLabel("Width"));
    p2.add(new JTextField(12));
         p2.add(new JButton("Insert"));
         p2.add(new JLabel("Height"));
    p2.add(new JTextField(12));
         p2.add(new JButton("Delete"));
    p2.setBorder(new TitledBorder("Controls"));
    ButtonGroup radiogroup = new ButtonGroup();
    radiogroup.add(wall);
    radiogroup.add(gable);
         radiogroup.add(window);
         radiogroup.add(door);
    //panel 3     
         JPanel p3 = new JPanel(new GridLayout(2, 1, 5, 5));
    p3.setBorder(new TitledBorder("Section Selection"));
         p3.add(new JButton("<|"));
              p3.add(new JButton("<"));
                   p3.add(new JButton(">"));
                        p3.add(new JButton("|>"));
    p3.add(new JLabel("Count"));
    p3.add(new JTextField(4));
         p3.add(new JLabel("Index"));
    p3.add(new JTextField(4));
    // Add two panels to the frame
    setLayout(new GridLayout(3, 1, 5, 5));
    add(p1);
    add(p2);
         add(p3);
    public static void main(String[] args) {
    // Create a frame and set its properties
    JFrame frame = new TestSwingCommonFeatures();
    frame.setTitle("TestSwingCommonFeatures");
    frame.setSize(600, 400);
    frame.setLocationRelativeTo(null); // Center the frame
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    private class UpdateListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Update button was clicked");
    private class NavListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Nav button was clicked");
    // Create a list to store data
    java.util.ArrayList paintList = new java.util.ArrayList();
    This is the GUI for the project that we have come up with. I have to write the arraylist for inside the model.
    I have tried a couple different things but have been unsuccessful getting it to work. All I am looking for is a start of the arraylist I will try to figure out the rest myself.
    Thanks

  • Help about ArrayList on method

    Hi all , i have a prole about receving an ArrayList on a method.
    here is the code:
    //here is where i make the ArrayList
    private static java.util.ArrayList subStrs(String line, int tipo)
         java.util.ArrayList psline = new java.util.ArrayList();
                        psline.add(line.substring(0, 7));
                        psline.add(line.substring(7, 17));
                        psline.add(line.substring(17, 23));
                        psline.add(line.substring(23, 28));
         return psline;
    //here i pass the parameter
    private static void insereLinha(java.util.ArrayList psline, int tipo, int id) throws Exception {
                        if (psline.get(3).toString().toUpperCase().equals("FECHA"))
                             Y= ", 1)";
                        else
                             Y= ", 0)";
                        sql= "insert into HPA values (?, " + psline.get(0) + ", " + arruma.hourToSeconds(psline.get(2).toString()) + Y;
                        pst= con.prepareStatement(sql);
                        pst.setDate(1, new java.sql.Date(sdf.parse(psline.get(1).toString()).getTime()));
                        break;
    i call it from here :
    public static void main(String[] args) throws Exception {
              while (rs.next()) {
                   try {
                        linhas = rs.getString("ds_erros");
                        cds = rs.getInt("cd_erros");
                        ids = rs.getInt("id_erros");
                        //here is the problem
    insereLinha(subStrs(linhas, cds), cds, ids);
                        deletaLinha(rs.getInt("id_erros"));
                   } catch (SQLException e) {
                        throw e;
    i get the Exception :
    "Unable to print result (toString failed)
    tks all
    Sandro

    Hi,
    Your code looks like it should work. I have used part of your code and the following code works. Compare it to what you are doing ...
    import java.util.*;
    public class Array2Test
      private static ArrayList subStrs( String line, int tipo )
        ArrayList psline = new ArrayList();
        psline.add( line.substring( 0, 7 ) );
        psline.add( line.substring( 7, 17 ) );
        psline.add( line.substring( 17, 23 ) );
        psline.add( line.substring( 23, 28 ) );
        return( psline );
      private static void insereLinha( ArrayList psline, int tipo, int id)
        throws Exception
        for( int i = 0; i < psline.size(); ++i )
          System.out.println( psline.get( i ) );
      public static void main(String[] args) throws Exception
        String linhas = "0123456789012345678901234567";
        int cds = 24;
        int ids = 12;
        //here is the problem
        insereLinha( subStrs(linhas, cds), cds, ids );
    }Regards,
    Manfred.

  • Need Help with FCP7 import and plug in question.

    Hello,
    I just registered and would like to ask two questions. Everything else I'll use the search function for but I need the answer right away.
    Ok First question. I have a mac pro at home and a intel macbook both with FCS4 during the holiday season I'd like to work on a project on my laptop. Now I have all my files on a 2.0 USB drive(I know its not that fast for video) but this is only temp. while traveling. I'm trying to figure out why it wont import the files into another project. Even when I'm at my home Mac Pro when I try to import a projects footage into another project it doesn't read it. This comes up
    "File Error: 0 file(s) recognized, 0 access denied 254 unknown"
    But all the files will work in the project that it was originally captured too.
    If this helps the codec is sonys HDV 1080 60i converted to Apple ProRes 422(HQ) which I found out I should only use the regular Apple ProRes 422. I'm stuck now b/c I cannot import the files into a new project to work in on my laptop. Plus my Macbook doesn't have Firewire800 so I have no way to get the footage from tape to my laptop other then my USB Hard Drive.
    I also have problem importing the files in Motion and Cinema Tools they also are not recognizing the files which is getting me upset since they are FCP7 generated files after I convert them to ProRes.
    Whenever I try to import/use the files in anything other the original project they are grey'ed out.
    I'm also confused on how to import effects plug-ins I've downloaded effects from apple only to have now directions to import them into the program.
    Sorry for the Noob questions I'm a film student learning FCP7 by myself so I have the upper hand come next semester. Thanks in advance.

    Can't tell for sure but it sounds as if the drive is not properly formatted, or you do not have correct read/write permissions for it. There is no way you can use this drive with HQ video. You're going to get into problem if you even try.

  • Please help, need to import .swf/flash media

    Hi all, have a little issue here. I have some SWF flash media and I want to bring it into imovie so I can edit it more effectivley then with qt. However, I have been haveing alot of trouble, most time I only get the audio part of it and no image. Most of the media is widescreen, I was able to export the media in qt to dv stream and then import it, however, it lost its widescreen look and was kinda squished from the sides if that makes sense, if anybody has expeirence with this type of media, please help.
    Nathan

    Hi Nathan,
    I've never "dared" to convert .swf, but I read a lot about problems doing so... probably the Quicktime section of this forum is better to ask...
    maybe a much easier workaround is using tools as SnapzPro from Ambrosia; this tool claims to "record" any screen content (and audio) and convert it directly into any wanted format (as dv)...
    just a thought.......

  • Please help - need to import/create song snippets in iMovie

    Hi - I'm making a movie in '06 HD which requires a series of short (apx. 1 minute each) song segments taken from longer songs (apx 4 minutes each). After learning how to first crop the song in iTunes, I could not figure out how to import just the cropped part (the imported song played in its entirety in iMovie, despite being cropped in iTunes). Nor does it seem I can crop the music in iMovie itself. If iMovie had 5-6 different audio tracks I could just lay them down overlapping and only "play" the parts I need. Is there some workaround that I've missed here? Is it possible to make a single "song" in iTunes that is in fact made up of segments of different songs. HELP! I'm on a tight deadline.

    I wasn't aware that iTunes lets you crop songs... Here is how you can crop it in iMovie:
    After you import a song into iMovie, you drag it onto one of the audio tracks, right? Don't worry about the exact location for now. Now you can select it in the timeline (be careful not to change the volume by accident), then play it. Listen only to your song, don't pay attention to the video. Once you get to the part of your song where you want it to start, hit Apple-T to split it into two pieces at that point. This will only split the song in the selected track, and leave the other tracks alone. Select the part before the cut point, and delete it (Backspace key). Repeat the process at the end point, deleting everything beyond the split point. Now you have just the part you want. Drag it on the timeline until it lines up with your video.

  • TS3634 Help, how to importing video in iMovie'11

    I am using the Sony Handycam HDR-HC 9
    OS X 10.8.4, MacBoo Pro early 2011
    iMovie'11
    I want to import the video shot with the Handycam into iMovie. The cable I am using is iLink to FireWire 800.
    When I put the camera mode in to edit/play and I plug in the cable I excpected to be able to import the HDV into the iMovie.
    It does not work, and I must say not any more.
    About 6 months ago I did import  video from the same camera to the sam iMovie Aplication on the same MacBook Pro
    I could chose the import from and select the Handi cam etc. and I cpuld control from iMovie the handycam.
    Recvently I wanted to import clips from the camera to my computer again and I was unableto do so.
    In the iMovie app. I am unable to select the camera, in the view finder of the camera it only shows HDV in when I plug in the iLink cable.
    The omly thing that has changed in the last 7 months since i last imported movie clips is OSX updates and iLive updates.
    could this be the reason?
    If so how can I correct this and import clips again from the camera.
    Will realy appreciated if anybody can help me solve this problem.
    Thank you.

    Ok
    I tried that but no go.
    In the handy cam viewer as soon as I plug in the cabe it shows HDV out iLink and immediatly changes to HDV in iLink. I assume that the cable is right than.
    I have no possiblety jet to check the cable but it is only 6 months old and not used much.
    The port on the MacBook pro is ok I used a firewire 800 external drive and it shows up an I can browse the disk.
    Regards

  • Help needed in importing application -  Urgent

    Hi,
    I am new fairly new to apex and would be grateful for any help....
    I have an application that i would like to import and install... but i am obtaining an error...
    Situation is as follows:
    Application in machine A with oracle 10g standard and apex 3.0. Workspace is portal, schema is status_portal...
    export is working fine.
    Need to import it to machine B with oracle 10g and apex 3.0 Workspace is
    online_portal, schema is portal
    Import also works fine...
    But when i try to install the imported application, i get following error:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-02291: integrity constraint (FLOWS_030000.WWV_FLOWS_FK) violated - parent key not found <pre>begin wwv_flow_api.create_flow( p_id =&gt;134, p_display_id=&gt;134, p_owner =&gt; 'STATUS_PORTAL', p_name =&gt; 'Status Portal', p_alias =&gt; 'F114', p_page_view_logging =&gt; 'YES', p_default_page_template=&gt; 3865804637029456 + wwv_flow_api.g_id_offset, p_printer_fri
    Please guide me as to what to do....
    History:
    I have tried exporting from machine A to apex online workspace and installing there.... and vice versa...It is working fine...
    the problem arises only when i try import & install on machine B....
    Please help me.... i need to do this urgently
    Thanks,
    Sumana

    Hi Scott,
    I will not be able to show the actual application, as it has our customer's information. But i have created a sample application and done the export and import. The details are as follows:
    Machine A Details:
    Workspace name = portal
    worskspace ID = 3727029916111535
    schema = status_portal
    Exported Application Name = Status Portal
    Exported Application ID = 117
    When importing application from machine A to online workspace:
    Online Workspace Details: (when importing application 117)
    Workspace Name = sumana
    Workspace iD = 3033192431425185475
    schema = sumanadb
    Imported Application Name = Status Portal
    Imported Application IS = 42146
    You can access the workspace using: http://apex.oracle.com/pls/otn/f?p=4550:1:
    the password is sumi123
    When importing application from machine A:
    Machine B Details:
    1 ) Workspace1 Name = auditws
    workspace ID = 7048503433678645
    schema = audit_schema
    When installing imported application no 117 I get:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful.
    ORA-02291: integrity constraint (FLOWS_030000.WWV_FLOWS_FK) violated - parent key not
    found <pre>begin wwv_flow_api.create_flow( p_id =>129, p_display_id=>129, p_owner =>
    'STATUS_PORTAL', p_name => 'Status Portal', p_alias => 'F114117', p_page_view_logging =>
    'YES', p_default_page_template=> 10898936714426385 + wwv_flow_api.g_id_offset, p_printer
    Error installing application.
    Return to application.
    2) Workspace2 name = online_portal
    workspace ID = 9302626026712423
    schema = portal
    When installing imported application no 117 I get:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful.
    ORA-02291: integrity constraint (FLOWS_030000.WWV_FLOWS_FK) violated - parent key not found
    <pre>begin wwv_flow_api.create_flow( p_id =>159, p_display_id=>159, p_owner => 'STATUS_PORTAL',
    p_name => 'Status Portal', p_alias => 'F114117', p_page_view_logging => 'YES',
    p_default_page_template=> 10898936714426385 + wwv_flow_api.g_id_offset, p_printer
    Error installing application.
    Return to application.
    3) When importing application no 130 from machine B to machine B
    (from workspace auditws and schema audit_schema to workspace online_portal and schema portal)
    I get the error as said before
    "Access Denied by application security check" Also, i observed that,
    the application gets installed in auditws and audit_schema itself...
    Screenshots are here:
    4) when importing application no 130 from auditws back to auditws, it works fine.

  • Help needed in importing SSL Certificate

    Hi All,
    The SSL certificate in our application server has expired. We have created a new certificate and imported it through oracle wallet manger. But the application server is not recognizing the new certificate. Still shows certificate error when we try to access the application via https.
    We are using oracle application server 10.1.2.0.2
    I don’t have much knowledge on application server.
    Please help me on this.
    Thanks in Advance,
    Jey

    Hi Jeykrishnan,
    The installation consists of three main parts:
    a) Importing the Primary Root CA
    b) Import the Intermediate Certificate and Cross Certificate
    c) Installing your SSL123 certificate
    a) Importing the Primary Root CA
    1. Launch Oracle Wallet Manager.
    2. Click Operations and select Import Trust Certificates from the menu
    3. When the Import Trusted Certificate window appears, click Paste the Certificate and click OK.
    4. When the message "Please provide a base64 format certificate and paste it below" appears, paste the entire contents of Primary Root CA text into the box and click OK.
    5. A message should appear that the import was successful and you will see the Root Certificate at the bottom of the Trusted Certificates tree.
    b) Importing the Intermediate and Cross certificates
    1. Launch the Oracle Wallet Manager.
    2. Click Operations > Import Trust Certificates from the menu.
    3. When the Import Trusted Certificate window appears, click Paste the Certificate and click OK.
    4. When the message "Please provide a base64 format certificate and paste it below" appears, paste the entire contents of the Intermediate Certificate text into the box and click OK.
    5. A message should appear that the import was successful and you will see the Intermediate Certificate at the bottom of the Trusted Certificates tree.
    6. Repeat the same steps for the Cross certificate
    c) Importing your SSL123 certificate
    1. Click Operations > Import User Certificate from the menu bar.
    2. The Import Certificate dialog appears.
    3. Select the Paste the Certificate radio button, and click OK.
    4. The Import Certificate dialog appears.
    5. Paste the entire contents of your SSL123 Certificate file and click OK.
    6. A message should show that the certificate was imported successfully.
    7. When you return to the main window, wallet status should show "Ready."
    Regards
    FAbian

Maybe you are looking for

  • Where can I get replacement rubber feet for Macbook Pro 2009?

    Does anyone know where I can get the black rubber feet that go on the bottom of a Macbook Pro (2009)? I have checked with Apple stores and they said they don't have them. Thanks for any help you can give me.

  • PHP Apache2 10.4 Server ****

    Hello, I really hope somebody can help me with this because its killing me on a Friday afternoon. I have been stuck all day on this. I have: Apache2.0.55 installed in /opt/apache2 PHP 4.4.1 installed in /opt/php4 SVN 1.3 installed in /opt/svn Yesterd

  • ESB DB adapter and error logging

    Hi ! I need a DB adapter in ESB to read records from a table and do a logical delete (update a status column) . I can get it to work om my laptop, but not in our dev machines. I noticed that if I change the the 'mcf-properties' in the wsdl-file for t

  • Download from the App Store question...

    I just put an SD card into my Palm Centro and downloaded 2 apps from the App store.  Received confirmation that the download was completed. When I look at the info in the card it shows no icons. When I check the free space on the card, it shows nothi

  • Mac mini vs. Muse receptor

    I am running Logic Pro 8 on imac with lots of plugins (Arturia and Korg softsynths, East West Ministry of Rock, Omnisphere, RMX, etc.) and would like to save cpu power. Any feedback on using a Mac mini to run my plugins vs. a Muse receptor?