Newbie needs more help

In the canvas I have a green circle with a check mark that appears from time to time. What is this and how do I remove. Also, I have what appear to be the zebra lines in white and red.....unable to turn off.
My thanks in advance.

You've activated the Range Check or Excess Luma. Look near the top of the Canvas window, use the right drop down menu to deselect Excess Luma.
-DH

Similar Messages

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • HT4061 I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    If you are rying to update an iPhone 4 that now has iOS 4.3, you must connect to a computer with iTunes, start iTunes and select the iPhone from the list of Devices on the left side of the window.  Then in the main Summary window select Software Update.  The process will take a rather long time, up to half an hour depending on the speed of your internet connection.

  • Another Newbie Needs Your Help!

    I'm going to try to make this quick, but there is an
    important backstory to my problem.
    I grew up living in Fullerton, California, until about 10
    months ago. I still call Fullerton my home and take pride in it.
    About 4 years ago, I started playing guitar; about 2 years
    ago, I started lusting over a Fender Stratocaster. Fender Musical
    Instruments was started by Leo Fender, a radio repairman who
    created the first mass-produced electric guitar in his workshop in
    Fullerton (coincidentally I went to the same high school he did as
    well).
    Health problems made him sell Fender to CBS; when he got
    better, he got with some friends and started the Music Man company.
    A falling-out with said friends resulted in him dissolving ties
    with the company. But then he got together with his long-time
    friend and descendent of the founders of his hometown, George
    Fullerton, and started G&L (George & Leo) Guitars. G&L
    still builds guitars in Fender's own factory, the original factory
    of Fender guitars, in Fullerton, even though Leo passed away in
    1991.
    A couple months ago I heard about G&L and, looking at the
    website, I realized that these were the exact guitars I'd been
    looking for--sooo much more than a normal Fender guitar (CBS has
    since taken Fender in different directions than Leo would have,
    even moving production to Corona, California) and still made in my
    hometown. The website, unfortunately, lacked pictures of the exact
    color and model of guitar I wanted, a similar problem I experienced
    on Fender's website. Having built upon my 12 years of experience
    and know-how with photoshop, I had taken a high-resolution photo of
    a Fender Stratocaster and had made custom shapes out of every piece
    of the guitar so that I could customize and colorize the thing to
    my heart's desire. But the shapes changed to G&L shapes once I
    heard of G&L.
    Well, after a little tinkering, I had my dream guitar, and
    posted pictures in the forum of G&L. Two days later the CEO of
    G&L contacted me with the offer of swapping a guitar for some
    webwork. I'm ecstatic! A $2000 guitar just for something I do as a
    hobby? Plus *******' resume material...
    Anyway, the Photoshop work is easy; but I don't want static
    pictures of my artwork on any website. Optimally, I wanted to
    figure out how to build a guitar customizer using Flash, and Mr.
    CEO is more than happy to follow my train of thought. Problem is,
    I've taken one college-level beginning Flash class but still feel I
    know nothing aside from being able to animate something, which I do
    using a USB pen-and-tablet to make mini-cartoons.
    So I've been google-searching macromedia flash tutorials
    looking for someone that can help me build a customizer.
    I know of a couple examples:
    DUBMODDER: VW Customizer
    MINIUSA: Build your own MINI Cooper
    Now I'm not afraid to work hard, and I have a great sense of
    an artistic, streamlined, and web-friendly style, as I've done web
    work with photoshop before. I also catch on with any computer
    program very quick; I took an 8-week college class in 3DS Max and
    completed it with the highest grade in the class and left my
    instructor with no doubt that I was one of the very few who didn't
    need to take the course over to pick up anything better.
    These are the two examples I have on Photobucket of my
    guitars; they're the same model, the only difference is body and
    headstock color. These are the two options I'm considering, though
    of late I've leaned towards the green:
    Translucent
    greenburst with matching headstock
    Translucent
    orange with black headstock
    Every individual component of the guitars is its own custom
    shape; so styling and coloring is a breeze, plus getting them up on
    the screen individually is a breeze as well. I just need to know
    how to get it so that through a series of menu bars, radio buttons,
    and checkboxes, I can include all the options available to someone
    who would be purchasing a guitar and have a realtime, interactive
    picture of the guitar displayed either below or to the right of the
    options bar.
    Oh, and another note: each of my pictures above is scaled to
    25% original size but uncompressed. Being vector graphics, everyone
    here knows how high they can be scaled without loss of detail.
    Thanks in advance, and if I get significant help, mention
    will not be forgotten to this forum and the significant
    helpers.

    Welcome,
    but if you want help, you really must avoid the thesis-style
    posts - not too many here have time to
    read a life biography as interesting as it may be - and after
    reading most of it I am still not sure
    what your question is - there's nothing specific in your post
    other than what brought you to this
    point in your career/hobby.
    I would suggest keeping your question very direct and to the
    point and in as few words as possible -
    many of us have clients and deadlines and not a lot of time
    to devote to answering questions. Take
    this as constructive critism only please - i read your post
    and still don't know what answer(s) you
    are looking for.
    (also helps to provide a descriptive subject sso when we scan
    the posts we can see the topic
    involved and know ahead of time if we can answer them -
    subjects that are general and vague like
    "Nebie needs help" tend to get skipped over by the majority).
    hope this helps.
    -c
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    DNC2112 wrote:
    > I'm going to try to make this quick, but there is an
    important backstory to my
    > problem.
    > I grew up living in Fullerton, California, until about
    10 months ago. I still
    > call Fullerton my home and take pride in it.
    > About 4 years ago, I started playing guitar; about 2
    years ago, I started
    > lusting over a Fender Stratocaster. Fender Musical
    Instruments was started by
    > Leo Fender, a radio repairman who created the first
    mass-produced electric
    > guitar in his workshop in Fullerton (coincidentally I
    went to the same high
    > school he did as well).
    > Health problems made him sell Fender to CBS; when he got
    better, he got with
    > some friends and started the Music Man company. A
    falling-out with said
    > friends resulted in him dissolving ties with the
    company. But then he got
    > together with his long-time friend and descendent of the
    founders of his
    > hometown, George Fullerton, and started G&L (George
    & Leo) Guitars. G&L still
    > builds guitars in Fender's own factory, the original
    factory of Fender guitars,
    > in Fullerton, even though Leo passed away in 1991.
    > A couple months ago I heard about G&L and, looking
    at the website, I realized
    > that these were the exact guitars I'd been looking
    for--sooo much more than a
    > normal Fender guitar (CBS has since taken Fender in
    different directions than
    > Leo would have, even moving production to Corona,
    California) and still made in
    > my hometown. The website, unfortunately, lacked pictures
    of the exact color
    > and model of guitar I wanted, a similar problem I
    experienced on Fender's
    > website. Having built upon my 12 years of experience and
    know-how with
    > photoshop, I had taken a high-resolution photo of a
    Fender Stratocaster and had
    > made custom shapes out of every piece of the guitar so
    that I could customize
    > and colorize the thing to my heart's desire. But the
    shapes changed to G&L
    > shapes once I heard of G&L.
    > Well, after a little tinkering, I had my dream guitar,
    and posted pictures in
    > the forum of G&L. Two days later the CEO of G&L
    contacted me with the offer of
    > swapping a guitar for some webwork. I'm ecstatic! A
    $2000 guitar just for
    > something I do as a hobby? Plus *******' resume
    material...
    > Anyway, the Photoshop work is easy; but I don't want
    static pictures of my
    > artwork on any website. Optimally, I wanted to figure
    out how to build a
    > guitar customizer using Flash, and Mr. CEO is more than
    happy to follow my
    > train of thought. Problem is, I've taken one
    college-level beginning Flash
    > class but still feel I know nothing aside from being
    able to animate something,
    > which I do using a USB pen-and-tablet to make
    mini-cartoons.
    > So I've been google-searching macromedia flash tutorials
    looking for someone
    > that can help me build a customizer.
    > I know of a couple examples:
    >
    http://dubmodder.com
    >
    http://miniusa.com
    > Now I'm not afraid to work hard, and I have a great
    sense of an artistic,
    > streamlined, and web-friendly style, as I've done web
    work with photoshop
    > before. I also catch on with any computer program very
    quick; I took an 8-week
    > college class in 3DS Max and completed it with the
    highest grade in the class
    > and left my instructor with no doubt that I was one of
    the very few who didn't
    > need to take the course over to pick up anything better.
    > These are the two examples I have on Photobucket of my
    guitars; they're the
    > same model, the only difference is body and headstock
    color. These are the two
    > options I'm considering, though of late I've leaned
    towards the green:
    >
    http://i61.photobucket.com/albums/h41/dnc2112/InvaderPlusGreenburst.jpg
    >
    http://i61.photobucket.com/albums/h41/dnc2112/InvaderPlusOrange.jpg
    > Every individual component of the guitars is its own
    custom shape; so styling
    > and coloring is a breeze, plus getting them up on the
    screen individually is a
    > breeze as well. I just need to know how to get it so
    that through a series of
    > menu bars, radio buttons, and checkboxes, I can include
    all the options
    > available to someone who would be purchasing a guitar
    and have a realtime,
    > interactive picture of the guitar displayed either below
    or to the right of the
    > options bar.
    > Oh, and another note: each of my pictures above is
    scaled to 25% original size
    > but uncompressed. Being vector graphics, everyone here
    knows how high they can
    > be scaled without loss of detail.
    > Thanks in advance, and if I get significant help,
    mention will not be
    > forgotten to this forum and the significant helpers.
    >

  • Newbie Needs Template Help

    Ok I am a complete newbie to flash. I have read most of the guides provided and searched the forums but I honestly can't find an answer to my question.
    I have decided to use one of the templates provided with my flash pro cs5. It is the advanced album.
    My question:  how do I use it?  
    I know it gives me generalized instructions when it opens but for the life of me I cannot figure out where or how to put my photos in.
    I am using the template because when I try to make an album from scratch I also cant seem to get it to work right (the images just fly through on the preview)
    thanks in advance for the help!

    Hello wiccanluvr1988,
    To make photos show up in the 'Advanced Photo Template' you have to do the following steps...
    1.Store your project .fla file inside a folder.
    2.Put all your photos inside that folder that you want in the Photo Template.
    3.Now you have to go inside the actions frame of the template and change line 11 with this code below by adding your own photo directory.
    Line 11:
    var hardcodedXML:String="<photos><image title='Your Photo'>images/yourphoto.png</image><image title='Your Photo 2'>folder/yourphoto2.png</image></photos>";
    Simple Explained Form:
    var hardcodedXML:String="<photos><image title='Image title here...'>Put image directory here</image>
    /*Repeat this line of code with new photo directories to display more photos*/ <image title='Image title for 2nd photo...'>Image directory here for 2nd photo</image>
    </photos>";
    I hope this helped...

  • FLASH NEWBIE NEEDS YOUR HELP

    I have 4800 jpg files in my librarie, and i want to put each
    in a keyframe on scene; the idea is to make a simple movie.
    Importing a .mov movie, the quality decrease, and i just notice,
    with the jpg file the swf movie has a better quality.
    There´s some code to to this fast and easy?
    Please help me.
    sayeg5. ( very newbie flash user). By the way, i´m using
    flash cs3. Trying to learn.

    Quote from: barkingdogg on 10-February-07, 05:57:05
    sorry if i had to ask again. but when you mean during install does that mean during installation of windows?
    thank you very much for your quick response. 
    yes, in a begging of XP installation press "F6".
    hit "F6" here few times.
    then at next screen put diskette which contain RAID drivers into floppy and load them with pressing "S" key.
    load 1st one, and config. them hit "S" key again and load second one as well. you need to load it both:

  • Spry Newbie needs some help

    It is the little things in life I was always told and all I
    am trying to do is to pretty much duplicate the form validation
    demo. However I am not even sure where to begin. I have created
    many forms and have had them submit and returned in an emial
    successfully but I am not quite sure how the Spry widgets work or
    how to apply them to an existing form or even a new one for that
    matter.
    Does the page have to be dynamic in order to use the Spry
    validation widget? Hopefully iy can be used on a static page. Are
    there any tutorials out there for creating a form in DW CS3 using
    the Spry validation widget?
    Thanks,
    Houston

    Hi,
    First of all, the Spry widgets works on static pages, so you
    don't necessary need to have a dynamic page.
    It is not to hard to make the demo from site, and I'll
    explain you the basic steps you should do to have these widgets
    working on your page. The css part, you can customize as you wish,
    the demo from site is just a customization.
    As I saw, you use Dreamweaver for creating this demo, so I'll
    give you the explanations for how to do it on DW.
    In a html page, add a form. Inside form add: a Spry Textfiled
    validation input (from the Spry tag), a Spry Select input and a
    Spry Textarea input.
    If you go in design view and select an widget, a blue border
    will appear and on the Property Inspector will appear all the
    properties you need to customize.
    To see exactly what does every property, please check the
    Dreamweaver help.
    This is the start to create you own form containing Spry
    widgets.
    Hope this help,
    Diana

  • Converted DVD files, Now I Need More Help

    I converted my DVD files so that my video iPod can read them, but now I have another problem. It would seem that a DVD has 8 or more seperate files that contains different portions of the actual movie.
    How can I get all of those different chapter files into one streaming video?

    You need to install itunes (the actual program) on your C: drive. The program and preference files don't take up that much space.
    Then put the actual music, podcasts, videos, etc on the exHD. Use itunes to do this, not Win Explorer, so itunes will be able to find the files after the move.
    Directions on moving the music to an exHD:
    http://support.apple.com/kb/HT1364

  • Newbie needs JNI help

    the JNI tutorial speaks about creating a "shared directory" where a "dll" file is created and stored.
    How do i create this ".dll" file and store it into the shared directory ? ...

    Hi,
    Creating dll is outside the realm of Java programming. You need to use some language like C/C++/VB etc. Any good C/C++ IDE has wizards to help you create a dll. Use them. There is a free one at www.bloodshed.org called Dev-C++.
    cheers
    Projyal

  • Newbie needs urgent help

    Hi guys,
    I need to create a function that returns as string, the path or location of the file it is in.
    for example:
    this function will be in a file called A.java
    A.java has the path C/MyDocuments/Jenna/java/A.java
    so when I run this function, it returns a string "C/MyDocuments/Jenna/java"
    I would really appreciate if someone could write code to help me understand how i can do this
    thanks
    curious girl
    xxx

    You want the location of the source file (the .java file) from which the current class was compiled? You can't do that. (Unless you explicitly code it as a member variable of that class, which would be silly).
    Or do you want the location of the .class file? That can't be done completely cleanly or reliably, but you can sort of get it by searching all the elements of that class' ClassLoader's classpath, which you can't necessarily get for all classloaders.
    Whichever one it is, why do you think you need this?

  • Newbie needs ENV help

    Hi all,
    I recently inherited a flex project someone left for dead...
    I am having a little trouble finding some things referenced in
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/.
    When in Flex builder 3, I cannot seem to import any fl.* packages.
    How do I get to this package???
    Also, I do not see any support for nested Data Grids... I
    have a REAL need to be able to nest one grid within another. Is
    there any way I can do this in Flex? I found some stuff about the
    AdvancedDataGrid component, but, I don't know where to look for
    information on its capabilities.
    So, any help would be greatly appreciated. Thanks,
    Stan

    Hi Stan,
    Here's the link to the Flex 3 feature introductions on our
    Adobe Labs site about Advanced DataGrid:
    http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions#Advanced_DataGrid
    thanks,
    Sharon

  • Need More Help!

    Hi
    Sorry to be such a pain but I always have problems with this.
    This isn't related to my other project.
    I'm saving video from Fraps at 1920 by 1200, in AVI format, the resolution of my monitor.
    I want to import it into PE10, crop it to a wide screen format and export it at  1600 by 900 frames size as an AVI file.
    The clip coming in is 1.0 PAR.
    In the options to export AVI files I can't find any options to export it at anything other then 720 by 480.
    It doesn't matter if I pick Standard NTSC Wide Screen NTSC or Microsoft AVI the only options are 720 by 480.
    It won't let me change the size in the advanced menu on any of the formats.
    I could export it at anything I want as a WMV file but I have to have an AVI file to import it into the program I want to use it in.
    Is there any way to do this?
    And last even when I do export it as an AVI file at 720 by 480, and the image is bigger then the preview window, what I get is a much smaller image that doesn't fill the frame.
    I thought I finally had the PAR thing figured out, it's 1.0 PAR going in, and 1.0 PAR going out but it still doesn't come out right.
    I just tried importing it at Full HD 30 and outputting it at Standard NTSC and I get a small frame in a bigger window.
    Any help welcome.
    Mike

    tep one: Visit http://www.giganews.com/line_info.html and post up the Traceroute the page shows, if you wish. Be aware that your non-bogan public IP Address will show up.  It might shown up as the final hop (bottom-most line of the trace)  might contain a hop with your IP address in it. Either remove that line or show only the first two octets. What I'm looking for is a line that mentions "ERX" in it's name towards the end. If for some reason the trace does not complete (two lines full of Stars), keep the trace route intact.
    For example this what I see
        news.giganews.com
        traceroute to 71.242.*.* (71.242.*.*), 30 hops max, 60 byte packets
        1 gw1-g-vlan201.dca.giganews.com (216.196.98.4) 13 ms 13 ms 13 ms
        2 ash-bb1-link.telia.net (213.248.70.241) 39 ms 7 ms 7 ms
        3 TenGigE0-2-0-0.GW1.IAD8.ALTER.NET (63.125.125.41) 4 ms 4 ms GigabitEthernet2-0-0.GW8.IAD8.ALTER.NET (63.65.76.189) 4 ms
        4 so-7-1-0-0.PHIL-CORE-RTR1.verizon-gni.net (130.81.20.137) 6 ms 6 ms 6 ms
        5 P3-0-0.PHIL-DSL-RTR11.verizon-gni.net (130.81.13.170) 6 ms 6 ms 6 ms
        6 static-71-242-*-*.phlapa.east.verizon.net (71.242.*.*) 32 ms 32 ms 33 ms
    Step two: Can you provide the Transceiver Statistics from your modem?
    #3 If you don't know how to get that info:
    a) What is the brand and model of your modem?
    b) If you have a RJ-45 WAN port router connected to it: What is the brand and model of the RJ-45 WAN port router?
    #4 If you have a RJ-45 WAN port router connected to the modem, even if you know how to get the Transceiver Statistics from the modem: What is the brand and model of the RJ-45 WAN port router?
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Potential newbie need some help

    If I want to buy a later version of Flash ...to save money ....how far back could I go without regretting this decion?
    I'm a hobbyist and love to experiment,  I can say I will do animating and action scripting about 50 - 50 till I figure what the contraints and limitations are.
    Also where (besides E-Bay) can I feel say in making this purchase?
    Does anybody know what CS4 may be selling for these days?
    Also ...if you are a pro with this software ...is there much difference in the animating environment from CS4 to CS5.5?
    Do I want to make sure I get a version with Action script 3.0 because it so much better than 2.0?
    I know ...I know ...do the research ...I'm on it ...but any additional help would be appreciated.

    Papervision is free ...correct?
    yes:  http://code.google.com/p/papervision3d/
    you should also check away3d.
    Papervision is like a renderer ...correct?
    it's a 3d engine.
    Papervision is what they use to produce some of those animations that looks semi-3D ...corect?  In otherwords its not plain 2D ...but not really 3D.
    no, they look completely 3d.  flash cs4 makes semi-3d animations
    Don't care about advanced Text ....I think.
    Don't think I want to create IOS either.
    Just a real quick question ....with flash BUILDER ...even though is taylored to developers ...you can do everything with it that you do with Flash professional ...correct?
    no.  i don't think you have a stage in flash builder that you can draw on and i don't think you have timeline frames.
    Finally .... how many computers does a single licenses allow you to install on?
    i've never tried to install on more than 1 so i don't know that.
    p.s.  please mark helpful/correct answers, if there are any.

  • Newbie needs general help w/Java Updating

    Hi,
    I don't use Java (as far as I know) too often, but right now I've got Java 5_6 update on my computer. I've been told that's unstable and I should update to Java 6. I was also told I should remove 5_6 Update with add/remove programs before doing so. I was also told I should remove the three Java "objects" in the Downloaded Program Files Folder before doing so (which is an IE thing, right?). But I was also told to go and download Java 6 directly from the Sun site and install, but I'm not sure if that's necessary or the way I want to do it, because I have the option to check for updates in the Java Control Panel that comes up when I double click the Java icon in my Control Panel folder.
    Questions:
    1. The three java objects in the downloaded objects folder are in a folder that's part of IE, is that right? I don't use IE (except for Windows Updates), I use Firefox. So where are the objects kept for Firefox?
    2. Do I really need to also remove these objects in addition to add/removing 5_6 Update? If so, for both IE and Firefox?
    3. When I go to my Control Panel, there is an icon for JAVA. When I double-click this icon, a JAVA CONTROL PANEL opens up. If I remove 5_6 Update and those objects, will that also remove this control panel? The control panel was part of my system when I got my laptop.
    4. If the Java Control Panel is retained, then why can't I just go to the second tab which is for Updates, choose "Update Now" and get the Java 6 update that way? (And this would be AFTER I remove 5_6 -- and any objects, IF that's necessary.)
    It's my hope that I can just update to Java 6 (after removing the 5_6 update and objects, if necessary) by using the update feature in the Java Control Panel instead of downloading Java 6 from the Sun site. If this is not a good idea, I would like to understand why.
    Any help is appreciated -- thanks!

    Thanks for the post. So J2SE Runtime Environment 5.0
    Update 6 (which is apparently what I have now) is
    stable
    It's reasonably stable. There are bugs in it, of course. There are always bugs in software. Unless you're having problems with them, however, you don't automatically need to update.
    The list of changes between that release of Java 5 and the latest (1.5.11 at the time of writing) is given here:
    http://java.sun.com/j2se/1.5.0/ReleaseNotes.html
    , and it's false that it has security
    holes that can be exploitedThat's a completely different question. I can't promise you that there are no security flaws that have been fixed since that particular update. However, unless you're running a server or downloading applets or otherwise running in a security constrained environment there's not much point in worrying about it. Again, if there is a specific reason for you to worry check the bugs and enhancement lists here to see if your concerns are addressed:
    http://java.sun.com/javase/6/webnotes/index.html
    Either way you don't update just because someone says you should unless you have reason to believe they know what they're talking about. I suggest you ask your original source to explain why they think you should upgrade and to provide you with the evidence to back up their assertions.

  • Sorry but I need more help to set up AE as bridge

    Hi, I had some advise on how to set up airport Extreme as a bridge (? - I need to extend my network without confusing two or more IP addresses or something like that). I have tried a few thing but really do not know how to connect to the device for the setup. I think the LAN connection from the ISP Modem should go into the "circle" port and the MAC should plug into one of the three <-.-> ports.
    In running through AE utility, I end up with it telling me that I do not have an IP address and I should contact my ISP.
    If there is someone out there that has the knowledge and patience to give me a step by step guide to connect and configure this setup so that I end up with a reliable network extension that does not clash with the ISP modem Router. I would be very grateful. Thanks!

    I will check. I it possible that that was not the model number. I have hooked up the laptop so I can communicate again. and hmmm, sorry it is a 2701 model.
    Here's what I have done in the mean time and the information you requested Bob:
    Switched everything off again, disconnected the apple TV and 2Wire modem, connected modem, connected AE, waited 3 minutes, switched on Mac Pro then connected to <-.-> port on AE, waited 2 minutes, started up Airport Utility and tried to connect (after upgrading to latest firmware).
    Resulting in Error message:
    "An error occurred while updating the configuration.
    Make sure your Apple wireless device is plugged in and in range of your computer or connected via Ethernet and try again. (-6737)"
    I can report the connections settings prior to changing them:
    Connect using: Ethernet (I left this as was)
    Configure IPv4: Using DHCP (I set to manually)
    Ethernet WANPort: Automatic I l left this as was)
    Connection sharing: Share a public IP address (I set to "OFF (Bridge Mode)")
    resulting in the error mentioned above..
    Does this tel you anything? Should I disconnect my MacBook which is using wifi to 2Wire?
    I am going to try to set the AE with the MacBook while I wait for your advice.
    Thanks again! Floor

Maybe you are looking for

  • Generic BOR Object - TSTC

    Hi all, Can anyone let me know how the generic BOR object 'TSTC' can be used to call transactions from CRM4.0(SIE) to backend R/3 systems in a transaction launcher. Basically, i will be interested in knowing - how one can pass the transaction code -

  • In ODI where we maintain the folders for a file system

    Hi all For file system,I have to maintain different type of folders in Dev server.for example Input,Process,Error,Log,etc..Where we going to maintain these folders in the devlopment server? Can you be clear about the File system is maintained in the

  • Image Metadata Editor

    I have been looking for inserting descriptions into my pictures. Unfortunately, there isn't any option to edit Metadata in File Explorers (I tried Thunar and Nautilus). I wouldn't like to have a photo gallery software just to do that, and, by the way

  • Editing video in Photoshop problems

    I have a piece that the client is prepared to ditch because the talent wasn't looking to good in the lighting available. I had the crazy idea to edit the video frame by frame in photoshop cs5 Extended. I finished one of the videos, and photoshop cras

  • D20 using DVD on Marvell SAS controler

    I was wondering if I can use a DVD drive on the Marvell SAS ports because I would like to use all the available SATA ports on the motherboard.  The reason for this is that I was told that I would get better performance and also trim support if I use