Progress Monitor not painting

I'm working on a program that draws fractals, and I'm using a ProgressMonitor to display the length of the task. The ProgressMonitor is created and updated inside the method that calculates the fractal.
When I call it the first time in my main method, it shows up, displays properly and disappears. I can do this as many times as I want.
When I try to call it from the ActionListener associated with my 'recalculate' button the window for the ProgressMonitor appears, but the inside is never painted. After the task is complete it disappears again. Any idea what the problem could be?

* WaitCursor_Test.java
import java.awt.*;
import javax.swing.*;
public class WaitCursor_Test extends JFrame {
    public WaitCursor_Test() {
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setSize(400,300);
        setLocationRelativeTo(null);
        jPanel.add(jProgressBar);
        getContentPane().add(jPanel);
        setTitle("Wait 10 seconds");
        worker = new SwingWorker() {
            public Object construct() {
                setCursor(new Cursor(Cursor.WAIT_CURSOR));
                for( int i=0; i<=100; i++ ){
                    try{Thread.sleep(100);}catch(InterruptedException ex){}
                    jProgressBar.setValue(i);
                setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
                jProgressBar.setVisible(false);
                setTitle("Done");
                return null;
        worker.start();
    public static void main(final String args[]) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                new WaitCursor_Test().setVisible(true);
     You need to download and compile the "SwingWorker" source code to be able to use it.
     Here it is:
     http://java.sun.com/products/jfc/tsc/articles/threads/src/SwingWorker.java
    private SwingWorker worker ;
    private JProgressBar jProgressBar = new JProgressBar();
    private JPanel jPanel = new JPanel();
}

Similar Messages

  • What's wrong with my Progress Monitor and how do I fix it?

    Hello,
    My progress monitor fails to draw its insides, except when the task is already finished
    Inside a class that extends SwingWorker<Void, Void> ...
         @Override
         public Void doInBackground() throws Exception
              try
                   this.progressMonitor = new ProgressMonitor(jPanelControl,
                             "Running a Long Task",
                             "", 0, data.size());
                        //jPanelControl.invalidate();
                        progressMonitor.setMillisToPopup(500);
                        progressMonitor.setMillisToDecideToPopup(100);
                   this.doProcess();
              catch (Throwable e)
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              return null;
         }doProcess goes on a little journey until we get to:
                      progressMonitor.setNote("Importing " + this.title);
            for (int i = start; i < this.data.size(); i++)
                   progressMonitor.setProgress(i);
                            //doing stuff each iterationQuickly after loading begins the box appears but it's not drawing the graphics inside the window (see screenshot for more)          
    btw: That white background is Java3D, could it be interfering with the way Swing updates graphics?
    Edited by: loza on Aug 25, 2009 4:03 AM

    Hi,
    take a look at [this sample from java tutorial|http://java.sun.com/docs/books/tutorial/uiswing/examples/components/ProgressBarDemoProject/src/components/ProgressBarDemo.java] ;
    Regards,
    Alan Mehio
    London,UK

  • Need configure guide for job progress monitor in JSM

    Hello Guys,
    I have received  an requirement to setup job progress monitoring in JSM(job schedule monitor).i have done my search in Google for configuration guide, but i could not find it.
    My Requirement:- i need to monitor the jobs progress(running on manage system) which consists on nearly 10 setps.End user need to monitoring the job progress  using PI diagram.
    Guys  if any one of you have done this setup please help me with configuration setps.
    Please provide your inputs on this.
    Regards,
    Pavan

    Hi Pavan,
    That should have been my place from where I would have start
    I hope Jansi, Prakhar or Karthik can redirect you on this.
    Meanwhile, If I get any thing, I will share it.
    Regards

  • Deployment Progress Monitor

    Once I start the application using "Debug" or "Run", the Deployment Progress Monitor will show the messages:
    "Starting Application" ...
    "asadmin -start-domain ...."
    and then this status window will be kept open even with "Automatically close" set. As result of that, the Web browser is never opened by Creator.
    There isn't any error message in server.log. The server is started and I can open the first page typing the URL. I checked and the path to the default browser is correctly set in the Creator "options" setting.
    There are two problems that result of the above situation:
    1) The browser will not be open with the first page;
    2) Even that I use "Debug" to start the application, I can't debug it, breakpoints will not work;
    Thxs

    Yes, if one starts the app server outside Creator. It will be much more stable and the monitor window will not hang.
    Also, it is good to check doman.xml. Sometimes the application name is not set correctly in context-name.
    Finally, If Creator begins to not be able to start the App Server, one also canjava, javaw, rundll and extra runide process in the Task Manager.
    Thanks.

  • How to use  Progress Monitors?

    how to use Progress Monitors?
    in the name of god
    hi friends
    i have a problem. I am writing a program that read data from a file record by record and store to a database. my problem is here that i want add a progress monitor that when the program is doing its work it appear. I use ProgressMonitorInputStream class but it can not work well. It appear and read file record by record and store in table of database but its progress don’t move and do nothing. I know that I have a tiny problem in use this class. Please guide me.
    i put my codes below.
    best regards
    *////this is an event that invoke my classes*
    private void readbtnActionPerformed(java.awt.event.ActionEvent evt) {                                       
            JFileChooser fileChooser = new JFileChooser();
            fileChooser.setCurrentDirectory(fileName);
            //filtering file extension
            FileNameExtensionFilter filter = new FileNameExtensionFilter("Text file", "txt");
            fileChooser.setFileFilter(filter);
            //fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            int result = fileChooser.showOpenDialog(this);
            if (result == JFileChooser.APPROVE_OPTION) {   //if choose ok button
                fileName = fileChooser.getSelectedFile();
                ReadTextFile readFile = new ReadTextFile(fileName);
                readFile.openFile();
                readFile.readRecord();
                *//readFile.closeFile();       //if  this line enable this message appeare "Scanner closed" .why?*      
                readFile.closeFile();
            } else //if choose cancel button
                result = 0;     //do nothing
    */////this is readFile class and invoke data access class and insert data in my database*
    public class ReadTextFile {
        private Scanner input;
        private File fileName;
        private int i = 1;
        DataAccess dal = new DataAccess();                     //new a defined my class
        AcountRecord record = new AcountRecord();
        public ReadTextFile(File n) {       //Constructor
            fileName = new File(String.valueOf(n));
            this.openFile();
        private void setRecord(String val) {
            try {
                record.setId(Integer.parseInt(val.substring(1, 5)));
                record.setTime(Integer.parseInt(val.substring(8, 12)));
                record.setDate(Integer.parseInt(val.substring(15, 21)));
                record.setMode(val.substring(24, 26));
            } catch (Exception e) {
                JOptionPane.showMessageDialog(null, "ÇäÊÎÇÈ ÔãÇ äÇÏÑÓÊ ÇÓÊ.","Set Record Method",JOptionPane.ERROR_MESSAGE);
        public void openFile() {
            try {
                input = new Scanner(fileName);
            } catch (FileNotFoundException e) {
                JOptionPane.showMessageDialog(null, "ÇäÊÎÇÈ ÔãÇ äÇÏÑÓÊ ÇÓÊ.","Open File Method",JOptionPane.ERROR_MESSAGE);
        public void readRecord() {
            new Thread() {
                private Component _Main;
                @Override
                public void run() {
                    try {
                        input = new Scanner(fileName);
                        InputStream in = new FileInputStream(fileName);
                        ProgressMonitorInputStream pm =
                                new ProgressMonitorInputStream(_Main, "reading the file", in);
                        ProgressMonitor pmo = pm.getProgressMonitor( );
                        pmo.setMaximum( (int) fileName.length());
                        while (/*input.hasNext() &&*/ pm.read() != -1) {
                            setRecord(input.next());
                            dal.Connect();
                            String sql = "INSERT INTO fileinfo(pkey,id,date,time,mode)VALUES(%s,%s,%s,%s,'%s')";
                            sql = String.format(sql, i++, record.getId(), record.getDate(), record.getTime(), record.getMode());
                            dal.doCommand(sql);
                    } catch (Exception e) {
                        JOptionPane.showMessageDialog(null, e.getMessage() ," Read Record method.",JOptionPane.ERROR_MESSAGE);
                    dal.Disconnect();      
            }.start();
        public void closeFile() {
            input.close();
    }Edited by: firethumbs on Mar 26, 2009 12:43 PM

    IN THE NAME OF GOD
    hi firends
    i forget say one thing. if remove while loop content this program will work good. i suppose that the while condition and read file records not similar. because while condition check bytes but in while body read records. is that true?
    how can solve this problem?
    best regurds

  • Progress Bar or Progress Monitor for a system command

    Hello,
    I am running a DOS copy command in a Java Swing application. I understand that I
    can implement a Progress Bar or a Progress Monitor if I open the first file, read it,
    and write to a second file. But if I have a need to use the DOS copy command,
    is there a way to implement a Progress Bar or a Progress Monitor for it. If there is,
    could you please point me to some example code?
    Thank you,
    Chris

    Hello Chris,
    you would have to write some native code which peeks or watches the DOS process and its progress. Surely not an easy task. But without that information, how will you set values for the ProgressMonitor?
    What you could do, however, is showing an Indeterminate JProgressBar at DOS process start and make it disappear at process end.

  • Trouble in implementing a progress monitor?

    I need a lot of calculation when I click start button, so, I made a thread using SwingWorker class, this thread is responsible for the calculation. I need a progress monitor to display the progress of the calculation, so, do I need another thread to do it? How can I do it? Any suggestion is great appreciated.
    The following is the schetch of my class.
    // this class do the calculation
    // these stuff is within my button listener
    MyClass my = new MyClass(...);
    my.go();
    // stuff in go() method of MyClass is :
    final SwingWorker worker = new SwingWorker() {
    void construct(){
    // Do calculation
    void finished(){}
    How to add another thread to do progress monitor stuff?

    I assume your concern is about updating JProgressBar's value property from your SwingWorker's thread. Since you're using SwingWorker I assume you know the whole "Swing is not Thread-Safe" drill. If only Sun would specify a few more methods to be thread-safe, like JProgressBar's setValue! After all, isn't the raison d'etre of a progress bar to show how another thread is doing? Oh well, why not use my code, below. You don't need another thread, you only need to access Swing from the EDT, hence my calls to InvokeLater. And in case the progress updates come fast and furious, my code coalesces those events. Enjoy -- Nax.
    class Updater implements Runnable {
         public Updater(JProgressBar jpb) {
              this.jpb = jpb;
         public void run() {
              int v;
              synchronized(this) {
                   queued = false;
                   v = val;
              jpb.setValue(v);
         public void update(int v) {
              boolean go = false;
              synchronized(this) {
                   val = v;
                   if (!queued) {
                        queued = true;
                        go = true;
              if (go)
                   SwingUtilities.invokeLater(this);
         private boolean queued;
         private int val;
         private final JProgressBar jpb;

  • Firefox does not paint the window if Windows 7 Basic theme is selected and Fujitsu USB port replicator PR07 is used

    If I use "Windows 7 Basic" theme on my laptop (Fujitsu Lifebook A532), the Firefox window is not painted.
    I see only the border of the window, the content not. As soon as I switch back to the "Windows 7" theme,
    it works again.
    It could be related to the graphics driver (from Intel) of my new laptop.
    Before I had a desktop computer, and did not have this problem.
    Update: the problem occurs only if I use my port replicator (Fujitsu USB Port Replicator PR07).
    If I unplug the replicator, and use only the monitor of my laptop, everything is fine.

    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''Please create a screenshot of the problem you're seeing by following the guide mentioned at [[How do I create a screenshot of my problem?]].
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.

  • How do I add a progress monitor to a drag and drop question in captivate 7

    I need to build a quiz. We have spent a lot of time on the style guide and appearance but I am having difficulty adding a progress monitor to my drag and drop questions. How can I do this?

    A Drag&Drop is not a normal question slide, hence that progress indicator is not added, and it wouldn't even be functional.
    Long time ago I explained how to create a custom progress indicator, maybe it can help you: Customized Progress Indicator - Captivate blog

  • I want to use my apple TV as a second monitor not a mirrored one, in other words, I want to use my TV as a second screen not a copy of my first screen,other people have asked this question but have been given mirroring answers. I want a second display.

    I want to use my apple TV as a second monitor not a mirrored one, in other words, I want to use my TV as a second screen not a copy of my first screen,other people have asked this question but have been given mirroring answers so I am spelling it out here very specifically. I want a second display. This should be possible and would be awesome. Anyone know how to do this?

    Nevermind I just installed it to try it and it's awesome, so happy right now, Thanks. All the things I had read about it on third party sites led me to believe it could not do extended desk tops, thanks for your help!

  • Monitor not recognized by Mac anymore?????

    Hi
    This is big and what is APPLE doing to solve this issue??
    I just copy some posts from the forum to show how big this issue is, there is 8 more pages with the same problem, and i am one of them!!!!
    HELP!!!! WE ARE FREAKING OUT HERE AND NEED A SOLUTION!!!
    Yes, me. I have an HP w2207 who worked with my 3 y.o. old MacBook (OS 10.4.??) via the DVI-port flawlessly. Then bought a brandnew MacBook Pro with 10.6.X and the external monitor stopped being recognized. It works now that I have changed the connection to the VGA-port of the monitor (and bought yet another adapter for the MacBook Pro) but the quality is not what I'm used to.
    MacBook Pro Mac OS X (10.6.1) HP w2207 external monitor
    MattLTH
    Posts: 15
    From: Salt Lake City, UT USA
    Registered: Dec 4, 2007
    Re: External monitor not recognized!
    Posted: Dec 1, 2009 1:29 PM in response to: cruzcj
    Reply Email
    Yes. I've tried 7 different Macs including a MacBook Pro with Snow Leopard (10.6.2) and my external monitor doesn't work with it either.
    For me here's a recap:
    Installed SL on a Mac Pro connected to a 23" Cinema via DVI and Olevia 537 via HDMI Input #1 and now that input no longer works with Mac computers.
    Reinstalled 10.5.8 on the Mac Pro and HDMI #1 still didn't work, so I plugged the Mac into HDMI #2 and it worked.
    Reinstalled SL on the Mac Pro connected to a 23" Cinema via DVI and Olevia 537 via HDMI Input #2 and now that input no longer works with Mac computers.
    Since then, every device (PCs, DVD Players, Video Cameras, etc...) I connect to either of the HDMI inputs work fine. However, neither HDMI input works with ANY of the 7 different Macs (regardless of OS version) I've tried, except for a 10-year-old G4 running Panther or Tiger.
    The monitor had previously worked with the MacPro (HDMI input #1) and a G5 (HDMI input #2) for almost 2 years.
    When I plug the MacPro into any other monitor via HDMI, it works fine. Same thing with the G5.
    My theory is still that the installer for Snow Leopard somehow made my monitor's HDMI inputs incompatible with Macs. I'm so frustrated that I'm ready to buy a new monitor, but since there's no guarantee that a new monitor won't be adversely affected by Snow Leopard, I'm still dubious.
    Matt
    MacPro, MacBook Pro, PowerMac G5 Mac OS X (10.6.2)
    Stephen Darling...
    Posts: 59
    From: London, UK
    Registered: Sep 24, 2004
    Re: External monitor not recognized!
    Posted: Dec 5, 2009 8:22 AM in response to: Roger Kaufmann
    Reply Email
    Another "me too" post...
    Not sure exactly when it stopped working (since I don't use it every day) but my Viewsonic VX2455wm stopped working with my MacBook recently too. Checked with another MacBook (six months newer than my Late 2006 model) and that exhibited the same problem. Both machines have fully patched Snow Leopard installs. Both started with Tiger. Mine is regularly connected to the external monitor, the other has never been connected. I'm connecting using a DVI cable and a mini-DVI-DVI adapter.
    The monitor appears to work correctly. I've checked with a Windows laptop connected on the VGA port. I want to test with another DVI-enabled machine to see whether or not its the cable.
    MacBook C2D 2Ghz Mac OS X (10.6.2) iPhone
    cruzcj
    Posts: 4
    From: California
    Registered: Nov 28, 2009
    Re: External monitor not recognized!
    Posted: Dec 13, 2009 10:38 PM in response to: Stephen Darling...
    Reply Email
    My wife's 15" MBP arrived on Wednesday. Connected it tonight to her new Dell 23" ST2310 via a MiniDisplayPort to VGA and it works fine.
    MacBook Pro 15" 2.8GHz Mac OS X (10.6.2)
    Gaston55
    Posts: 4
    From: Sweden
    Registered: Dec 15, 2009
    Re: External monitor not recognized!
    Posted: Dec 15, 2009 12:06 AM in response to: Roger Kaufmann
    Reply Email
    Hi Guys
    I have the same problem with my new Dell 2209WAf. It worked fine before i changed from L to SL.
    I didn't know what happened so i have spend hours and hours to resolve the problem.
    Hours with Mac support and friends didn't change anything, i still cant make my Dell to work, or show up in preferences. I am working as a photographer and this issue is a real problem.
    I just heard from Mac Support that Apple is working on it.....well, doesn't help us with the problem today.
    So Apple, DO SOMETHING ABOUT THIS! NOW! this problem should NEVER showed up, this is something you should have fixed before telling all the Macers to upgrade!!!
    Macbook Pro Mac OS X (10.6.2)
    RWildman465
    Posts: 2
    From: Illinois
    Registered: Dec 16, 2009
    Re: External monitor not recognized!
    Posted: Dec 16, 2009 1:18 PM in response to: Gaston55
    Reply Email
    Experiencing the same issues. However, on bit different hardware.
    I'm using the XLR8 ProView USB input devices. Using these devices on a mixture of 10.5.8 and 10.6.2 systems (2 MacBooks, 2 Mac Mini and 1 iMac).
    I can confirm the following:
    When attempting to mirror video, or extend the desktop, using a mini-DVI to S-Video/Composite device on OSX 10.6.2 no video is sent to the mini-DVI device (inputing into the XLR8).
    When attempting to mirror video, or extend the desktop, using a mini-DVI to S-Video/Composite device on OSX 10.5.8 video is sent to the mini-DVI device (inputing into the XLR8).
    Let me also state, that the mini-DVI port on the Mac Mini's do work. They have been connected to 19" monitors and working without issue. Today, the mini-DVI devices were replaced with minidisplay port devices, which are use in conjunction with the mini-DVI ports.
    It would appear, in my case, that the problem is that the mini-DVI port on both the MacBook and Mac Mini, running 10.6.2, as a secondary display device is not operating properly.
    iMac Mac OS X (10.6.2)
    Todd Camp
    Posts: 2
    From: Chicago
    Registered: Dec 19, 2009
    Re: External monitor not recognized!
    Posted: Dec 23, 2009 12:41 PM in response to: RWildman465
    Reply Email
    Same problems here. I reloaded OS 10.4.6 which is what shipped with my MBP1,2 17" 2.16 Intel Core Duo 2GB ram and after installing that, i was able to select 1920x1080 for my external HP w2338h, DVI-VGA, never been able to connect DVI-HDMI. On SL, the max rez I was able to "use" was 1600x1200 which looked horrible. So this leads me to suspect that this must be an issue with SL.
    I spoke with Apple Tech support on Sat and was no help. The only suggestion was that I take my MBP and Monitor to the Apple Store. Those of you who are fortunate enough to live in Chicago in the winter, then you know that option really isn't that feasible, it is but just a giant pain.
    Early 2006 MBP 17" Mac OS X (10.6.2)
    Salm0n
    Posts: 1
    From: Minneapolis
    Registered: Dec 27, 2009
    Re: External monitor not recognized!
    Posted: Dec 27, 2009 9:57 AM in response to: Todd Camp
    Reply Email
    I have an iMac 9,1 Intel Core 2 Duo that I bought last June. It came with Leopard, but I upgraded to Snow Leopard. Currently, it's running 10.6.2. My HP w2207 Widescreen monitor works perfectly with it using the DVI port on the HP and the mini-display (not mini-DVI) port on the iMac.
    However, I just bought the top-of-the-line iMac 11,1 Intel Core i5 QuadCore three days ago and it crashes nearly every time that it wakes from "sleep" when the HP w2207 is connected to it. It doesn't even recognize that the w2207 is connected to it. Additionally, when the w2207 is connected, it (a) looks terrible - very dim and very granular, and (b) causes the iMac QuadCore to operate very sluggishly. When I disconnect the HP w2207, the iMac QuadCore is lightning-fast.
    Much like my older iMac, the QuadCore is running 10.6.2 and I'm using the mini-display port.
    iMac 11,1 & iMac 9,1 Mac OS X (10.6.2)
    Marjorie Colletta
    Posts: 20
    Registered: Mar 17, 2005
    Re: External monitor not recognized!
    Posted: Jan 6, 2010 6:07 PM in response to: Roger Kaufmann
    Reply Email
    This is a Me too post, I have a MacBook and NEC Multisync Monitor that worked fine before I upgraded to 10.6.2. I've tried to get it to work without any luck. I've written NEC to see if they have a solution.
    MacBook 2 GHz Intel Core 2 Duo Mac OS X (10.6.2)
    davej147
    Posts: 12
    Registered: Jun 1, 2006
    Re: External monitor not recognized!
    Posted: Jan 11, 2010 6:24 AM in response to: Roger Kaufmann
    Reply Email
    Another me too post. I have a new 17" MacBook Pro with 10.6.2 installed. Trying to connect to an HPL2245wg - sometimes it works flawlessly - other times not at all. Some mornings I spend 30 -40 minutes rebooting, unplugging and plugging the monitor, Detecting Displays, changing the Graphics Card (Energy settings) - all to no avail. Very, very frustrating Apple - please figure out what is going on with this issue....and get it fixed!
    17" MacBook Pro Mac OS X (10.6.2) Very happily gave all my XP-stuff away!
    Anteck
    Posts: 2
    From: Australia
    Registered: Sep 30, 2009
    Re: External monitor not recognized!
    Posted: Jan 20, 2010 2:31 PM in response to: Roger Kaufmann
    Reply Email
    Wow, me too. Did a minor software update (apple released it) last night, got on this morning and BANG - my main 24" Dell display is NOT working.
    This is ******, apple have surely f**ked up here. It's never had a hitch, ever, since i bought it 9 months ago.
    We are all reporting the same thing - software update, and then no working external display...
    APPLE???
    Macbook Pro 2.2 15" Mac OS X (10.6.2)
    Zedog
    Posts: 13
    Registered: Aug 10, 2006
    Re: External monitor not recognized!
    Posted: Jan 20, 2010 2:59 PM in response to: Roger Kaufmann
    Reply Email
    I seem to have found a fix for myself. I was having terrible issues with the screen blinking and flickering constantly. I tried to reset the SMC with everything unplugged and the computer would not reboot at that point on it's own which led me eventually to reinstalling SL.
    Reinstalling SL is quite painless actually as it installs on top of your profile. After reinstalling I ran software update which installs the cumulative upgrades. Now I usually don't have any problems but must follow the instructions to run in clamshell mode to the letter.
    After a week of running in clamshell mode I started having an issue with the dock not lining up so I put the computer to sleep, disconnected the monitor and restarted with nothing connected. After that, followed the clamshell mode instructions again and have been working fine again all week.
    I've also disabled my screen-saver, and deleted the windowserver preferences as part of my debug process but not sure if that has contributed to my new found stability.
    http://support.apple.com/kb/HT3131
    Mac OS X (10.6.2)
    pragmaik
    Posts: 2
    From: Duisburg
    Registered: Apr 16, 2008
    Re: External monitor not recognized!
    Posted: Jan 21, 2010 1:08 AM in response to: Roger Kaufmann
    Reply Email
    Me too. I have a MacBook Pro 2,2 running the latest Snow Leopard 10.6.2. After I have installed yesterday's security patch it does not recognize external displays on the DVI port any longer. Tried it with a 23" DELL at the office and a 23" Samsung at home. Both have worked without any problems for years.
    I am curious to learn how this behavior is related to security...

    Gaston,
    This is not the correct Feedback venue for your issue.
    Please select an appropriate product from those displayed HERE and use the corresponding form to communicate to the correct department.
    ali b

  • Final Cut Pro 2nd monitor not working properly?

    Been here before a long time ago, can't remember how it was resolved.
    Working in a new edit suite, FCP Studio.  Two new Samsung monitors (not my choice).  I want one to be my playback monitor.
    I set:
    Final Cut Pro > Audio/Video Settings
    > Digital Cinema Desktop Full Screen
    > View > External Video > All Frames
    But all I'm getting is a black frame on the 2nd monitor.
    They've also got one of those very flat alluminum keyboards ... where F12 becomes a sound control.  I'd love to know how I can change the function key to work as an FCP action / 2nd monitor toggling on and off.
    That's two questions.  Would be most appreciative of an answer for either.
    Ben

    Hey Andy,
    I did the first half of your suggestion, but not the second half.  Heading down to the studio this morning ... set up in a tiny white chapel looking out across the silvery North Atlantic ... and will try the second half of your suggestion.  Will also see if there are two graphics cards installed in the Mac Pro.  Will also check out the Window > Arrange in FCP (something I should have checked first off).
    I talked to a filmmaker who previously worked on the system, only to discover he never uses the second monitor as a full screen, but rather as a large 'bin'.  Interesting.
    If worse comes to worse and I can't solve it I suspect I could size the canvas window to super large and drag it over to the second monitor.
    Will post back when I've tried the latest suggestions ...
    Thanks you mucho guys,
    Ben

  • Adding progress Monitor

    HI All,
    I have been working with reading an XML file through a local path, and sending it to the server via a web service
    The code is something like this:-
    String strnewpath = vecPathPLS.elementAt(insel).toString();
    FileInputStream finpStream = new FileInputStream(strnewpath);
    len = finpStream.available();
    for(int i=1; i <= len; i++)
                                  postxml = postxml+(char)finpStream.read();
    //This postxml will be sent as a parameter to the webservice method"post"My problem is I have to add a progress monitor or a progress bar while the file input stream is getting read in postxml.
    I dont know how this can be done.
    Any help and code snippets from your side will really help me out
    Thanks a lot
    Shikha

    this thread from a couple of days back might help
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=708732

  • HT3964 imac intel monitor not working

    imac intel monitor not working

    Hi Robby62,
    please do report back.
    Also, after you have successfully installed the BootCamp Drivers from the Leopard DVD (which are version 2.0, btw.) you might want to download the 2.1 version update here: http://www.apple.com/downloads/macosx/apple/application_updates/bootcampupdate21 forwindowsvista32.html
    The update also has to be installed while in Windows.
    Have Fun
    Stefan

  • N570GTX M2D12D5 Dual monitor not recognized

    N570GTX M2D12D5
    Windows 7 64 bit
    Two monitors connected to DVI outputs
    Second monitor not recognized by Windows 7 or NVIDIA Control Panel
    Not found by Rigorous Display Detection either.
    Does something else have to be set to get this card to enable 2 displays?
    MMc

    remove current vga drivers in safe mode with >>Driver Sweeper<<
    then install 270.51 from nvidia web page and see how its goes

Maybe you are looking for

  • How Can I Recover Paid For iPod Click Wheel Games

    Well, well, well.  It seems that Apple iTunes had really ****** me off today.  Here is what happened Recovering iPod Classic Click Wheel Games Here is my story and at the bottom are my Questions The hard drive on my old computer crashed and I bought

  • RAC installation error

    Hi! Can anyone help me with this one? I have trying to installa RAC 10g R2 in Windows Server 2008 R2. I am encountering the error below: OUI-35073: Exception occured while starting service in the remote nodes. Could not start the service 'OracleClust

  • Delete all files in a directory not working for some files

    I have a requirement like wants to delete all the files in a directory. (These files got generated through some other program.) Problem is file.delete() is returning false for some of the files.. (donno the reason .. could be bcoz of file closing iss

  • Mail, Exchange, Acitve Directory and Single-Sign On Issues

    I have a brand new MacBook Air with Mavericks. 10.9.3. We are using a single sign on account setup for our machines. I enter my exchange log in details to access my account on my computer. It's labeled as a managed mobile account. When I open Mail, i

  • When will Adobe Flash Builder 4.6 support iOS 5.1 and the retina display?

    I have installed Adobe Flash Builder 4.6 along with the Adobe AIR 3.3 SDK and am understanding that there isn't support for iOS 5.1 nor the Retina display devices, is this correct?  If so, when will this be available?  If not, what is a good workarou