Display the Program/Project Monitor via a projector

I will be making a presentation to a video club on using keying and how to use Ultra Key. In order to demonstrate how the various parameters affect the cleanliness of keying I will need to output the content of the Project Monitor to a large screen via a projector. However, I need to use the laptop at the same time to actually manipulate the process. Is this doable at all ??? I use PP CS6 and Windows 7. Can the Project window displayed/exported to a projector on its own without using additional hardware..

Tommy
it all depends upon your graphics card and the software it uses.
the vga output will show on a second monitor but may not show other than a copy of the laptop monitor, or it may be that you have to send all the display out via vga or you may be lucky
if it is an oldish laptop which I presume it as as you do not state that it has a hdmi port then with vga you are limited in resolution and you may have to set up a 800x600 workspace and use that in your demo.  This is something that i have had to do myself in the past when lecturing.

Similar Messages

  • Portege R500: cannot connect the remote DVI monitor via Dynadock

    Hello,
    I just connected Dynadock (DVI) with my Portege R500. The notebook would be supported -- according to Toshiba -- but my experiment confirms that Dynadock is not able to access DVI port. This implies, that Dynadock is nothing more than USB HUB.
    My setup: Vista 32b Business (CZE edition), latest fixes, Toshiba R500.
    Software: latest dynadock software 2.3c.
    Symptom: I cannot connect to the remote DVI monitor via the dynadock, only two external panels with 800x600 are available, but Vista does not allow me to choose them.
    More info: Dynadock Software requires to run without Microsoft Defender, else it blocks service:DisplayLinkService; file:C:\Program Files\DisplayLink Core Software\DisplayLinkService.exe
    If you disable MSDef, the message "error 2738" appears when you connect the dynadock and when Vista tries to install a missing drivers for you.
    Yes, I do know the VBS issue, and the problem is not caused by VisualBasic -- VBS "Hello World" runs.
    If you still believe, that Toshiba Dynadock is compatible with Toshiba R500, then press Fn-F5 and peek at your logs and you must find something like:
    In English: igfxext.exe throws an exception 0xc000000d, offset 0x0000f9f8.
    I welcome any comments, hints etc. If you are able to pass this bug report to a responsible engineer, do so please.

    Hello again Leo
    I still believe you are wrong. Toshiba Dynadock is not designed for Toshiba products only. It is universal product and can be used on every notebook. To be honest I believe it is better to use it with new, more powerful, notebooks.
    When you sat your notebook model is listed as compatible I believe you. Why not? Toshiba can list all newer notebooks. No problem at all. To be honest I am also interested to buy Dynadock but after reading your posting I wanted to see how it works exactly.
    I have contacted my friend because he works in one big electronic store and I was lucky because he had Portege M500 too.
    He was very nice and offered me to test Portege M500 SSD model with Dynadck PA3542EY1PRP. I hope you have the same model. It is DVI model. So I have done follow:
    - Portege was preinstalled with clean Vista OS (factory settings started for the first time)
    - I have installed latest Dynadock Utilitiy for Vista 2.3c
    - Installing this software you must pay attention about installations steps and the installations procedure should not be interrupted
    at one step there is window Installation Complete but it is not complete and must be continued with
    Display Link Core Software installation
    Video Dock installation
    at this point the Dynadock must be connected to favorite USB port NOT FROM THE BEGINNING
    - At the end I have restarted notebook
    The installation was finished properly and I have connected 20 Toshiba Tekbright LCD display (DVI cable). The native resolution is 1680x1050. in Display properties there are shown three displays. Display number 3 belongs to display connected to the Dynadock.
    Resolution 1680x1050 was there and display shows perfect picture. I have tested it as extended desktop and it works without problems. I didnt test it playing some movies.
    I have also tested it with FN+F5 key combination. It does not work as it should be but there is definitely no error message. I know that FN+F5 key combination is not designed for external graphic card and I know that it can not work well.
    At the end I can sat that Dynadock works well with Portege M500 SSD and there is definitely no error message. It works with Vista very well. I have tested it with screen saver and with few restarts. Nothing changes. Everything was OK.
    So after this test I can say that you have done some mistake. If you want to use it again I recommend you to install Vista again using recovery image. After doing this you will have clean preinstalled OS. Install software but please follow the menu on the screen and be sure all three components are installed properly. If I am remembering well when you see message about USB audio device installation you must connect Dynadock and continue installation.
    PLEASE FOE DYNADOCK USE ALWAYS THE SAME USB PORT!!!
    Sorry for this long story but I can say for sure IT WORKS PROPERLY!!!
    Have a nice day!

  • Function module to display the programe name , title, linesize..etc

    hi Guru's,
    My requirement is to create a fuction module  for displaying the classical report header and footer.
    in header i need Program Name,Program Title ,page no, date , time , user..
    Can any one provide me with function module.
    cheers,
    kumar.

    hi,
    you can make this type of FM or take help from this...
    CALL FUNCTION 'Z_Z00_STD_HEADER'
           EXPORTING
                line_size           = sy-linsz
                listtitle           = sy-title
           EXCEPTIONS
                mandt_not_found     = 1
                line_size_too_small = 2
                OTHERS              = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                 
    FUNCTION Z_Z00_STD_HEADER.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(LINE_SIZE) DEFAULT 80
    *"     REFERENCE(LISTTITLE) DEFAULT SPACE
    *"     REFERENCE(PARAM1) OPTIONAL
    *"     REFERENCE(PARAM2) OPTIONAL
    *"  EXCEPTIONS
    *"      MANDT_NOT_FOUND
    *"      LINE_SIZE_TOO_SMALL
      data : pos_center1(3) type n,
             pos_center2(3) type n,
             pos_right1(3)  type n,
             pos_right2(3)  type n,
             tit_len type i.
    Table to store the client name
      DATA iT000 type T000.
    Clear Internal Table
      CLEAR it000.
    Get client name from the T000 table
      SELECT SINGLE MANDT MTEXT INTO iT000 FROM T000
             WHERE  MANDT  =  SY-MANDT.
      IF SY-SUBRC NE 0.
        RAISE MANDT_NOT_FOUND.
      ENDIF.
      if line_size < 75.
        raise line_size_too_small.
      endif.
    Initialize values of the position counters
      pos_center1 = ( LINE_SIZE / 2 ) - 5.
      pos_right1 = LINE_SIZE - 19.
      pos_right2 = LINE_SIZE - 12.
      tit_len = strlen( listtitle ).
      pos_center2 = ( LINE_SIZE / 2 ) - ( tit_len / 2 )  - 1.
    Write the standard header
    First Line
      uline at (line_size).
    Second Line
      WRITE:            /3 text-010,                 "Report Text
                        12 sy-cprog.   "PERIASAS on 19/04/2004
      WRITE AT pos_center1  iT000-Mtext.
      WRITE AT pos_right1   text-006 RIGHT-JUSTIFIED. "Date Text
      WRITE AT pos_right2  sy-datum RIGHT-JUSTIFIED.
    Third Line
    WRITE:            /3 text-009,                 "Report Owner
                       10 sy-uname.
      WRITE  AT  /3 param1.      "PERIASAS on 19/04/2004
      WRITE  AT  pos_center2 listtitle.
      WRITE  AT  pos_right1  text-007 RIGHT-JUSTIFIED. "Time Text
      WRITE  AT  pos_right2 sy-uzeit RIGHT-JUSTIFIED.
    Fourth Line
      WRITE  AT  /3 param2.   "PERIASAS on 19/04/2004
      WRITE AT  pos_right1  text-008 RIGHT-JUSTIFIED.  "Page Text
      WRITE AT  pos_right2  sy-pagno RIGHT-JUSTIFIED.
    Fifth Line.
      uline at (line_size).
    ENDFUNCTION.
    with regards
    Lokesh
    Edited by: Lokesh Tripathi on Oct 16, 2008 12:32 PM

  • HT201210 After downloading latest version of iTunes it will not open.  This error message is displayed;  The program can't star because MSVCR80.dll is missing from your computer.  Try reinstalling the program to fix this problem.  Then a second error box

    After iTunes requested that I download latest version on PC it now will not open.  2 error messages appear.  first:  The program can't start because MSVCR80.dll is missing from your computer.  Try reinstalling the program to fix this problem.  second:  iTunes was not installed correctly please reinstall iTunes. Error 7 (Windows error 126).  I have tried reinstalling a number of times and restarting computer but no luck.

    This happened to me today as well post installing the latest version of itunes.   I did a search on google for the error and came across a recommendation to :
    Note: Start Windows in Safe Mode to complete any of the following steps if you're unable to access Windows normally due to the msvcr80.dll error.
    If, and only if, you're receiving the msvcr80.dll is missing error when you open Apple iTunes, do the following: (skip this step if your msvcr80.dll error is occurring with a different program)
    Uninstall from Windows the following five programs in this order: iTunes, Apple Software Update, Apple Mobile Device Support, Bonjour, and finally Apple Application Support. If you have iCloud, remove it as well.
    Uninstalling these programs in Windows is done from an applet in Control Panel called Programs & Features (in Windows 8, 7, or Vista) or Add or Remove Programs (in Windows XP).
    Note: Songs and playlists in iTunes will not be removed when you uninstall the iTunes program or any of the other, already-mentioned Apple programs. If you'd still like to back them up, they're usually located in the My Music folder in Windows.
    Download the latest version of iTunes from Appleand note the location you're saving it to so you can find it once it's done.
    Run the iTunes installation as an administrator. If you're not sure how to do that, see How Do I Open an Elevated Command Prompt? for help. That procedure shows you how to open the Command Prompt program as an administrator, but the steps are essentially the same for anything, including the iTunes installation package you just downloaded.
    A general overview of removing and reinstalling iTunes can also be found here on Apple's site but the above procedure seems to work better in this particular situation.

  • Display the shopping cart details via Monitor shopping cart without the user being mapped in organizational structure

    Dear Experts,
    I have a scenario where the Project/Support team members won't be mapped into the organizational structure. But they must be able to view the shopping cart details. Could you please help me in providing some clue to achieve this.
    As of now, I am getting the below error if the user is trying to view the shopping cart details when the user is not mapped into the organizational struture.
    Thanks in advance for your help.
    Best Regards,
    Bharathi

    Hi Bharathi,
    Make it more simple. Create a separate organizational unit for the Support/Admin team and intergrate the users there.
    It's the common practic.
    Regards
    Konstantin

  • How can I connect multiple devices to Mac mini display port? I need to connect a Canon 5D to my Mac and display the result on a VGA video projector. I am using mini hdmi to mini display for the camera. Can I connect the VGA to any other port?

    Hi there I am connecting a Canon 5D to my laptop trying to use it as a webcam trough camtwist.
    At the same time I need to output the streaming to a videoprojector.
    The cam is connected to the mini display port do there is no port available for the VGA cable anymore.
    Do I need to use a different port for the projector? Should I buy a video card?
    Can't connect the camera via USB as that is too slow and it will freeze.
    Many thanks for all your help
    Best
    Faeve

    You might do better on a forum other than this one, which is "Using iPhone"

  • How do I get my Pioneer stereo to display the correct time information via Bluetooth audio?

    I recently bought a Pioneer Stereo System for my car. However, when playing music from my iPhone via Bluetooth, the time informaiton for the song is displayed incorrectly. Example: I start a new song from my iPhone, and my Pioneer system displays it as 1:12 into the song...

    You need to ask Pioneer that question.

  • Is imac and cinema display the same quality monitor?

    I'm looking to buy an imac but am really concerned about color quality. I currently have a cinema display and looking at this as a second computer. I've read some posts that suggest that the display technology in the imac is different than the quality of the display of the cinema displays. Yet from looking at the tech specs they appear pretty identical other than the glossy cover. Is this true?

    The 24" iMac should have the same image quality as a Cinema Display. The 20" iMac uses an inferior display.

  • Project Monitor Window and Timeline Tracks do not appear in new Project ?

    The Program Sequence Monitor and the Timeline Sequence 01 does not appear on opening of new project, eventhough checked in Windows Space.
    All existing projects are showing the correct layout  and can be used , but, i cannot activate a new project except import clips into project window..
    Any assistance would be appreciated.
    Operating system is i7 64 bit and Program is CS5.5.2 Premiere Pro.
    ie., The space is there but nil info ie, lines , tracks etc  for timeline to insert clips or to show in Monitor ?
    Message was edited by: Bob Dix Photographer

    I,ve been doing it for years , but, the timeline will not accept the clips AVCHD and the Project setting is correct ? I somehow got rid of the Sequence ICON top left in red ??????????????
    Message was edited by: Bob Dix Photographer
    Message was edited by: Bob Dix Photographer

  • System Monitoring: SAPDB Monitoring via RZ20

    Hi!
    I would like to set up the SAP DB monitoring via RZ20.
    Unfortunately if I start the tcode DB59 and try to enter there “Assistant” it takes very long and I am geting the following error:
    Name and Server          : SRM - servername
    BMRFC Function          : DBM_CONNECT
    Error                         : Communication Error
    Error Message            : Error when opening an RFC connection
    Error DBMRfcCommuncicationError at DB Instance CreateObject
    Message no. SADA009
    When I am executing the tcode DB50 then I get the warning: “Determining version data”, and then I get the same error:
    DB50
    Name and Server     : SRM - servername
    DBMRFC Function     : DBM_CONNECT
    Error               : Communication Error
    Error Message       : Error when opening an RFC connection
    Can some one help with the solution of the problem?
    Thank you!
    regards
    Thom

    Hello Thom,
    -> On what system you are going to set up the SAP DB monitoring?
    -> What is the version of your database < SAP DB >?
    -> What is the database of your system?
    -> What is the version/SP of the SAP basis on your system?
    -> Did you create the connection to the SAP DB in /ndb59?
        How did you do it?
      A)  Run /ndb59 -> click on "Integrate Database" =>
        select MAXD & give Name of Database Connection, for example, TEST
    … follow further & set::
    Database name
    Database Server
    && DBM user/password; Standard database user/password
    In the Automatic Monitoring folder => check the Activate Alert Monitor
    B) Run the Connection Test in /ndb59 for the TEST connection
    => let me know the results.
    -> Please check that the MAXDB client software installed on the application server.
        See SAP notes:: 822239     FAQ: MaxDB Interfaces
                                  822271     FAQ: SAP MaxDB client software
    -> Please check that the DBSL < MAXDB> database dependent part of the
         SAP kernel software installed on the application server. See SAP note
         822239 for more details.
    Thank you and best regards, Natalia Khlopina

  • Display the Current Running Files in the Label Control

    I have a label control in Windows Form Application, and i have the application to display the building and progress of the projects in the label control using C# code. Along with the update of the label, the progress bar should also show progress simultaneously,
    according to the building of the project. How should i do this ??
    Thanks.
    Tanmay

    Hello All;
    I want to know how can i display the current running project in the label control along side the same, i want to  display the progress of the files that are build successfully through a progress bar.
    What i need to do is when i click the button named as "Build" in the GUI it will display the selected projects to build from the CheckedListbox into the label control placed in the GUI.
    Please, provide me some hint regarding the same.
    Thanks.
    Tanmay
    Hello,
    It depends on what your application is and how you build these files, if possible you could share them with us.
    The most common way to display the progress, is to set the text for that label before or after we execute the line building these files.
    You could place the lines setting the text or change the progressbar.value before or after the building lines.
    Here is a simple sample using progressbar with a backgroundworker.
    http://stackoverflow.com/questions/12126889/how-to-use-winforms-progress-bar
    Regards,
    Carl 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need to get rid of flicker in between image displays--the PC in which LabVIEW 8.2 is installed is routing images via LaVIEW code & 'extended desktop' to typical visual projector and between each image display is a flicker--that we need to remove

    Need to get rid of flicker in between image displays--the PC on which LabVIEW 8.2 is installed is routing images via LabVIEW code & 'extended desktop' to a typical visual projector and between each image display is a flicker--that we need to remove
    Attachments:
    Get JPEG Files in the folder.vi ‏13 KB
    Display image on the screen.vi ‏34 KB
    Create image file path.vi ‏12 KB

    In response to below------Thank you Lynn-----Yes, there is a main panel--I will attach----and if you have any further suggestions please let me know--Thanks again
    How are you running this program? Is there a top level vi which calls the ones you posted? The Display image on screen.vi will display two images in succession, but according to the note on the block diagram the second image is blank. It seems as though this would intentionally create a flicker.
    The sequence structure is unnecessary. Dataflow will determine the order of execution. The only exception is the time delay in the third frame. Since it has no data dependency, a single frame sequence may be useful to assure that the delay occurs before the picture is updated. A simple state machine might be a more versatile architecture for what you may be trying to do.
    It is not necessary to write the FR.PanelBounds property immediately after reading it, nor is it necessary to read it a second time in the second frame. Just wire from the first read.
    Lynn
    Attachments:
    Main Front Panel with Rendv Final Nov 6 with pause.vi ‏755 KB

  • Selecting (and resizing, for example) a layer under the top layer via the Program Monitor

    Hello all.
    Using CS5
    I am in the timeline and have selected layer 1 which is a video layer
    Layer 2 is a title layer.
    I want to manually resize layer 1, via the Program Monitor.
    But when I go to the Program Monitor and select it Layer 2 (the title layer) becomes selected, preventing me from selecting and manually resizing/repositioning Layer 1.
    The above example is a simplified version of what I usually find myself doing.  Usually I have many layers above a layer that I want to resize or reposition (or do something else) but when I try to resize or repositon via the program monitor I am only able to manipulate the top layer.
    Any suggestions, other than locking every layer other than what I want to resize etc .?
    Thanks
    Rowby

    Hi Bill,
    No they are separate orginal tracks. 
    Is there a way to "select" a layer below the top layer via the Progam Monitor -- and perform modifications on that lower level -- such a manually resizing on the Program Monitor.  I find if I want to do it via the Program  Monitor I have to temporarily lock the top layer.
    And if I have lots of layers above the layer I want to manually resize, I have to lock all of the layers above that layer so I don't start moving around (for example a title layer which might be the top layer of the sequence) in order to manually resize via the Program Monitor.
    I know (for example) in the case of scaling or repositioning a layer I could do it via the effects control panel, but I often want to do it via the Program Monitor.
    Rowby

  • My garageband can't be used because when I open a project (new or old) the program extends beyond the bottom of the display screen and I can't access what is below the bottom of the screen (like the record button).  I know there's a simple fix, but what?

    My garageband can't be used because when I open a project (new or old) the program extends beyond the bottom of the display screen and I can't access what is below the bottom of the screen (like the record button).  I know there's a simple fix, but what?

    two things to try: either click the green "zoom" bottom at the topLeft of the window in the title bar, or go to your System Prefs and then Displays, and increase the resolution that is used

  • Why does my video clip show in the program monitor only when it is playing (the program monitor is blank otherwise)?

    I am using WIndows 7 64 bit, and the most recent version of Premiere Pro CC on an I7 machine with 8GB of memory.  I have imported a HD .mov clip and placed it on the timeline.  When I press 'Play', it shows in the Program Monitor window.  When I stop the playing, the window goes blank.  I have rendered the clip (it has a yellow bar above it).  Even after rendering, the yellow bar remains and the sequence only displays when it is playing.  The source monitor has the same behavior. 
    Not being able to see where I am in a clip is making editing very difficult.  I have used Premiere Elements for five years, I have taken the Lynda.com course, so I have some familiarity with the program that suggests that the frame at the point of the CTI should show in the program and source monitors.
    What do I need to do to be able to see the frame in the monitors when it isn't playing?
    Update:  I spent 35 minutes with Tushar in a technical support chat (case number: 0186148124), during which time we deleted the contents of the Media cache folder in C:/Users/Your User Account/AppData/Roaming/Adobe/Common file (after using task manager to close coresync32.exe and creativecloud32.exe) and renamed both the Adobe folder and the 8.0 folder in Documents/Adobe/Premiere Pro/8.0.  This didn't get it, but was necessary for the next step:
    Going to the File menu, Project Settings, and selecting 'General Settings', Tushar had me change the Renderer to Mercury Playback Engine Software Only (I don't have a GPU accelerator video card yet).  I received a warning that all previews would be deleted, which I accepted.  That brought the image back to the Program Monitor.
    I've posted this for anyone who may experience a similar challenge in the future.  Despite a lot of Google searching before I contacted Tech Support, I didn't find anything even close to the description of the problem.  I hope this provides that source for future searchers.
    Jeff

    Thanks, Ann.  As I mentioned in my post, Tushar correctly pointed out that, without a GPU accelerated card (which I don't have - mine is a piece of junk which I will be replacing with a compatible one soon) you must use the software only settings.  I had changed my project over to the 'software only' setting, and I still had the problem.  The value Tushar added was the procedure for clearing the cache.
    What I did originally was a newbie error, no argument.  I posted it here for others who may fall in the same hole.  Your reply confirms that, without a GPU accelerated card, use the software only settings (sounds so obvious, yet I missed it.....).
    Jeff

Maybe you are looking for

  • Can't get embedded OC4J to work on Jdev  10.1.3.0.4

    I completed half of the tutorial "Building XML-Enabled JavaServer Faces Application" to the point where I am asked to run the ADF application and I get the error "06/09/27 21:55:32 Error parsing internal-settings.xml: server-extension-provider class

  • Media Encoder stops working and I get the goat.

    I have downloaded the latest update for Media Encoder CC 2014 8.0.1.48. All day I have had hit and miss success when encoding. Sometimes it works, and sometimes it will fail and I get the goat sound. I hate the goat sound. This has only happened sinc

  • Will updating to Mavericks wipe my itunes library?

    hi, im just about to update my macbook air to mavericks and just wondering about two things. i have my entire library stored on my portable usb harddrive as its pretty large. and like 70% of my songs are rated for my playlists. Just wondering if ther

  • Monthly Sales By Sales Employee

    Hello All! Is there any report that shows Monthly sales by Sales Rep.  So basically, consolidating all invoices for a rep by month. The headers would look like this: Sales Rep...Jan...Feb...March...April...etc. Total Thanks! Mike

  • Smart Folders and Spotlight

    Previous discussions on this forum regarding Spotlight's inconsistent ability to find files caused me to disable Spotlight (using Spotless) and use Easy Find to find things. No one warned me that disabling Spotlight would interfere with smart folders