Serious Vector Casting Help!!

I have a Vector of Strings. I want to convert this to an array of strings. How do I go about this. Here is some code excerp
public static String[] getHeader(Vector values, int format)
Vector headerFields = new Vector();
for( int i = 0; i < values.size(); i++ )
headerFields.add(getString(i));
return (String[]) headerFields.toArray();
I get a class cast exception.
Is there anyway to declare a String array and add strings to it whenever you like. Thanks

OKAY, LAST TIME! in case it's not working
please consider the code that was posted
public static String[] getHeader(Vector values, int format)
Vector headerFields = new Vector();
for( int i = 0; i < values.size(); i++ )
headerFields.add(getString(i));
return (String[]) headerFields.toArray();
1. In order to call the method "getString(i)" as shown, the method must exist in the same class or inherited from a super class, otherwise you would have to use a class name if it were static or a pointer if it were instance method
2. In order for it to compile, it has to return an Object reference because that's the required parameter for the add method in the Vector class
3. You are adding the value returned from this method into a newly created Vector refered to by "headerFields"
4. The limit you are using for the loop is the size of the Vector refered to by "values"
5. The only correlation between the Vector refered to by the pointer "headerFields" and the parameter "values" is the size. So you have two Vectors that are of the same length.
6. In this code, the only way to get an Object out of the Vector values is to do it externally by allowing the "getString(int)" method to access a pointer that has the same value as the parameter "value". If you don't need an Object from the Vector refered to as "values" then you must simply want to use it's size. If so then just pass an "int" to the method.
7.If you do want to get some information out of the Vector refered to by "values" then you should obtain the reference to one of it's elements as follows.
values.elementAt(i)
If you know what this Object is, then you may cast it appropriately and use the pointer to this particular Object to call a method in that Object. such as
Something x = ((Something)(values.elementAt(i)));
x.getString();
8. If the class that contains this method extends Vector, and the class is intended to supply a getString(i) method, then why send the parameter "values" when you could use "this"
9. If the class does not extend Vector but "has a" Vector, then you should hold a pointer or an array of pointers (for however many dimensions you need) in an instance field, then you wouldn't necessarily need to pass the "values" parameter.
10. If the class has niether a "is a" or "has a" relationship to Vector, then certainly this is the wrong approach. You might want to do something with those objects in the Vector refered to by "values". then again you need to access them by
values.elementAt(i)
11. If you don't want to use the values in the Vector refered to by the "values" parameter and you want to use some method to get a header for each Object in the "values" Vector, then just send the size to the method.
12. if you want to convert a Vector of strings then you don't need to create a new Vector in the method, just pass a Vector as a parameter to the method.

Similar Messages

  • HelpMac mail sends emails prematurely  while I'm still composing..sometimes it sends 4-5 email versions in various states of completion. I've got clients asking what happened, because they only get a partial email..its becoming a serious problem. Help!

    Help. Mac mail sends myemails prematurely  while I'm still composing..sometimes it sends 4-5 email versions in various states of completion. I've got clients asking what happened, because they only get a partial email..its becoming a serious problem. Help!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Click the Clear Display icon in the toolbar. Try the action again. Post any messages that appear in the Console window – the text, please, not a screenshot.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Apache Compilation Problem: makes pointer from integer without a cast -HELP

    Every time I try to compile apache with ssl I get this error message below. I'm pulling my hair out over it! I've installed current versions of gcc, libgcc, glib, make, m4, & flex.. which havent helped. I am running Solaris 9 sparc.
    I'm honestly baffled by this error and have found no help on the web. Does anyone know what I need to do in order to fix this? Any specific libraries I need to install etc??
    <apache compiles up to this point>
    gcc -c -I../../os/unix -I../../include -DSOLARIS2=290 -DMOD_SSL=208116 -DEAPI -DUSE_EXPAT -I../../lib/expat-lite `../../apaci` -fPIC -DSHARED_MODULE -DSSL_COMPAT -DSSL_ENGINE -I/tmp/web/sweeney/Third_Party/apache/openssl-0.9.7d/include -DMOD_SSL_VERSION=\"2.8.16\" ssl_expr_scan.c && mv ssl_expr_scan.o ssl_expr_scan.lo
    lex.ssl_expr_yy.c:1900: parse error before numeric constant
    lex.ssl_expr_yy.c: In function `ssl_expr_yy_scan_string':
    lex.ssl_expr_yy.c:1901: number of arguments doesn't match prototype
    lex.ssl_expr_yy.c:293: prototype declaration
    lex.ssl_expr_yy.c:1903: warning: passing arg 1 of `strlen' makes pointer from integer without a cast
    lex.ssl_expr_yy.c:1903: warning: passing arg 1 of `ssl_expr_yy_scan_bytes' makes pointer from integer without a cast
    make[4]: *** [ssl_expr_scan.lo] Error 1
    make[3]: *** [all] Error 1
    make[2]: *** [subdirs] Error 1
    make[2]: Leaving directory `/tmp/apache_1.3.29/src'
    make[1]: *** [build-std] Error 2
    make[1]: Leaving directory `/tmp//apache_1.3.29'
    make: *** [build] Error 2
    they key being, "makes pointer from integer without a cast"
    Help me Obi Wan Kenobi, you're my only hope! Thank you much!

    I retried, here is the screen output:
    util.c: In function `ap_find_token':
    util.c:1367: error: `test_char_table' undeclared (first use in this function)
    util.c:1367: error: (Each undeclared identifier is reported only once
    util.c:1367: error: for each function it appears in.)
    util.c:1367: error: `T_HTTP_TOKEN_STOP' undeclared (first use in this function)
    util.c: In function `ap_escape_logitem':
    util.c:1444: error: `test_char_table' undeclared (first use in this function)
    util.c:1444: error: `T_ESCAPE_LOGITEM' undeclared (first use in this function)
    util.c: In function `ap_escape_errorlog_item':
    util.c:1496: error: `test_char_table' undeclared (first use in this function)
    util.c:1496: error: `T_ESCAPE_LOGITEM' undeclared (first use in this function)
    util.c: In function `ap_escape_shell_cmd':
    util.c:1567: error: `test_char_table' undeclared (first use in this function)
    util.c:1567: error: `T_ESCAPE_SHELL_CMD' undeclared (first use in this function)
    util.c: In function `ap_escape_path_segment':
    util.c:1671: error: `test_char_table' undeclared (first use in this function)
    util.c:1671: error: `T_ESCAPE_PATH_SEGMENT' undeclared (first use in this function)
    util.c: In function `ap_os_escape_path':
    util.c:1700: error: `test_char_table' undeclared (first use in this function)
    util.c:1700: error: `T_OS_ESCAPE_PATH' undeclared (first use in this function)
    *** Error code 1
    make: Fatal error: Command failed for target `util.o'
    Current working directory /source/apache_1.3.33/src/main
    *** Error code 1
    make: Fatal error: Command failed for target `subdirs'
    Current working directory /source/apache_1.3.33/src
    *** Error code 1
    make: Fatal error: Command failed for target `build-std'
    Current working directory /source/apache_1.3.33/
    *** Error code 1
    make: Fatal error: Command failed for target `build'
    Current working directory /appl/apa_ssl/apache_1.3.33/src
    *** Error code 1
    make: Fatal error: Command failed for target `build-std'
    Current working directory /appl/apa_ssl/apache_1.3.33
    *** Error code 1
    make: Fatal error: Command failed for target `build'
    root@host #
    the include-line in util.c is:
    #include "test_char.h" (vi: line 43)
    file exists:
    -rw-r--r-- 1 root other 0 Nov 8 16:02 test_char.h
    but, as you can see, it is empty

  • Vector casting giving errors on J2RE 1.4.2 on IBM AIX

    Hi guys,
    I developed a Java application on my pc using Eclipse IDE and JDK 1.5.
    Now I have to move this application on a IBM AIX system with JDK 1.4.2.
    This application strongly uses vector casting such as "Vector<Integer>" or "Vector<Vector>".
    Compiling on AIX these casts are all errors.
    I have to recompile because if I try to use the bytecode generated in local on my pc, it gives me the error message:
    "The java class is not found: name_of_the_class " and since now, I can't give a solution for this.
    Sorry for my English,
    thanks a lot
    Alessandro

    The examples you've show are not examples of casting but of the use of generics. Generics are not supported by 1.4, which is in any case obsolete. Update to >= 1.5 on your AIX system or rewrite the code without generics

  • I am desperate and seriously need some help - iPhone tracking.

    I’m really hoping one of you can help me.
    Long story short – my daughter aged 6 was taken from me last week because my violent rapist ex husband told Children’s Services that I tried to drive her off a cliff and am a serious suicide risk, I abuse her, I neglect her, I’m an alcoholic, anorexic, complete psycho nutjob etc etc, really nasty stuff. I am desperately trying to get her back. I need to prove I was not at this cliff & in fact have never been there, nor have I ever been stalking his house as he claims (& was awarded a 500m exclusion zone from his house so I can’t get my daughter if I need to as well as a ban on any telephone or postal contact between my daughter & I). I can prove my phone has been used every day for the last 2 years with my bills and if I can prove that in that time I have never been to this cliff, among a million other things I need to try & prove by Wednesday, I have a fighting chance of getting her back. I was allowed supervised visitation today & she’s scared & confused, massively regressed, looking physically neglected, she was withdrawn & was trying to tell me something but being supervised she couldn’t & got told off for whispering. The police are powerless in this & Children’s Services believe him over me, unless I can disprove his claims. Apparently it’s my job to prove their allegations are false rather than them having to prove they’re true!
    Anyway, I’m trying to do the tracking thing on my iPhone 4, IOS 5.1.1.
    I have got so far but I am totally stuck now. Nothing I do seems to work & to be honest half of the instructions may as well be in Swahili to me! It’s all totally over my head & I am not techy enough to understand it, I’m literally Googling every other word to try to understand.
    Please please please can you help me???
    Though I would never normally do it with complete strangers is there any way anyone would be willing to do a remote access thing on my laptop to get the proof I need? Can anyone give me an idiots guide to it? I’m not on Skype or chat or anything but I will get on to it if it helps? Can I ring someone & talk me through it? Can anyone please do anything at all to help my daughter & I??
    I’ve been on http://petewarden.github.com/iPhoneTracker/ & downloaded the app. I’ve also downloaded all the suggested programmes on http://www.26horas.com/apple-device-tracker/ as well as HDXHex thingy, I follow the instructions as far as I can but then I keep getting errors about SQLite3 databases & modules not being found... I have no idea what any of this means but I have heard this technology is no longer valid? Apple has changed it or something? Apparently people whining about big brother & invasion of privacy has made apple change everything & clam up about tracking, but apparently there is still a way, just no one seems to know how!
    Please can you help me? Please, if there is any way you can help me I would owe mine and my daughter’s lives to you. I am desperate and literally on my knees begging you to help me, please. I’ll pay for your time, but please can you help me?

    #1. The iPhone "tracker" you're referring to has already been completely debunked. That is NOT what the data was. In addition, Apple update that "fixed" the percieved problem, so the data is no longer accessible.
    The only way to "prove" what you want to is get a court order for your cellular company to pull the records for the location of your phone over time from their system.
    They know exactly where you phone is at any given moment, but that is not going to be something they will give you just for the asking.
    Get a lawyer.  If you had one, they would have already advised you of this. If you can't afford one, call legal aid.

  • How do I  print out the attributes of objects from a  Vector?  Help !

    Dear Java People,
    I have created a video store with a video class.I created a vector to hold the videos and put 3 objects in the vector.
    How do I print out the attributes of each object in the vector ?
    Below is the driver and Video class
    Thank you in advance
    Norman
    import java.util.*;
    public class TryVideo
    public static void main(String[] args)
    Vector videoVector = new Vector();
    Video storeVideo1 = new Video(1,"Soap Opera", 20);
    Video storeVideo2 = new Video(2,"Action Packed Movie",25);
    Video storeVideo3 = new Video(3,"Good Drama", 10);
    videoVector.add(storeVideo1);
    videoVector.add(storeVideo2);
    videoVector.add(storeVideo3);
    Iterator i = videoVector.interator();
    while(i.hasNext())
    System.out.println(getVideoName() + getVideoID() + getVideoQuantity());
    import java.util.*;
    public class Video
    public final static int RENT_PRICE = 3;
    public final static int PURCHASE_PRICE = 20;
    private int videoID;
    private String videoName;
    private int videoQuantity;
    public Video(int videoID, String videoName, int videoQuantity)
    this.videoID = videoID;
    this.videoName = videoName;
    this.videoQuantity = videoQuantity;
    public int getVideoID()
    return videoID;
    public String getVideoName()
    return videoName;
    public int getVideoQuantity()
    return videoQuantity;
    }

    Dear Bri81,
    Thank you for your reply.
    I tried the coding as you suggested
    while(i.hasNext())
    System.out.println( i.next() );
    but the error message reads:
    "CD.java": Error #: 354 : incompatible types; found: void, required: java.lang.String at line 35
    Your help is appreciated
    Norman
    import java.util.*;
    public class TryCD
       public static void main(String[] args)
         Vector cdVector = new Vector();
         CD cd_1 = new CD("Heavy Rapper", "Joe", true);
         CD cd_2 = new CD("Country Music", "Sam", true);
         CD cd_3 = new CD("Punk Music", "Mary", true);
         cdVector.add(cd_1);
         cdVector.add(cd_2);
         cdVector.add(cd_3);
         Iterator i = cdVector.iterator();
         while(i.hasNext())
           System.out.println( i.next() );
    public class CD
       private String item;
       private boolean borrowed = false;
       private String borrower = "";
       private int totalNumberOfItems;
       private int totalNumberOfItemsBorrowed;
       public CD(String item,String borrower, boolean borrowed)
         this.item = item;
         this.borrower = borrower;
         this.borrowed = borrowed;
       public String getItem()
         return item;
       public String getBorrower()
         return borrower;
       public boolean getBorrowed()
         return borrowed;
       public String toString()
          return System.out.println( getItem() + getBorrower());

  • Serious Problem. Help!!!

    Hi. Im having some serious problems. Some of my programs refuse to load. None of the Microsoft Office programs will open. Omnidisksweeper wont load, nor will Windows Media Player. I used Microsoft Word this morning. Now nothing. I ran Monolingual and have no idea if that messed it up or not. Pleeeease help!

    I did the same thing with the same results- only native intel apps, no rosetta. I installed in place via the disc one of the system discs and everything was back to normal.
    btw, I only saved 360 mgs with monolingual- seems somewhat shy of what I was expecting- having heard there were close to 2 gigs worth on other posts regarding monolingual.

  • Vector sorting help

    hi, im trying to figure out how to sort the vector objects below in alphabetical order. But i can't figure out how to fix this code
    any help is greatly appreciated. THANKS!!!
    import java.lang.String.*;
    import java.util.Vector;
    public class Test2
    public void hi()
    Vector v = new Vector();
    v.add("Donkey");
    v.add("Dog");
    v.add("Parakeet");
    v.add("Cat");
    v.add("Mule");
    v.add("Horse");
    v.add("Zebra");
    v.add("Lion");
    v.add("Frog");
    v.add("Catepillar");
    v.add("Butterfly");
    v.add("Ostrich");
    for(int i = 0; i < v.size(); i++)
    int o = i;
    int j = i - 1;
    while(j>=0 && j > o)
    v.get(j + 1) = v.get(i);
    j--;
    j + 1 = o;
    //substring(s.indexOf(",") + 2, s.indexOf("[") - 1)
    }

    hi, im trying to figure out how to sort the vector
    objects below in alphabetical order. But i can't
    figure out how to fix this code
    any help is greatly appreciated. THANKS!!!
    import java.lang.String.*;
    import java.util.Vector;
    public class Test2
    public void hi()
    Vector v = new Vector();
    v.add("Donkey");
    v.add("Dog");
    v.add("Parakeet");
    v.add("Cat");
    v.add("Mule");
    v.add("Horse");
    v.add("Zebra");
    v.add("Lion");
    v.add("Frog");
    v.add("Catepillar");
    v.add("Butterfly");
    v.add("Ostrich");
    for(int i = 0; i < v.size(); i++)
    int o = i;
    int j = i - 1;
    while(j>=0 && j > o)
    v.get(j + 1) = v.get(i);
    j--;
    j + 1 = o;
    //substring(s.indexOf(",") + 2, s.indexOf("[") -
    ) - 1)
    }Hi!
    You can't do:
    v.get(j + 1) = v.get(i);
    I think what you want to do is:
    v.set(j+1,v.get(i));
    Read this:
    "set
    public Object set(int�index,Object�element)
    Replaces the element at the specified position in this Vector with the specified element."
    If you have other questions, just say!
    Hope it helps!!!
    Regards,
    ACN

  • Indesign CS6 very slow with vectors. please Help!

    We updated to CS6 from CS5.5 to a Mac Pro running OS 10.6. Processors are 2 x 2.8 GHz Quad-Core Intel Xeon. Ram is 10 GB 800 MHz DDR2. Video card is ATI Radeon HD 2600 256 MB. One Cinema Display and a smaller Samsung monitor.
    The performance of InDesign when handling groups of vector files created inside InDesign is horrible. For example, I took a little 3 x 3px square and created a grid of 60 squares approx. When I select all of them (pure vectors) and try to move them it takes InDesign 10 seconds to respond to the selection first, and then 10 more seconds to move them.
    Another example, I created a very simple graph, pure vector of course, with a moderate number of text and lines and when I select the whole thing the lag comes again, takes a lot to mark the selection and then is very hard to move it.
    We have tweaked InDesign preferences (Interface, File Handling) as much as we could but the issue remains. We didn't have any problems with 5.5.
    Help please!

    had to install mountain lion and now everything works smoothly

  • Casting help.

    I am creating code for a die tossing program. i have written the code the toss two die (36,000 times) and to add the the sums of the die and keep track of the number of throws for each possible sum. however, i am now trying to return the average number of throws for each sum. my problem is that the die face value and their sums are of the type int, and i need the average to be of the type double or float. i can't figure out how to cast correctly. this is what i have:
    (float) average = faceCount/maxThrows;
    where faceCount[i] is the total number of times each possible face sum was returned, and maxThrows was declared as 36,000.
    any help is greatly appreciated. please let me know if you need any further info.

    thank you. that worked! but, now there's an additional problem.
    i have two loops set up. the first is the loop to complete the maxThrows, the second is to add up the sums and compute the average. the system needs to complete the maxThrows, then compute the average for each face sum. however, the way i have it written, the program rolls the die the maxThrows then computes the average for the sum of 2, then rolls the maxThrows again and computes the average for 3, . . . how can i change the order of the code so that it completes all maxThrows, then computes average for 2, average for 3, . . .
    this is what i have:
    for (int i = 1; i <=maxThrows; i++)
    int face = greenDie.getFaceValueGreen() + redDie.getFaceValueRed();
    faceCount[face] = faceCount[face] + 1;
    faceCount[zero] = faceCount[zero] + 1;
    for (int i= 2; i <= 12; i++)
    average = ((double)faceCount)/100;
    System.out.println("face = " + i + ": count = " + faceCount[i] + ": average = " + average);
    System.out.println("Total count = " + faceCount[zero] + "\n");

  • Vector Shape Help

    I am trying to draw a circle within a circle an have polka dots around it like numbers five and four.  How do I get them to be even?  Do you think this person used a brush?  How do I get the shape in number 6 and 7?  How do get the rectangle shapes in number 8?  Also, when I create a circle and then another circle inisde of it, how do I make sure that they are evenly spaced?  When I print the shapes are way off?  I would appreciate any help I can get to mimick some of these designs.
    Thank You!!!

    I concur with Doug.
    But if you want to do it in Photoshop I recommend using Smart Objects of opposing pairs of elements, duplicating and numerically rotating those by the necessary angle:
    As for circles with the same center: create a vector circle Shape (with the Ellipse Tool), mark it, copy, paste, hit command-T and with alt-shift pressed scale it (or set the »Reference point location« in the Options Bar to center, click »Maintain aspect ratio« and enter a new value for width or height).

  • My Macbook Pro is Infected, Seriously! Please Help!

    I paid 4000$ for my macbook and it was working fine for a year. Now my internet is incredibly slow and sluggish. To load a single web page takes literally 5 minutes wirelessly but still sluggish when plugged up with the ethernet cable. There are popups that are displayed in my browsers firefox and Safari that say "This is not a Joke you are a winner" and prompts me about a Dell notebook I had won. It then redirects me to some adserving site and mentions FreeZinger in the fineprint. Something is going on because I have downloaded and ran multiple virus and DNS changer scans, iAntivirus, securemac, and etc. At first I thought this was a minor problem but its still there. I ran sudo through the terminal and nothing came up. My internet was blazing fast but now is slow no matter where I use it, whether at school, home or work. Please help ASAP because I think my computer needs some serious debugging. Dont tell me I am one of the first to get a virus on a mac. If I need to purchase some insurance and send my mac in please let me know. Any help at all with this issue is greatly appreciated.

    "I paid _*4000$*_ for my macbook"
    Then you were ripped off. The latest top model cost $2,799.00
    "There are popups that are displayed in my browsers firefox and Safari that say "This is not a Joke you are a winner" and prompts me about a Dell notebook I had won."
    Go into your browsers preferences & select the +"Block Pop-Up Windows"+ (or something similar) setting.
    "I have downloaded and ran multiple virus and DNS changer scans, iAntivirus, securemac, and etc."
    Uninstall them all. Not needed for Macs. There are no known viruses for OS X.
    If you want to feel safe from +trojans+ download ClamX which is a free download from their website, Versiontracker & MacUpdate.
    "Dont tell me I am one of the first to get a virus on a mac."
    Try running repair permissions from your HD and afterwards run +repair disk+ and repair permissions from your software install DVD.
    How much HD space do you have left?

  • FCE Beginner having SERIOUS problems. HELP

    I am a FCE begginner and I am having a serious problem and is in need of serious help.
    I am trying to capture video clips into FCE from my Panasonic video camera which is only a Standard Definition video camera using a mini DV tape.
    When I connect to the FW400, it looks okay when I opened up FCE. So, I clicked FILE > CAPTURE.
    I can see my video is being played in the capture window. I then click the Mark-In button. About 15 seconds later, I clicked the Mark-Out button. Then I clicked the Capture Clip button.
    About 10 seconds after clicking the Capture Clip button, a message appear saying that "Dropped frames were detected during the last capture". I clicked OK and an icon appeared on the browser window.
    My problem is this:
    1) What can I do to prevent the dropped frames ?
    2) Why is the icon appear as a red colour background with a red diagonal line ?
    3) Why is it when I drag this icon into the timeline & try to play the captured video, I can only see the word UNRENDERED in blue colour appearing on the canvas ?
    4) I also try to view what I have captured by putting the icon into the viewer window. And what I saw was the word MEDIA OFFLINE. Why can't I viewed what I have captured ?
    Other questions:
    5) After finish capturing, what is the best way to end the capturing ? When to pull of the FW400 cable ? How & when to close the capturing window ?
    6) When the video was playing in the capture window, how do I fast-forward and see the video moving faster at the same time ? (I only know there is a fast-forward button but when I clicked it, the STOP button is automatically activated and I cannot see the video moving)
    Thank you very much. Any help is appreciated.

    Tom Wolsky wrote:
    2. That's because the clip isn't really captured. It's offline.
    3 - 4. Because the clip hasn't been captured.
    5. When you finish capturing close the capture window. If you want you can pull the camera out or leave it connected.
    6. Use the J-K-L keys. J backward, K pause, L forward. Press L a bunch of times and you go fast forward. Remember cameras are not very responsive devices. They're not like decks designed for shuttling tape.
    1. What's the cameras exactly? What's the drive? How's everything connected? What settings are on the media? What settings are you using in FCE?
    Thanks Tom for your answer but I apologise I don't quite understand some of the thing because I am really green in FCE. I use iMovie 09 previously.
    2-3-4 What does offline means ? I mean why is the clip hasn't been captured ? I tried to follow capture clip as indicated in your book pg 59 to 66. But I think what I obtained were something like Fig 4.13 & 4.14 of page 67 in your book.
    Maybe I relate what I did. I am able to see my video playing on the capture video without any problem. So, when I reach a certain part of the video I click the Mark-In button and the Time indicator on the Left hand side change from NOT SET to a certain number. After about 10 to 15 seconds I clicked the Mark Out button and the Time indicator on the Right hand side change from NOT SET to a certain number.
    Then I click the video to stop. Then I clicked the Capture Clip button. After that a black screen appear with a small apple logo at the centre with the bottom saying "Cueing for Source Material" just like fig 4.11 in page 66 of your book. Then I have the same black screen but this time it says "NOW CAPTURING" just like Fig 4.12 in page 66 of your book.
    After that, a message appear saying "Dropped frames were detected during the last capture". I just clicked OK and an icon appeared on the browser window. So, how come the clip hasn't been captured ? The fact that ican warn me of some dropped frames means that something must have been captured, right ? Or is it that ALL frames have been dropped ?
    So, where did I go wrong ?
    5) Ok thanks, I got that
    6) Ok thanks, the J-K-L keys on the keyboard really works !! Yay !!
    1) The model of my video camera is Panasonic NV-GS230. It is only a Standard Definition video camera using mini DV tape.
    I am using a Lacie FW800 external Hardrive to store the media files.
    I connect the Panasonic video camera to the iMac FW400 slot. So far, I have no problem capturing with this video camera in iMovie 09 and iMovie HD 06 using the same slot.
    How do I check the settings on the media ? If you are referring to EASY SETUP, my settings are:
    FORMAT: (all format)
    RATE: (all rates)
    USE: DV NTSC
    Except for System Settings where I set the scratch disk to my external Lacie and changing the Level of Undo in User preference to 32 (just like you suggested in page 43 of your book), the rest my settings on the FCE are all default settings because I did not change anything except the 2 mentioned. Is there any setting in particular that you want to check ?
    Thanks & sorry for being a real slow beginner. Really appreciate your help.
    Thanks

  • Serious Volume Issues : HELP!

    Good Morning,
      We have had Fios for about 8 month and since we signed up have been having serious volume issues.  When we turn on the tv and the fios (HD Box w/DVR) the volume will turn on and it will be in a mono tone with no bass just very bad sounding, other times we turn it on and there is no sound.  To get "normal sound" we typically have to turn on and off tv a couple times to get to work.  If we turn on tv and have "funny sound" we can flip to DVR and watch tv with perfectly fine sound.  We can also turn on DVD player and watch tv with perfectly fine sound.  This makes me think it's fios or the box??  We have had a refresh to our box and we just recieved a new box and it is still happpening!!   My husband has switched the HDMI cables to the alternate port on our tv (I think that is what he said??) and nothing helps.  Our tv is a Samsung LCD and it is maybe 2 1/2 years old at the most.  We have never had any issues with this with Directv and can't figure it out.  Does anyone have any advice?
    Our second issue is on our other tv when we turn on the fios box and attempt to watch tv, Spanish music comes through the subwoofer of our sound sound.  Again never an issue until Fios.  My husband bought a RF (????) filter and no such luck.  Any suggestions?
    Thanks as we can not watch tv in our home without it being a huge pain in the butt!

    seeing as how the issue is the same with 2 different HD-DVR's I would assume it is one of the many HDMI issues that occur with the motorolla boxes... try another means of  cabling for audio... such as composite (red/white) or digital audio cable
    as far as the other box is concerned, with the spanish audio..... that box/TV probably has the SAP turned on.... on the box, go to Menu >  Settings > Language > Audio Language.... and switch to English preffered... if it is your TV, consult the owners manual for specific instructions on how to change the setting on the TV.
    Bob Robertson - Lighter Klepto - I steal lighters, not bandwith

  • Raster to vector converstion help

    I am running illustrator 10 on a G4 running OS10.39.
    I have a tiff file in illustrator that I would like to convert to a vector file.
    Does anyone know how Illus. 10 can do this or of a download I can use that will do the conversion.
    Thank you in advance
    Johanna

    VectorMagic is an online service you would be best to do this that way. there is a feature called auto trace in v.10 but not very helpful.

Maybe you are looking for

  • DVI port for connect Cintiq on pro tower ?

    I will buy soon a mac pro 8-core 2,44Ghz and I wanted to know if there was a dvi port on the tower because I must connect a Cintiq Wacom 21ux on it. If there isn't a dvi port, is there another solution to connect it ? Thx by advance for your help

  • App Notifications Greyed Out

    Hi, I recently noticed that I am getting no App Notifications (Toasts) in the top right of my main screen. On a closer look, I noticed that all the settings are greyed out and a notice stating: Some settings are managed by your administrator. I've ne

  • Creating a slide show DVD in Elements 9

    Is there some way to creat a DVD of the slide show I assembled in Element 9 without having to purchase Premier Elements?  I have no video files to process since I have no video camera.  When I try to burn a DVD or CD with the side show a screen pops

  • How do i install photoshop elements 8 from a bundle?

    I have a photoshop/premiere elements 8 bundle pack. Premiere has installed, but whenever i try to intall photoshop, it only offers me a 30 day trial. As things stand the premiere program was a bonus. Photoshop is the progam I wanted most of all. Plea

  • Growing file import and refresh issues

    1) With files generated by our own MOV/op1a writers, we get different results with different wappers, different OS platforms and versions, and different storage filesystems, both using CC 7.1 and CS6.05  Quicktime files on the Mac, OS 10.7.5 to a Sam