Color display for film/broadcast?

I am using Maya 6.5 and Adobe After Effects 6.05 standard for computer animation, and I am trying to properly set up my G5 imac display for film or broadcast applications. (but not for web)
Is there a recommended display profile for such work?
Are there any good hardware or software solutions to assist in getting the color I want to see later on dvd or film?
Any good references or links?
Thanks!

I am using Maya 6.5 and Adobe After Effects 6.05 standard for computer animation, and I am trying to properly set up my G5 imac display for film or broadcast applications. (but not for web)
Is there a recommended display profile for such work?
Are there any good hardware or software solutions to assist in getting the color I want to see later on dvd or film?
Any good references or links?
Thanks!

Similar Messages

  • Color Display for PDF Files Creative Cloud in Browser View

    I have noticed that there is a great difference in color display between a PDF and .ai/eps files. When viewed in the browser there seems to be no ICC taking affect for PDF files even though options to include the profiles, etc in output were selected. This makes it hard to use as a tool when showing clients proofs via the browser as they will never see proper color. I know color will vary between monitors but the difference is huge for some colors. Like a dark almost Navy Blue appearing like a vibrant pen ink blue. On a Mac when you use the quick spacebar preview the correct color shows for all versions of file type but in the browsers it shows the color incorrectly. Have tried this so far on the Mac in in Safari, Chrome and Firefox. Even Google Drive can display all the file types correctly with correct color although the way it shows eps files is a bit off. That I don't mind as I rarely save eps files anymore.
    Is there something I am missing or is this a defect in the browser display?
    The other possible option would be to flip my thinking and save everything as .ai files with PDF compatibility turned on and then have to tell clients that they should be able to open that ai file in Acrobat. At the moment I save everything as PDF files with Illustrator compatibility turned on.

    Can anyone throw light on this. I'm facing same problem.

  • Alv color display for a cell

    Hi all,
      I need to display color for a field(cell) in a record.
    is there any events to handle this.
    please help me in this.
    Regards
    Anil Kumar K

    Hi,
    in OO ALV check this code../
    REPORT  ZTEST1234    MESSAGE-ID ZZ                           .
    DATA: G_GRID TYPE REF TO CL_GUI_ALV_GRID.
    DATA: L_VALID TYPE C,
          V_FLAG,
          V_DATA_CHANGE,
          V_ROW TYPE LVC_S_ROW,
          V_COLUMN TYPE LVC_S_COL,
          V_ROW_NUM TYPE LVC_S_ROID.
    *       CLASS lcl_event_handler DEFINITION
    CLASS LCL_EVENT_HANDLER DEFINITION .
      PUBLIC SECTION .
        METHODS:
    **Hot spot Handler
        HANDLE_HOTSPOT_CLICK FOR EVENT HOTSPOT_CLICK OF CL_GUI_ALV_GRID
                          IMPORTING E_ROW_ID E_COLUMN_ID ES_ROW_NO,
    **Double Click Handler
        HANDLE_DOUBLE_CLICK FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID
                                         IMPORTING E_ROW E_COLUMN ES_ROW_NO.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    *       CLASS lcl_event_handler IMPLEMENTATION
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
    *Handle Hotspot Click
      METHOD HANDLE_HOTSPOT_CLICK .
        CLEAR: V_ROW,V_COLUMN,V_ROW_NUM.
        V_ROW  = E_ROW_ID.
        V_COLUMN = E_COLUMN_ID.
        V_ROW_NUM = ES_ROW_NO.
        MESSAGE I000 WITH V_ROW 'clicked'.
      ENDMETHOD.                    "lcl_event_handler
    *Handle Double Click
      METHOD  HANDLE_DOUBLE_CLICK.
      ENDMETHOD.                    "handle_double_click
    ENDCLASS.                    "LCL_EVENT_HANDLER IMPLEMENTATION
    *&             Global Definitions
    DATA:      G_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,"Container1
                G_HANDLER TYPE REF TO LCL_EVENT_HANDLER. "handler
    DATA: OK_CODE LIKE SY-UCOMM,
          SAVE_OK LIKE SY-UCOMM,
          G_CONTAINER1 TYPE SCRFNAME VALUE 'TEST',
          GS_LAYOUT TYPE LVC_S_LAYO.
    *- Fieldcatalog for First and second Report
    DATA: IT_FIELDCAT  TYPE  LVC_T_FCAT,
          X_FIELDCAT TYPE LVC_S_FCAT,
          LS_VARI  TYPE DISVARIANT.
    *                START-OF_SELECTION
    START-OF-SELECTION.
      DATA:BEGIN OF  ITAB OCCURS 0,
           VBELN LIKE LIKP-VBELN,
           POSNR LIKE LIPS-POSNR,
           CELLCOLOR TYPE LVC_T_SCOL, "required for color
           DROP(10),
           END OF ITAB.
      SELECT VBELN
             POSNR
             FROM LIPS
             UP TO 20 ROWS
             INTO CORRESPONDING FIELDS OF TABLE ITAB.
    END-OF-SELECTION.
      IF NOT ITAB[] IS INITIAL.
        CALL SCREEN 100.
      ELSE.
        MESSAGE I002 WITH 'NO DATA FOR THE SELECTION'(004).
      ENDIF.
    *&      Form  CREATE_AND_INIT_ALV
    *       text
    FORM CREATE_AND_INIT_ALV .
      DATA: LT_EXCLUDE TYPE UI_FUNCTIONS.
      CREATE OBJECT G_CUSTOM_CONTAINER
             EXPORTING CONTAINER_NAME = G_CONTAINER1.
      CREATE OBJECT G_GRID
             EXPORTING I_PARENT = G_CUSTOM_CONTAINER.
    * Set a titlebar for the grid control
      CLEAR GS_LAYOUT.
      GS_LAYOUT-GRID_TITLE = TEXT-003.
      GS_LAYOUT-ZEBRA = SPACE.
      GS_LAYOUT-CWIDTH_OPT = 'X'.
      GS_LAYOUT-NO_ROWMARK = 'X'.
      GS_LAYOUT-CTAB_FNAME = 'CELLCOLOR'.
      CALL METHOD G_GRID->REGISTER_EDIT_EVENT
        EXPORTING
          I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
      CREATE OBJECT G_HANDLER.
      SET HANDLER G_HANDLER->HANDLE_DOUBLE_CLICK FOR G_GRID.
      SET HANDLER G_HANDLER->HANDLE_HOTSPOT_CLICK FOR G_GRID.
      DATA: LS_CELLCOLOR TYPE LVC_S_SCOL. "required for color
      DATA: L_INDEX TYPE SY-TABIX.
      "Here i am changing the color of line 1,5,10...
      "so you can change the color of font conditionally
      LOOP AT ITAB.
        L_INDEX = SY-TABIX.
        IF L_INDEX = 1 OR L_INDEX = 5 OR L_INDEX = 10.
          LS_CELLCOLOR-FNAME = 'VBELN'.
          LS_CELLCOLOR-COLOR-COL = '6'.
          LS_CELLCOLOR-COLOR-INT = '0'.
          LS_CELLCOLOR-COLOR-INV = '1'.
          APPEND LS_CELLCOLOR TO ITAB-CELLCOLOR.
          MODIFY ITAB INDEX L_INDEX TRANSPORTING CELLCOLOR.
          LS_CELLCOLOR-FNAME = 'POSNR'.
          LS_CELLCOLOR-COLOR-COL = '6'.
          LS_CELLCOLOR-COLOR-INT = '0'.
          LS_CELLCOLOR-COLOR-INV = '1'.
          APPEND LS_CELLCOLOR TO ITAB-CELLCOLOR.
          MODIFY ITAB INDEX L_INDEX TRANSPORTING CELLCOLOR.
        ENDIF.
      ENDLOOP.
    * setting focus for created grid control
      CALL METHOD CL_GUI_CONTROL=>SET_FOCUS
        EXPORTING
          CONTROL = G_GRID.
    * Build fieldcat and set editable for date and reason code
    * edit enabled. Assign a handle for the dropdown listbox.
      PERFORM BUILD_FIELDCAT.
      PERFORM  SET_DRDN_TABLE.
    * Optionally restrict generic functions to 'change only'.
    *   (The user shall not be able to add new lines).
      PERFORM EXCLUDE_TB_FUNCTIONS CHANGING LT_EXCLUDE.
    **Vaiant to save the layout
      LS_VARI-REPORT      = SY-REPID.
      LS_VARI-HANDLE      = SPACE.
      LS_VARI-LOG_GROUP   = SPACE.
      LS_VARI-USERNAME    = SPACE.
      LS_VARI-VARIANT     = SPACE.
      LS_VARI-TEXT        = SPACE.
      LS_VARI-DEPENDVARS  = SPACE.
    **Calling the Method for ALV output
      CALL METHOD G_GRID->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          IT_TOOLBAR_EXCLUDING = LT_EXCLUDE
          IS_VARIANT           = LS_VARI
          IS_LAYOUT            = GS_LAYOUT
          I_SAVE               = 'A'
        CHANGING
          IT_FIELDCATALOG      = IT_FIELDCAT
          IT_OUTTAB            = ITAB[].
    * Set editable cells to ready for input initially
      CALL METHOD G_GRID->SET_READY_FOR_INPUT
        EXPORTING
          I_READY_FOR_INPUT = 1.
    ENDFORM.                               "CREATE_AND_INIT_ALV
    *&      Form  EXCLUDE_TB_FUNCTIONS
    *       text
    *      -->PT_EXCLUDE text
    FORM EXCLUDE_TB_FUNCTIONS CHANGING PT_EXCLUDE TYPE UI_FUNCTIONS.
    * Only allow to change data not to create new entries (exclude
    * generic functions).
      DATA LS_EXCLUDE TYPE UI_FUNC.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_DELETE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_APPEND_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_INSERT_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_MOVE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_CUT.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE_NEW_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_UNDO.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
    ENDFORM.                               " EXCLUDE_TB_FUNCTIONS
    *&      Form  build_fieldcat
    *       Fieldcatalog
    FORM BUILD_FIELDCAT .
      DATA: L_POS TYPE I.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Delivery'(024).
      X_FIELDCAT-FIELDNAME = 'VBELN'.
      X_FIELDCAT-TABNAME = 'IT_FINAL'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-NO_ZERO    = 'X'.
      X_FIELDCAT-OUTPUTLEN = '10'.
      X_FIELDCAT-HOTSPOT = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Item'(025).
      X_FIELDCAT-FIELDNAME = 'POSNR'.
      X_FIELDCAT-TABNAME = 'IT_FINAL'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '5'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Drop'(025).
      X_FIELDCAT-FIELDNAME = 'DROP'.
      X_FIELDCAT-TABNAME = 'IT_FINAL'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '5'.
      X_FIELDCAT-EDIT = 'X'.
      X_FIELDCAT-DRDN_HNDL = '1'.
      X_FIELDCAT-DRDN_ALIAS = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
    ENDFORM.                    " build_fieldcat
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR 'MAIN100'.
      IF G_CUSTOM_CONTAINER IS INITIAL.
    **Initializing the grid and calling the fm to Display the O/P
        PERFORM CREATE_AND_INIT_ALV.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  SET_DRDN_TABLE
    *       text
    FORM SET_DRDN_TABLE.
      DATA:LT_DRAL TYPE LVC_T_DRAL,
            LS_DRAL TYPE LVC_S_DRAL.
      LOOP AT ITAB .
    * First listbox (handle '1').
        IF SY-INDEX = 1.
          LS_DRAL-HANDLE = '1'.
          LS_DRAL-VALUE =  ' '.
          LS_DRAL-INT_VALUE =  ' '.
        ELSE.
          LS_DRAL-HANDLE = '1'.
          LS_DRAL-VALUE =  ITAB-POSNR.
          LS_DRAL-INT_VALUE =  ITAB-POSNR.
        ENDIF.
        APPEND LS_DRAL TO LT_DRAL.
      ENDLOOP.
    **Setting the Drop down table for Reason Code
      CALL METHOD G_GRID->SET_DROP_DOWN_TABLE
        EXPORTING
          IT_DROP_DOWN_ALIAS = LT_DRAL.
    ENDFORM.                               " set_drdn_table

  • Witch Is The Best Color Display?

    Witch Is Really The Best Color Display For My iMac?
    There are 4 Color Display's on My iMac Witch do you think is the best 1 for My iMac Computer i want to get the best color possible please help me cause i don't understand how it all goes about?
    iMac
    Adobe (RGB) 1998
    Generic RGB Profile
    sRGB IEC61966-2.1

    no i'm not doing color critical work on my iMac i just went through the settings to check them out this morning & i wanted to know witch 1 is better see i recently bought a iMac 24 Inch Monitor 2.66 GHZ on monday july 27, 2009. & i went to check out the color settings this morning & i just wanted to know witch 1 of the 4 is better to use? i have checked them all out but right now i'm Sticking with the regular iMac Color 1 witch is the default o this iMac but what i was trying to say is witch 1 of the 4 Color's are better then all of them cause i want My iMac to be @ its best all the time so witch of the 4 color settings is the best 1 of the 4? just curious?

  • How can we change the  color of the image for product display for different

    Hi All,
    How can we change the  color of the image for product display for different colors, to be displayed on site.
    jeff

    Hi priya,
    The requirement that you have stated is not a standard feature in ISA CRM. In order to do the same, you will need to modify the standard ISA code in Java. A common path for the solution would be as follows:
    1. Colours
        a. Maintain a text type for Color under the object - PCAT_ITM in Customizing.
        b. Modify the standard search of ISA to search within your new text type as well. (In standard it only searches in Description.
       c. Maintain all shirts colour data in the new type created in step a.
       d. Your requirement will be done!
    2. Price
      a. Use list prices for your shop and assign the appropriate condition type, acces in your catalog.
      b. Modify the standard search of ISA to search on the list prices as well.
      c. This too will be done!
    3. Accessories - This is very tricky, and will require some exploration. However, here's my opinion,
    a. Search for the standard function module, which will return the accessories when provided the product as an input.
    b. Modify this function module according to your requirement and ensure that it can be accessed remotely.
    c. Modify the JSP as in steps 1b and 2b above to call this new remote-enabled function module.
    d. Now you're done!!
    The ISA modification part is not so simple, you need a really good guy like "Sateesh Chandra" who'll be able to handle your requirements. This is all I could manage, hope it is some help to you!
    Thanks & Regards,
    Nelson.

  • Display Color Profile For iiyama HM903DT

    I've just been given an iiyama HM903DT monitor but it doesn't want to play with my mac mini
    The trouble is this:- If a turn on my mac with the screen powered on my machine creates a color profile for it (from monitor dcc information I suspect). That would be ok if the profile was correct but it's not. On some jpgs and tif files are massively over saturated (for example gingerbread man.tif) yet other jpegs and tifs are fine.
    If I start up my mac without the screen turned on my mac defaults to "Display" for color and all is well.
    I've check in Universal Access and 'Enhance Contrast' is set correctly, I've also tried using color-sync to no avail......
    What can I do to stop this bug it's driving me nuts!!!
    thingi

    Me too. Snow leopard seems to ruin my 9CA3 screen because the color looks to be washed out.

  • I can't calibrate any color profile for my iMac's display!

    I think I accidentally deleted the color profile for my iMac's display
    and now it won't let me calibrate any profile! All the colors are bright and washed out.
    When I go to the display>color preference panel I get an error sound whenever I click ANY color profile, and it doesn't load. When I click "calibrate" it gives me the message: "Can not calibrate the display. The factory profile for the display could not be found."
    But I wasn't even using the factory profile, and it won't let me choose any other ones, either (though a whole list does show up!)
    I tried repairing/verifying the profiles in the ColorSync Utility, but it didn't help.
    Is there somewhere I can download the profile and install it? I'm running a white 20" Core Duo 2GHz iMac (summer of 2006), if that helps.
    Thanks!

    seenew,
    I'm wondering if you would have any luck with resetting the PRAM? PRAM settings hold some of the display preferences I believe.
    See: "Mac OS X: What's stored in PRAM"
    If not, I am wondering if reapplying the Combo update for 10.4.7 might correct the display calibration issue or at least return it to the default?
    I don't think that recreating the .plist file for displays will help.
    As far as I know you cannot "download" the profile.
    sorry if those suggestions don't help,
    littleshoulders

  • Best MAC 10.6 Color Display Profile for use with Adobe Illustrator CS5

    Hi everyone,
    Which Color display profile should I choose for my iMAC (10.6) using Illustrator CS5?  I need the colors to appear as accurate as possible when exporting PDF files.
    Thank you!

    Diane,
    The only Monitor profile you should ever use is a device-specific one created for your particular monitor.
    If you have not calibrated and profiled your monitor, thereby creating a monitor profile in the process, used the canned one provided by the manufacturer of youor monitor.
    Wo Tai Lao Le
    我太老了

  • What are the best Color "Display Settings" for both my Macbook Pro Retina and Thunderbolt Display??

    I have recently purchased a Thunderbolt Display for my MBPr (early 2013) and was wondering what were the best settings for both to obtain an equal color and graphic appearance. I want to have them identical for working on graphics and illustrations.
    Thanks

    I have the same laptop. There's nothing you really need to do to optimise the system. Perhaps just install the cuda drivers.
    It runs premiere like a dream.

  • Old iPod for new Color Display?

    I have an old iPod click wheel, the kind without a color display. It recently stopped working, and I have sent it in for service. If they replace it, will they give me a new iPod with the standard color display?

    No

  • Calibrating Apple Cinema Display for Video Editing

    What's the procedure to calibrate an Apple Cinema Display for editing in FCP (editing and preliminary color grading)?
    My camcorder can produce color bars, but I can't hook it up directly to the monitor. Shall I record color bars and use the recorded clip to calibrate? What's the procedure regarding calibration?
    Thanks!

    The need to "calibrate" a display for video "editing" is a complete fallacy. There is no need to have accurate images when plopping pictures and graphics next to each other to create a story in a linear fashion. For accuracy you need a dedicated input/output device with a display that represents your intended delivery; projection, broadcast, whatever. If your intended delivery is web or phone only, well, it's a total rodeo where the word "consistency" has no meaning at all.
    The MXO, it puts a look up table on a computer monitor and then does some other electronic mumbo jumbo to simulate interlacing and other tv junk. I call it lipstick on a pig, others here will give it high marks.
    The only real constant is that if you want to play in the world of "hd", the costs are bigger than in "sd" and is the return on investment worth it?
    z.

  • Color correction for tube vs lcd tv's?

    I did a few searches, and couldn't find anything on this topic. I know color correction is a big thing and I want to take full advantage of it, but one thing confuses me. If I shoot some footage, import, not do any color correction, burn dvd, and play that DVD on a LCD TV, wouldn't the color be the same? I know broadcast monitors are great for doing color correction, but isn't that for if you're going to watch the video on a tube or older tv? How does that work? Thanks.

    It is best to get a professionally balanced LCD or CRT display for color correction.
    WHY? Here is the BARNEY explaination:
    Go to Best Buy, Circuit City...Sears...and look at all the LCD and plasma TVs. Notice that not one matches the other in color. Many waaaayyy off.
    If you get a pro monitor and set it up properly, you know your colors are what they are SUPPOSED to be. Unfortunately, as your little experiment at Best Buy showed you...no one will see that perfect color correction. You know that your colors are right, and that most sets are wrong....but at least your colors are right.
    Now, lets not have this topic go on for pages...
    Shane

  • Messed up color display and resolution because of mini-DVI to video adapter

    Once I connected the mini-DVI to video adapter to the tv and got weird colors on my screen for a while but then it worked out, then after a while I disconnected the cable and turned my computer off. After that, everytime I turned my macbook on, the color is fine for two seconds and then it turns into a weird offset color, really bright colors, kinda sketchy and just a few colors, and a weird resolution and display obviously, but then I just connect my Mini-DVI to video adapter and disconnect it again (quickly) and the color returns to normal. How can I make the normal colors stay and not have to connect the mini-DVI to video adapater everytime I want to see the normal color display and resolution??
    please help!

    Open the Universal Access pane of System Preferences, click on Seeing, turn off the White on Black, VoiceOver, and Zoom options, and drag the Contrast slider all the way to the left. If the issue persists, create a new folder on the desktop, drag half of the items from the Library/Preferences/ folder of the item in the Finder's sidebar with the house icon into it, and narrow down the files until you've isolated the one responsible.
    (30807)

  • Using a second Mac as a display for a first

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    This Frequently answered question (FAQ) comes about:
    Can an iMac/iBook/Powerbook/MacBook act as a display for another Mac since they all have a built-in display?
    The truth is complicated because you have to consider who is doing the processing, and who has the drivers for the work being done.
    1. For people who want the processing power of multiple Macs together, there is
    Daugerresearch.com's Pooch.
    2. Apple's Target Disk Mode lets you treat the hard disk of one Mac as an external drive to another. You do have to be careful with this, only the Mac that is currently booted to an active screen has its drivers enabled. If you need the drivers of the other Mac to do some sort of installation, it may not work right, or if you need it to run specific software.
    3. The iMac 27" now has a DisplayPort Input port that allows displaying from a second Mac. See Using a 27-inch iMac as an external display. There are some hurdles to get there, however some third party solutions for those hurdles are listed on:
    http://lowendmac.com/ed/bashur/09db/dvi-to-mini-displayport.html
    4. If you have a second screen to initially setup a Mac as a server of some sort you can make it "headless" (i.e. no second screen necessary) using one of these solutions:
    iChat Screen Sharing
    OSX VNC
    Netopia's Timbuktu
    Apple Remote Desktop
    Microsoft Remote Desktop
    Screen Recycler
    Finder Screen Sharing
    The speed of your network though can make such solutions appear too slow for words. If you use IP over Firewire on Mac OS X
    10.5, 10.4, or 10.3 reasonable speeds can be obtained.
    Elgato makes Firewire compatible capture devices which can capture S-Video. If you output the video of that Mac to an S-Video connector, you can view its video on the Elgato capture screen in 720 x 480 resolution. This usually is too little real estate for an effective second display, but for some it may be the quickest solution available.
    In addition, Mac Minis, Intel based iMacs and Mac Pros do accept any display that supports VGA or DVI. Contrary to what you might think, you aren't stuck to Apple's displays. The Apple displays themselves are true Progressive LCDs that are widescreen with color matching, extra ports, and an extra place to put an iSight mount if you can find an original iSight. DVI supports more resolutions, and dual-link DVI even more.
    This is the 2nd version of this tip. It was submitted on March 12, 2010 by a brody.
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    Hi Brian,
    Thanks for using Apple Support Communities.  You can mirror the displays or make whichever display you want the primary in Extended Desktop mode.  See this article for details:
    How to use multiple displays with your Mac
    http://support.apple.com/kb/HT5019
    The white bar at the top of the left blue box represents the menu bar and determines which display is your primary display. To change your primary display, click the white bar and drag and drop it on the blue box representing the display you would prefer to be your primary display.
    Cheers,
    - Ari

  • HDMI to TV as Display for New Mac Mini DOESN'T WORK

    I bought a new Mac Mini and was told I could us HDMI to my TV as display.   I was using this TV as display for older Mac Mini (VGA) and for a Windows PC, and DVD via HDMI.     TV is one year old. 
    The Genius at the store who sold me the new mini said all I needed was an HDMI cable.   Which I purchased. 
    The screen comes up for the Setup Assistant but as soon I select continue is goes to gray, mixed color scanning garbage mode.    If I turn the TV off and back on, the screen returns (now at the next prompt in the setup assistant) but again it goes gray after hitting continue.    Unusable, CANNOT set up my new purchase.
    Unfortunately, the DVI to VGA adapter on my old mini is different and doesn't mate to the HDMI to DVI adapter that ships with new MacMini, so I can't test VGA.   The old DVI to VGA has extra pins not on the new one. 
    My purchase is not usable and is extremely poor.   Buyer beware I guess.   

    I have been using MacMini's for commercial digital signage/video conferencing gateway usage for sometime now, they all have HDMI output, about one third are on Lion the others still on Snow Leopard, here's what I have found.
    Toshiba & LG tv's are generally reliable, Samsung and Philips generally are not, Panasonic, Sony, Sharp & Viewsonic all work, somtimes with a bit of work from me.
    Cables are important (always look for compatibility with HDMI  revision 1.3 or greater (1.4 preferred), don't waste your money on exotic brands, adhere to the distance limitations, I generally send the HDMI signal wirelessly (cost of labor to add wiring to an existing space can be very high) so am limited to less than 50ft, same as with a wire.
    READ THE TV MANUAL, find out what HDMI choices your tv possesses, is there a 'parallel' audio input available for the times when your signal origin is a MDP or DVI.
    Some TV's just don't work well, cut your losses and get another when faced with this issue.

Maybe you are looking for

  • The date field does not appear on my form

    On my saved form, the date fields do not reveal the calendar icon to select a date like it does on the test form. The date field is instead a free text field. Can somebody explain what happened to the date field? Thank you.

  • Telnet Cisco SF300-08

    Hello guys...I just bought this switch last week.I tried to telnet this swtich using my laptop(windows 7 64-bit),but i failed.I suspect that this problem came from my laptop because i dont change any default ip setting of the switch. There are 2 thin

  • Export without artboard

    Hey all, If i export a file without using artboards there is no way to set crop marks?  I have hundreds of images that i made in CS4 and they exist with single artboards (obviously), but now when i export the image with the artboard i get -01 added t

  • Oid Configuration in WebLogic

    Hi, I am running an ADF Application which its secure by using the weblogic security provider (OID). With the following code: LOGGER.info(idStore.getStoreConfiguration().getProperty(OIDIdentityStoreFactory.ST_SUBSCRIBER_NAME).toString());I get "dc=com

  • ICR PROCESS 001 functionnality - Field catalog

    Hello, i am implementing the new solution ICRC in my french customer for version ECC6. i tried to add the field BVORG through the customizing point FBIC006 ("create additionnal field") for process 001. i activated the transaction data tables (FBIC004