Viewer on second display, but also on main display?

Hi!
I use a MacBook Pro as second display for my iMac.
I know that it's possible to show the viewer on a second display but
I was asking myself if it is possible to show the viewer on my second display,
but also keep the viewer on my main display?
So I have a normal window with viewer, event, timeline etc. and, on the second display just a viewer.
I searched for that but I didn't find anything about that on the internet.
Would be nice if someone had that problem to and knows how to solve it!
Thank you!

I asked this same question on here a while ago and never got a response: https://discussions.apple.com/message/20987858#20987858
So it looks like nobody on here knows a way to have it set up this way, and it may not be possible until more updates come out, but I would like to know if there's a way to ask Apple/Final Cut developers or technicians themselves instead of on a public forum.  Then maybe we might get an answer.

Similar Messages

  • Time Machine no longer backs up data, but also doesn't display "Failed"

    Hello. I've had problems with Time Machine for a while now. First, instead of just performing an incremental backup, almost every day it tries to back up about 59GB of data, far more data than I'm changing. Then it started to fail after the first successful backup of the day. Once it begins to fail the only thing I've found fixes it is completely wiping the backup and starting from scratch. Now most recently it starts to backup (once again about 59GB of data) and then after about 1GB is backed up it just stops, with no message of failure but also not reporting that it backed up anything.

    If you are using a Windows partition or the VMware/Parallels equivelents, you might have a big chunk of data out there that does need backing up. Also, if you manually back it up, does it work?

  • Display works on HDMI and VGA but not on Main Display

    My G6 has been working fine for quite sometime.  Just the other day the screen went blank. I can see the backlight on but there is no desktop. I use this machine quite frequently to watch movies on my Vizio Tv through the HDMI port. I tried re-booting the machine. I could hear it booting up but still no display. I decided to plug it into the TV and it displayed at that point on both TV and built in display. I can do this also with the  VGA port as well. When I remove the cord from the ports I can no longer see the display. It will now only work when I have it plugged into the port. 

    Hi,
    That means the issue is caused by some trouble within the display assembly or connectors to the board. 
    Have you tried doing a hard reset?
    Is the machine under warranty? I would call up HP and give it for repair,
    If not, you could give it to a good local computer service shop to look into it.
    Regards
    Visruth
    ++Please click KUDOS / White thumb to say thanks
    ++Please click ACCEPT AS SOLUTION to help others, find this solution faster
    **I'm a Volunteer, I do not work for HP**

  • No page error but also no image displayed on the report ?

    Hi Everyone,
    First I like to apologise for the long post, but I would like to make sure that I am providing the full information so as not to waist anyone's time.
    As I am having problems displaying images, in a report, but I am not getting any errors, all I see is the typical red X where the image shout be. When I right click the red X and select properties, it all appears to be fine:
    http://127.0.0.1:8080/apex/ZOROPIO.FILE_TO_BLOB?p_file_id=6
    except that Type: Not Available
    and Size: Not Available
    So I decided to creating a table and procedures to specifically test my approach and I am still getting the same result.
    I have an Apex page where uses can upload an image to the system, using the following Page Process:
    On Submit - After Computations and validations
    FOR REC IN( SELECT FILENAME, MIME_TYPE
    FROM HTMLDB_APPLICATION_FILES
    WHERE NAME = :P4_FILENAME
    LOOP
    INSERT INTO AB ( FNAME, MTYPE )
    VALUES (REC.FILENAME, REC.MIME_TYPE);
    END LOOP;
    ZOROPIO.BLOB_TO_FILE(:P4_FILENAME);
    DELETE FROM HTMLDB_APPLICATION_FILES
    WHERE NAME = :P4_FILENAME;
    The AB table is define as:
    CREATE TABLE "AB"
    (     "DB_ID" NUMBER NOT NULL ENABLE,
         "FNAME" VARCHAR2(256 CHAR) NOT NULL ENABLE,
         "A_IMG" BFILE,
         "MTYPE" VARCHAR2(256 CHAR),
         CONSTRAINT "AB_PK" PRIMARY KEY ("DB_ID") ENABLE
    CREATE OR REPLACE TRIGGER "BI_AB"
    BEFORE INSERT
    ON ZOROPIO.AB
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    tmpVar NUMBER;
    BEGIN
    tmpVar := 0;
    SELECT NVL (MAX (DB_ID), 0) + 1 INTO tmpVar FROM AB;
    :NEW.DB_ID := tmpVar;
    IF :NEW.FNAME IS NOT NULL THEN
    :NEW.A_IMG := BFILENAME ('IMG', :NEW.FNAME);
    END IF;
    END BI_AB;
    ALTER TRIGGER "BI_AB" ENABLE
    The BLOB_TO_FILE procedure is defined as:
    create or replace PROCEDURE BLOB_TO_FILE (p_file_name VARCHAR2) AS
    l_out_file UTL_FILE.FILE_TYPE;
    l_buffer RAW (32767);
    l_amount BINARY_INTEGER := 32767;
    l_pos INTEGER := 1;
    l_blob_len INTEGER;
    p_data BLOB;
    file_name VARCHAR2 (256);
    BEGIN
    FOR rec IN (SELECT ID
    FROM HTMLDB_APPLICATION_FILES
    WHERE Name = p_file_name) LOOP
    SELECT BLOB_CONTENT, filename
    INTO p_data, file_name
    FROM HTMLDB_APPLICATION_FILES
    WHERE ID = rec.ID;
    l_blob_len := DBMS_LOB.getlength (p_data);
    l_out_file := UTL_FILE.fopen ( 'IMG',file_name, 'wb', 32767 );
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.Read ( p_data,l_amount, l_pos, l_buffer );
    IF l_buffer IS NOT NULL THEN
    UTL_FILE.put_raw (l_out_file, l_buffer, TRUE);
    END IF;
    l_pos := l_pos + l_amount;
    END LOOP;
    UTL_FILE.fclose (l_out_file);
    END LOOP;
    EXCEPTION
    WHEN OTHERS THEN
    IF UTL_FILE.is_open (l_out_file) THEN
    UTL_FILE.fclose (l_out_file);
    END IF;
    END BLOB_TO_FILE;
    This works fine, as I can see the data in both the OS Directory and the AB table after the user uplodas the image.
    I have then define an Apex Report pageto display the uploaded images. The page has the following Source:
    SELECT FNAME, MTYPE,
    '<IMG SRC="ZOROPIO.FILE_TO_BLOB?p_file_id='||NVL( DB_ID, 0)||'"HEIGHT="'||80||'"WIDTH="'||100||'"/>' AS IMAGE
    FROM ZOROPIO.AB
    The ZOROPIO.FILE_TO_BLOB procedure is defined as:
    CREATE OR REPLACE PROCEDURE ZOROPIO.FILE_TO_BLOB ( p_file_id NUMBER ) IS
    l_mime_type VARCHAR2 ( 256 );
    l_file_name VARCHAR2 ( 256 );
    l_bfile BFILE;
    l_blob BLOB;
    l_bfile_length NUMBER;
    l_blob_length NUMBER;
    BEGIN
    SELECT FNAME, MTYPE
    INTO l_file_name, l_mime_type
    FROM AB
    WHERE DB_ID = p_file_id;
    l_bfile := BFILENAME ('IMG', l_file_name);
    -- MAKE SURE THE FILE EXIST
    IF ( DBMS_LOB.FILEEXISTS( l_bfile ) = 1 ) THEN
    DBMS_LOB.CREATETEMPORARY ( l_blob, TRUE, DBMS_LOB.SESSION );
    DBMS_LOB.FILEOPEN ( l_bfile );
    l_bfile_length := DBMS_LOB.GETLENGTH ( l_bfile );
    DBMS_LOB.LOADFROMFILE ( l_blob, l_bfile, l_bfile_length );
    DBMS_LOB.FILECLOSE ( l_bfile );
    l_blob_length := DBMS_LOB.GETLENGTH ( l_blob );
    OWA_UTIL.MIME_HEADER( NVL ( l_mime_type, 'Application/Octet' ), FALSE );
    HTP.P ( 'Content-length:' || l_blob_length );
    OWA_UTIL.HTTP_HEADER_CLOSE;
    WPG_DOCLOAD.DOWNLOAD_FILE ( l_blob );
    DBMS_LOB.FREETEMPORARY( l_blob );
    ELSE
    RAISE_APPLICATION_ERROR(-20007, 'Requested IMG does not exist');
    END IF;
    END FILE_TO_BLOB;
    I have GRANT EXECUTE to ZOROPIO for both the procedures:
    BLOB_TO_FILE
    FILE_TO_BLOB
    The Oracle database verison, Apex version, etc details are:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Language: en-gb
    Application Express 3.2.1.00.12
    Any sugestions, help, etc would be much appreciated.
    Thank you
    Daniel

    Hi everyone,
    I have check everyone possible and I am unable to find the cause of the problem.
    I decided to recreate an identical setup to the examples provided by Denes on his workspace and I still have the same issue.
    I have change the wwv_flow_epg_include_modules.authorize to include Denes procedure as you can see below.
    CREATE OR REPLACE function APEX_030200.wwv_flow_epg_include_mod_local( procedure_name in varchar2) return boolean is
    begin
    if upper(procedure_name) in ( 'my_image_display' ) then
    return TRUE;
    else
    return FALSE;
    end if;
    end wwv_flow_epg_include_mod_local;
    The only way I can get it to work is to change the function to RETURN TRUE before the IF statement.
    Any suggestion and this stage may prevent my insanity from getting to silly levels.
    Regards
    Daniel

  • The dock indicator lights look fairly dim on the MBA display, but bright on external displays (LCD TVs for example). Any fixes?

    (MacBook Air mid-2012)
    As stated in the title, I've noticed the indicator lights on the dock which represent an open/running application looking fairly dim as opposed to the previous dock design in Lion. After a little look around on the internet, there are some others who are having a similar issue, but I've noticed that upon connecting the laptop to external displays (monitors and LCD TVs), they look extremely bright and noticeable on that particular screen.

    https://discussions.apple.com/message/19126554#19126554 This thread appears to address the same issue, yet its odd how the dock "raises" if connected to an external display in my case. I'm considering locating the image files used to display the dock indicators and photoshopping them to be brighter.

  • Can not properly view cover flow in full screen in external display

    My mac is the new Mac book pro 15.4 inch screen and I connect my mac pro to external display e.g. Samsung LCD monitor 24 inches.
    The bug is that I can not PROPERLY view full screen (in external display) for some application e.g. iTunes, and Front Row.
    - When I use iTunes, I can not properly view Cover Flow view in full screen (in the external display screen) except the case of mirror display.
    - For Front Row, I can not view full screen in external display but only my mac display.
    However, for other DVD or VDO players, I can view movie on external display in full screen and I still be able to do other works on my mac screen.
    Please let me know how to solve it.

    found the likely issue!  are you participating in youtube's html5 trial?  go here and it will tell you if you are:
    http://www.youtube.com/html5
    exit the trial and it should fix the issue.  it worked for me!

  • ITunes Visualizer on External Display Blacks Out Main Display

    Is it possible to have the iTunes Visualizer full screen on an external display while keeping the main display active?
    In other words, I'd like to have my 2nd monitor display the iTunes Visualizer in full screen while I do work on my main screen. Every time I try this it forces the main screen to go black.
    Does anyone have a solution, or is this just the limitations of iTunes and/or the Mac?
    (By the way, the closest I've come is to put the iTunes window on the 2nd display, start the visualizer, and make its window as large as it will go. But, you still see the top of the iTunes chrome above and below the visualizer.)

    I realise this is an old post, but have not yet seen an explanation of how I have solved this problem.
    Its not a complete solution as it only works if you want to use iTunes, and does require an iPad or an iPhone.
    First configure the Apple remote App on your iPhone, or iPad, or both   iPad is best, but iPhone works almost as well.
    Check that you can control the music from your i'Device'
    Drag the iTunes window onto the external screen/projector.   I am assuming external monitor with a different screen geometry to main screen, but if you can handle some gaps, you can mirror displays just as well.
    Turn on the Visualiser - and put it into full screen.
    If you can't see the external screen the following short cuts are useful. 
    ⌘T - turn on Visualizer
    ^⌘F - turn on Full Screen
    Your main screen will blank out, but you will still have full control of your music from the Remote App.
    Very cool if you are having a party, and want the visualiser on the large LCD TV, or on a projector. 
    Steve

  • Macbook pro 2010 with 2 external monitors without its main display

    Hi guys, I have been searching for a way to have 2 monitors without macbook's screen itself.
    I'm aware of various adapters through usb and etc.
    But Im thinking, if mac book is only capable of outputing 2 displays, why not outputing main display to one external monitor, instead of the screen on the computer, and the other external montior as a extra one?
    Is it possible ?  so basically 2 external monitor with macbooks screen switched off.
    I don't think apple tv can mirror one and add extra one   can it?
    I just want 2 big monitors instead of 1 big monitor with 1 tiny screen of the laptop.

    Maybe someone with a 2010 model will jump in and correct me, but as you only have a single Mini DsplayPort adapter, I don't think that it's possible to have two external models on a 2010 model. You can only do it on 2011+ via Thunderbolt using Thunderbolt Displays.
    You might want to ask your question in the Apple Cinema Display forum, though. I'm just not aware that it can be done.
    Clinton

  • Imac g5, screen issue, gets main and second display but only shows second which is 800x600, not the 1600x1400

    Hello,  i have a  power pc g5 running 10.3.5  i have a issue not being able to get the correct display to show. When it start up it comes up with a screen size of 800x600, which i can not change or select the main display, also the computer computer does not shut down or restart unless you hold the power button. Hopefully someone can help me, i am new to apples, i have a few for my kids and i am learning, any help would be appricated.  Thank you

    not sure how to update this , this ia  a imac 20 inch all in one desktop

  • How can I view ipad screen on computer, when I pad display is broken but internal system works

    how can I view ipad screen on computer, when I pad display is broken but internal system works

    THIS WORKS FOR ME
    ON MAIN SCREEN GO INTO VIDEOS THEN SETTINGS ON NEXT SCREEN
    SET TV OUT TO EITHER "ASK" OR "ON"
    TV SIGNAL SET TO PAL
    FIT TO SCREEN SET TO ON
    REMAINING SETTINGS TO OFF
    CONNECT TO TV SCART OR RED,WHITE YELLOW SOCKETS WITH IPOD/TV LEAD AND AWAY YOU GO.

  • Opening a new file in photoshopcc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    opening a new file in photoshop cc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    Graphics card is the problem.
    Trying to update drivers now.
    Thanks for your help
    john

  • How to set up my display to be the main view HELP

    How to set up my external display automatically work as the main display when plugged into my MacBook Pro. I had it set up to work this way on my old MBP but I got a new MBP with Mountian Lion and the Display set up seen different and I can figure out how to make my Apple HD display (about 3 years old) be the main display when I turn on my MBP. Mirror is off when I look at
    System pref’s – Display – Arrangement I just get to pick which display is left and right. I cant remember how it was set up on my old MBP. Mirroring does me no good. Any help will do!!!
    Thanks Brad

    In System Preferences > Displays > Arrangement tab.  Drag the little grey rectangular "menubar" to the other monitor.

  • I'm trying to set up a dual monitor for my new iMac. I'm using a second display I used with my old G5. My iMac recognizes the second monitor but the monitor won't turn on. Power button doesn't do anything on the monitor itself.

    I'm trying to set up a dual monitor for my new iMac. I'm using a second display I used with my old G5. My iMac recognizes the second monitor but the monitor won't turn on. Power button doesn't do anything on the monitor itself.

    If it won't turn on then the monitor is dead (power supply?, video circuits?).  Not worth repairing.
    If you have a new iMac then it has thunderbolt.  So exactly what is that monitor you are trying to connect?  For TB you can connect a mini-displayport monitor.   Probably (not 100% sure with TB) can use dvi or vga too if you have the appropriate adapter.

  • View contents of external display on main display (PIP-style)

    I occasionally connect a TV to my MacBook Pro to watch movies and TV shows.  The problem is that I cannot see the TV from where the computer is located.  The computer must stay in this location in order to remain connected to the external HD and A/V receiver.  I'm looking for a way to monitor what's on the external display from the main display so I can more easily drag and position windows onto it.  Sort of like having a small picture-in-picture style window in the corner.  I don't believe this is possible natively, but are there any third-party products that could achieve this?
    Thanks in advance.

    None that I have ever heard of.

  • How to view all secondary monitors on main display

    I have 2 secondary monitors plus my 27inch main ... and they all work ! However,What I would like to know is....Is there a way to see the secondary monitors on the main 27 ? ......example : one of the secondary monitors, is in another room .. how can I view whats on that monitor from the main 27in ? Thanks in advance for any/all help ! .. if you have any questions please feel free to ask......
    J

    Okay, the DDL method is not going to work. Let me go back to my original question:
    I use this command to view the source of a procedure, but I still cannot select source from a remote server across a dblink. How do I specify the remote schema with the user_source?
    select line, text
    from user_source
    where type='PROCEDURE'
    and name='MY_PROC1'
    order by line;
    or this:
    ...from sys.user_source...
    or this:
    ...from sys.user_source@dblink1...
    To APC: Regarding your comments about reading the docs, understanding privileges, decent source control and configuration management, etc., I would like to offer a few arguments which I think invalidates these (your entrenched) assumptions about proper Oracle development and the use of forums. Contact me offline if you are interested in learning more about the superior approach to development my work embodies.
    Edited by: user652257 on Jun 23, 2009 12:50 PM

Maybe you are looking for

  • AMD Radeon HD 8610G/8670M framerate drops

    Hi there During the last year I have been able to play Battlefield 3 and 4 on fairly low resolution and graphics setting obtaining an average fps of 50 (BF3 1366*768 on low settings) and 30-40 (BF4 1280*768 on Low settings) but as of a few days ago p

  • Cannot see whole flash movie when previewing

    hi when i preview F12 my flash composition, i cannot see the entire flash movie.only part of it. the rest is cut off. and there are no scrollbars to move the image to see the rest of it. how do i fix this? regards Angus

  • Itunes on laptop and pc and iphone

    I have two itunes accounts.  One on laptop and one on pc.  I have an iphone4.  When I sync with laptop, it replaces itunes with pc itunes.  If I sync with pc, it replaces pc itunes with laptop itunes.  I have different things in both.  I want to clos

  • Can Time Machine Backup a Disk that has OS 10.4.11 On it?

    I have two startup disks on my computer. One starts up with OS X 10.5.2, and the other starts up with OS X 10.4.11. I also have a third disk that I use as the Time Machine backup disk. If I have started up with OS X 10.5.2, can I backup the disk that

  • Microsoft files Read-only when sharing between two Macs

    I'm trying to share Excel files between my Macbook and my iMac. The files are located on my macbook and I've given read/write permission to the folder containing the files. When I try to open the files on my iMac they open as read only. This happens