Graphics

 View Only
  • 1.  Set background image in sequencer or test alpha in sequencer

    Posted 07-29-2017 05:24
    hi guys,
    i was wondering if there is a way to drop a global background image for testing purposes...i know u can do it in vizArtist; basically to see how any masking or alpha channels are looking. Also
    is there a way to check the alpha signal in the sequencer? bec. when i play a scene in the sequencer it's always on black....i could probably just add a background object in my scene, but is that accurate?

    thanks for your help


  • 2.  RE: Set background image in sequencer or test alpha in sequencer

    Posted 07-29-2017 23:16
    Hi mlister... I don't believe there is a "global background" option in Xpression. I wish there was. I wish they would adopt the checkerboard pattern so we can easily see our keyable elements. I totally understand your frustration with the background being black. I recently worked a show where all the L3rds had black bars. My solution was to make a background object which was 50% grey. That way I could check the keyable elements. Unfortunately I don't know of a way in Xpression to change the background. If I'm wrong, please reply to this post so we can both learn something new. Cheers!
    #XPression


  • 3.  RE: Set background image in sequencer or test alpha in sequencer

    Posted 08-04-2017 13:32
    XPression 7.1 will have an option to show the checkerboard background in the Sequencer preview window.

    #XPression


  • 4.  RE: Set background image in sequencer or test alpha in sequencer

    Posted 08-04-2017 16:44
    Yay! That's great news!

    As a workaround, I started adding an _Overlay group to all of my scenes. I put stuff (backgrounds, safe title frames, operator notes) into the overlay group, then add scripts to OnPreviewRender and OnOnline to show the Overlay on my preview canvas, but prevent them from playing to air (so I don't have to remember to turn them off).

    'Show Overlay (Add to OnPreviewRender)
    dim overlay as xpBaseObject

    if Self.GetObjectByName("_OVERLAY", overlay)
    overlay.visible = 1
    end if

    --

    'Hide Overlay (Add to OnOnline)
    dim overlay as xpBaseObject

    if Self.GetObjectByName("_OVERLAY", overlay)
    overlay.visible = 0
    end if


    #XPression


  • 5.  RE: Set background image in sequencer or test alpha in sequencer

    Posted 08-04-2017 16:59
    You can also see the key channel in the Viewport by going View > Channels > Key
    #XPression


  • 6.  RE: Set background image in sequencer or test alpha in sequencer

    Posted 08-04-2017 18:37
    You can also create a Layer Object in the scene and set it to "Render on Preview Only"
    #XPression


  • 7.  RE: Set background image in sequencer or test alpha in sequencer



  • 8.  RE: Set background image in sequencer or test alpha in sequencer

    Posted 08-04-2017 23:11
    thanks everybody for their responses...any idea when 7.1 will be released?
    #XPression