PrintWriter not working !!

import java.io.*;
public class FileDemo {
     public static void main(String args[]) {
          if (args.length != 1) {
               System.out.println("Must enter text to write to file");
               return;
          try {
          PrintWriter myWriter = new PrintWriter(new BufferedWriter(new FileWriter("myfile.xyz")),true);
          catch (Exception e) {
          // handle exception here
          String myString = args[0];
          myWriter.println(myString);
          myWriter.close();
}I can't understand why this won't compile :
FileDemo.java:30: cannot find symbol
symbol : variable myWriter
location: class FileDemo
myWriter.println(myString);
^
FileDemo.java:32: cannot find symbol
symbol : variable myWriter
location: class FileDemo
myWriter.close();
^
2 errors
cheers

Yes - any variable declared inside a block is only good for that
block.
It's sort of logical: after all, variables declared in a method
don't "leak" out of the method's block and become visible
to other methods.
In the same way you are free to create "throwaway" variables like counters in a for loop. They won't be visible - and hence won't cause
problems - outside of the block containing the loop.
In the case of try/catch blocks it may be a bit more subtle. Suppose
you were allowed to declare a variable inside a try/catch block
and use it later outside. Now an error could occur and be caught
before the variable had been initialised (or even declared). If the
"catch" bit doesn't actually exit the method you would be left with
references to something that hasn't been initialised. This is sure
to cause problems! - or at least it would except that Java never
allows this to happen.
The rule followed has the virtue of being simple: a variable is visible
in and only in the block where it's declared (including sub blocks).

Similar Messages

  • Transferred code from PC to MAC - PrintWriter NOT working

    Hey guys,
    I wrote a script which created a JFrame with a few buttons on my PC and had everything working nicely. The toggle button (after it's released) is supposed to output a .txt file with a few lines of data on it, but no longer works on my MAC. It's also interesting that the .setBackground() function (where I change their displayed color) no longer works either yet the setEnabled() command still does (both are under ActionListener instances).. There are no errors on my script and I'm curious to know what is going on.
    Here is my code:
    import javax.swing.*;
    import java.io.BufferedWriter;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.lang.Long;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.ArrayList;
    public class Button  {
         protected JToggleButton jtb;
         protected JButton jbL;
         protected JButton jbR;
         protected JTextField jtext;
         public static ArrayList<Integer> goodSegments = new ArrayList<Integer>();
         public static ArrayList<Integer> badSegments = new ArrayList<Integer>();
         public static Integer initSpeech,endSpeech;
         public Integer timeStart,timeEnd;
         public String badgeNumber;
         ActionListener toggle = new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                   if (jtb.isSelected()) {
                        jbL.setEnabled(true);
                        jbR.setEnabled(true);
                        initSpeech = toInteger(System.currentTimeMillis());     
                        jtb.setLabel("Processing...");
                        jtb.setBackground(Color.white);
                   else {
                        jbL.setEnabled(false);
                        jbR.setEnabled(false);
                        endSpeech = toInteger(System.currentTimeMillis());
                        try {
                             outputTXT();
                        } catch (IOException e1) {
                             e1.printStackTrace();
                        jtb.setFont(new Font("Sanserif", Font.BOLD,12));
                        jtb.setLabel("SPEECH OVER");
         ActionListener left = new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                   if (jtb.isSelected()) {
                        if ("recording good".equals(e.getActionCommand()) && jbR.isEnabled()) {
                             jbR.setEnabled(false);
                             timeStart = toInteger(System.currentTimeMillis());
                             jbL.setBackground(Color.GREEN);
                        else if ("recording good".equals(e.getActionCommand()) && !jbR.isEnabled()) {
                             jbR.setEnabled(true);
                             timeEnd = toInteger(System.currentTimeMillis());
                             goodSegments.add(timeStart);
                             goodSegments.add(timeEnd);
                             jbL.setBackground(null);
         ActionListener right = new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                   if (jtb.isSelected()) {
                        if ("recording bad".equals(e.getActionCommand()) && jbL.isEnabled()) {
                             jbL.setEnabled(false);
                             timeStart = toInteger(System.currentTimeMillis());
                             jbR.setBackground(Color.RED);
                        else if ("recording bad".equals(e.getActionCommand()) && !jbL.isEnabled()) {
                             jbL.setEnabled(true);
                             timeEnd = toInteger(System.currentTimeMillis());
                             badSegments.add(timeStart);
                             badSegments.add(timeEnd);
                             jbR.setBackground(null);
         ActionListener text = new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                   jtext.selectAll();
                   badgeNumber = jtext.getText();
         public Button() {
              /// Setting left (good) button properties
              jbL = new JButton("Good Segment");
              jbL.setHorizontalTextPosition(AbstractButton.LEADING);
              jbL.setActionCommand("recording good");
              jbL.setEnabled(false);
              jbL.addActionListener(left);
              /// Setting right (bad) button properties
              jbR = new JButton("Bad Segment");
              jbR.setHorizontalTextPosition(AbstractButton.LEADING);
              jbR.setActionCommand("recording bad");
              jbR.setEnabled(false);
              jbR.addActionListener(right);
              /// Setting Middle (toggle) button properties
              jtb = new JToggleButton("Begin Recording");
              jtb.setEnabled(true);
              jtb.addActionListener(toggle);
              /// Setting Text Field properties
              jtext = new JTextField("Please Enter Badge Number");
              jtext.setEditable(true);
              jtext.addActionListener(text);
         public Integer toInteger(long l) {
              Long a = new Long(l);
              Integer i = new Integer(a.intValue());
              return i;
         public void outputTXT() throws IOException {
              PrintWriter file = new PrintWriter(new BufferedWriter(new FileWriter("badge-"+badgeNumber+".txt")));
              file.write(badgeNumber.toString());
              file.println();          
              file.write(initSpeech.toString());
              file.println();
              file.write(endSpeech.toString());
              file.println();
              if (goodSegments.size() != 0)
              for (int i=0;i<goodSegments.size();i++) {
                   file.write(goodSegments.get(i).toString());
                   file.println();
              file.write(new Integer(0000).toString());
              file.println();
              for (int i=0;i<badSegments.size();i++) {
                   file.write(badSegments.get(i).toString());
                   file.println();
              file.close();
        public static void main(String[] args) {
             JFrame jframe = new JFrame();
             Button b = new Button();
            Container cp = jframe.getContentPane();
            cp.setLayout(new FlowLayout());
            cp.add(b.jbL);
            cp.add(b.jbR);
            cp.add(b.jtb);
            cp.add(b.jtext);
            jframe.pack();
            jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            jframe.setVisible(true);
    }Thanks Guys!

    You might consider explaining what "not working" means.

  • PrintWriter Not Working Properly

    I am trying to write a simple server that outputs the string "HTTP/1.1 200 OK" to the client if it receives a valid HTTP request. For whatever reason though, the client isn't receiving this string. The strange thing is that it appears to be receiving other strings without any problems. Please have a look at my code and let me know what I am doing wrong. Thanks.
    static void displayClientMessage(String request, BufferedReader in, PrintWriter out) {
                   String httpOK = "HTTP 200 OK";
                   System.out.println(request); // print first line of request to the console
                   if (request.startsWith ("GET ") && request.endsWith (" HTTP/1.1")) {
                        out.println(httpOK);
                        String urlString = request.substring (4, request.length () - 9);
                        String contentType = "Content-Type: unknown";
                        if (urlString.endsWith (".txt"))
                             contentType = "Content-Type: text/plain";
                        else if (urlString.endsWith(".html"))
                             contentType = "Content-Type: text/html";
                        else if (urlString.endsWith(".wml"))
                             contentType = "Content-Type: text/vnd.wap.wml";
                        //out.println(contentType);
                   }

    Ditch all the headers - you don't need them.
    Also after the first IF statement, you print to the client the httpOK object, which number is not formatted correctly, but is also not flushed out - so the local data buffer may not be full - and thus not be sending the data.
    simply call out.flush() after the server sends the httpOK string.

  • Writing to file not working, might be 1.4 problem

    Hi:
    I am trying to writing the content of a JTextArea onto a file. The content is pretty big, has newlines. I have been struggling with this in 1.4 and it just doesn't write to the file I specified. In 1.3, it works great. Here is the rough code:
    public void loadDisplayFrame()
         JMenuItem save = new JMenuItem("Save");
         //Save Action Listener
         save.addActionListener(new ActionListener()
            public void actionPerformed(ActionEvent ae)
               String filePath;
               //Save the  gsgl sample file
               if(filePath!=null && filePath.length()>0)
                  try
                  int state = saveChooser.showSaveDialog(null);
                  File f;
                  f = saveChooser.getSelectedFile();
                  if(f!=null && state==JFileChooser.APPROVE_OPTION)
                        savedName = f.getPath();
                        if(!savedName.endsWith(".gsgl"))
                           JOptionPane.showMessageDialog(null, "Invalid file name", "error", JOptionPane.ERROR_MESSAGE);
                        }else
                           processSaving();
                        }catch(Exception e)
                            e.printStackTrace();
                    }else
                        JOptionPane.showMessageDialog(null, "Please load a file first", "error",
                            JOptionPane.ERROR_MESSAGE);
              myMenu.add(save);
              JMenuBar displayMenu = new JMenuBar();
              displayMenu.add(myMenu);
      public void processSaving()
             try
                 System.out.println("Saved Name is " + savedName);
               PrintWriter out
               = new PrintWriter(new BufferedWriter(new FileWriter(savedName)));
               //name of TextArea is <display>
               String saveCode = display.getText();
              System.out.println(saveCode);                 
                 out.print(saveCode);
              out.close();
            }catch(Exception e)
              System.out.println("Exception in writing" + e.toString());
         Anyone knows what is going on? I am hoping to use 1.4 for my project. But this thing is not working. Any way around it? Thanx

    Try putting in this line before your close:
    out.flush();
    PrintWriter buffers the data and won't send it until you exit or enough data gets into the buffer to cause a flush. I assume that you are getting a zero byte file. You can also construct a PrintWriter with a boolean to indicate if it should auto flush the buffer.
    Hope that it helps.
    Paul

  • Apache Abdera deployment is not working in Weblogc9.1

    Hi
    I am accessing Atom feed from one url(www.example.com.rss.xml). I wrote one servlet and deployed it in weblogic9.1 and Tomcat5.5.
    Weblogic deployement is not working. but tomcat deployment is working properly.
    My Code is :
    public void service(HttpServletRequest req, HttpServletResponse res) throws ServletException,IOException
              try
                   Abdera abdera = new Abdera();
                   Client client = new CommonsClient(abdera);
                   RequestOptions options = client.getDefaultRequestOptions();
                   System.out.println("checkFeedModification method RequestOptions options after");
                   Calendar calendar = Calendar.getInstance();
                   options.setIfModifiedSince(calendar.getTime());
                   options.setNoCache(true);
                   System.out.println("Feed URL is : http://xxx.xxxx.xxx/feed/xxxx/v1");     
                   ClientResponse response = client.get(" http://xxx.xxxx.xxx/feed/xxxx/v1", options);
                   Parser parser = Abdera.getNewParser();     
                   Document<Feed> doc = parser.parse(response.getInputStream());
                   PrintWriter out = res.getWriter();
                   out.println(doc.getRoot().toString());
    }catch(Exception e)
                   e.printStackTrace();
    My Classpath jar files are :
    D:\abdera.0.2.2-incubating\abdera.client.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\abdera.core.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\abdera.extensions.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\abdera.parser.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\abdera.protocol.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\abdera.security.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\abdera.server.0.2.2-incubating.jar;D:\abdera.0.2.2-incubating\lib\axiom-api-1.2.1.jar;D:\abdera.0.2.2-incubating\lib\axiom-impl-1.2.1.jar;D:\abdera.0.2.2-incubating\lib\bcprov-jdk15-134.jar;D:\abdera.0.2.2-incubating\lib\commons-codec-1.3.jar;D:\abdera.0.2.2-incubating\lib\commons-httpclient-3.0.1.jar;D:\abdera.0.2.2-incubating\lib\commons-logging-1.0.4.jar;D:\abdera.0.2.2-incubating\lib\geronimo-activation_1.0.2_spec-1.1.jar;D:\abdera.0.2.2-incubating\lib\jaxen-1.1-beta-7.jar;D:\abdera.0.2.2-incubating\lib\json-1.0.jar;D:\abdera.0.2.2-incubating\lib\log4j-1.2.12.jar;D:\abdera.0.2.2-incubating\lib\stax-api-1.0.jar;D:\abdera.0.2.2-incubating\lib\xmlsec-1.3.0.jar;D:\abdera.0.2.2-incubating\lib\stax-1.2.0.jar
    Could you please suggest me where iam doing wrong?
    Thanks.
    Edited by srinukanta at 04/17/2007 6:21 AM
    Edited by srinukanta at 04/17/2007 6:24 AM

    Hi Prakash,
    The "Run standalone web module from workspace" doesn't publish the application to the server (instead the app is deployed to a temp location).
    This is mainly to help test the app during the development stages. If your app is complete and would like to publish to the server then you might want to try the following option
    - In Server View, double click on the configuration to launch Overview
    - Select "Copy stand-alone web module into separate deployment folder"
    - Save the configuration
    - Start the server
    The application would be deployed to the server as a WAR file.

  • Move jsp code into servlet, not work!!

    Hi:
    I am new in servlet and java, I can use jdom to read xml file
    into a jsp file, but whan I move jsp code into servlet, they are not work
    have any ideals?
    Thank!

    Hi:
    my.jsp
    <%@ page contentType="text/html"%>
    <%@ page import="java.io.File,
    java.util.*,
    org.jdom.*,
    org.jdom.input.SAXBuilder,
    org.jdom.output.*" %>
    <%
    String Records = "c:/XMl/Quotes.xml";
    SAXBuilder builder = new SAXBuilder("org.apache.xerces.parsers.SAXParser");
    Document l_doc = builder.build(new File(Records));
    my servlet
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.jdom.*;
    import org.jdom.input.*;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.*;
    public class XmlJdom extends HttpServlet
    String Records = "c:/xml/Quotes.xml";
    SAXBuilder builder = null;
    Element Author = null;
    Element Text = null;
    Element Date = null;
    * Initializes the servlet.
    public void init(ServletConfig config) throws ServletException
    super.init(config); //pass ServletConfig to parent
    try
    // JDOM can build JDOM trees from a variety of input sources. One
    // of those input sources is a SAX parser.
    SAXBuilder builder = new SAXBuilder("org.apache.xerces.parsers.SAXParser");
    catch ( org.jdom.JDOMEXception e)
    public void doGet(
    HttpServletRequest request,
    HttpServletResponse response)
         throws IOException, ServletException
         PrintWriter out = null;
         out = response.getWriter();
         try{                
         Document l_doc = builder.build(new File(Records));
    Element root = l_doc.getRootElement();
    //get a list of all recode in my XML document
    String l_pages = root.getChild("quote");
    String Iterator e = l_pages.iterator();
    while ( e.hasNext())
    Element l_quote= (Element) e.next();
         Element l_Author = l_quote.getChild("Date").getChild("Text");
    XMLOutputter l_format = new XMLOutputter();
    String ls_result = l_format.outputString(l_doc);
    out.println(ls_result);
    catch( org.jdom.JDOMException e )
         finally
              if( out != null)
                   out.close();
    Please tell me, what is wrong!!!
    Element root = l_doc.getRootElement();
    /* get a list of all the links in our XML document */
    List l_pages = root.getChildren("quote");
    Iterator Myloop = l_pages.iterator();
    while ( Myloop.hasNext())
    Element l_quote= (Element) Myloop.next();
         Element l_Author = l_quote.getChild("Date").getChild("Text");
    XMLOutputter l_format = new XMLOutputter();
    String ls_result = l_format.outputString(l_doc);
    ls_result = l_format.outputString(l_doc);
    %>
    <html><head><title></title></head>
         <body>
              <pre>
              <%=ls_result%>
              </pre>
         </body>
    </html>

  • EntityManager persist not working

    Hi ,
    A simple EntityManager persist method not working . Please help .
    <persistence-unit name="SakshiPU"
              transaction-type="RESOURCE_LOCAL">
              <provider>org.hibernate.ejb.Hibernate     Persistence</provider>
              <class>urpack.Test</class>
              <properties>
                   <property name="hibernate.connection.driver_class"
                        value="oracle.jdbc.driver.OracleDriver" />
                   <property name="hibernate.connection.url"
                        value="jdbc:oracle:thin:@localhost:1521:ORCL" />
                   <property name="hibernate.connection.username"
                        value="system" />
                   <property name="hibernate.connection.password"
                        value="admin" />
              </properties>
         </persistence-unit>This is my servlet using ContainerManaged EntityManager in it .
    public class Getter extends HttpServlet {
         @PersistenceContext
         EntityManager manager;
         public void doGet(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              manager.getTransaction().begin();
              Test ter = new Test();
              ter.setName("Sainath");
              manager.persist(ter);
              manager.getTransaction().commit();
         }I am getting this Exception
    java.lang.IllegalStateException: The method public abstract javax.persistence.EntityTransaction javax.persistence.EntityManager.getTransaction() cannot be invoked in the context of a JTA EntityManager.
    *     at weblogic.deployment.BasePersistenceContextProxyImpl.validateInvocation(BasePersistenceContextProxyImpl.java:110)*
    *     at weblogic.deployment.BasePersistenceContextProxyImpl.invoke(BasePersistenceContextProxyImpl.java:86)*
    *     at weblogic.deployment.TransactionalEntityManagerProxyImpl.invoke(TransactionalEntityManagerProxyImpl.java:89)*
    *     at weblogic.deployment.BasePersistenceContextProxyImpl.invoke(BasePersistenceContextProxyImpl.java:80)*
    *     at weblogic.deployment.TransactionalEntityManagerProxyImpl.invoke(TransactionalEntityManagerProxyImpl.java:24)*
    *     Truncated. see log file for complete stacktrace*
    Upto my knowledge i am not using JTA Anywhere .
    Please help
    Edited by: raviprivate on Nov 25, 2009 7:40 AM

    Hi
    I undersand that by default Container Managed EntityManager uses JTA .
    Is it possible for me to use Resource_Local Suppourt with Container Managed EntityManager uses JTA .
    Please help.

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

Maybe you are looking for

  • User Exit available for basic inbound idoc type MBGMCR01 in SAP R/3

    HI, We are looking for the User Exit for BsicIdoc MBGMCR01. When we create confirmation in EBP, this idoc gets triggered from EBP to R/3 to create goods receipt material document. Regards, Nikhil.B

  • Fonts in final cut pro...

    Hi I'm fairly new to Macs in general and very new to FCP. I'm using FCP 5.4 and just learning the ropes. My question is this when creating a piece of text you have the option to change the font. On my system or set up anyways there is no way i can se

  • Is it easy to set up a Macbook Pro alongside an existing iMac?

    How do you set up a Macbook Pro alongside an existing iMac please?

  • Customizing table Changes to another system

    Hello all, When ever changes occurred to  personnel area HR table T500P then the changes needs to be replicated in  another system. how to capture the change log details? Please provide the inputs. Regards Aravind

  • Auto-streching a x-repeated background vertically

    Hi! I wondering if this is possible: I have a background image in my main_content div that is repeated on x-axis. The problem is I need the background to stretch vertically, if there is some long content on the page. How would you make an image that