How to make a color screen in FCE ?

Hi there,
I need a still picture background that is filled up with one color. I know I can do that in Live Type and then import it in from Live Type.
But is there a direct way to create a one color still background in FCE 4??
Thanks

Tom Wolsky wrote:
From the Generators button use Matte>Color or Color Solid. Make it whatever color you want. Put it on the bottom layer in the timeline.
Thanks Tom, this is saves a lot of time.
Thanks

Similar Messages

  • How to make a Colorful Gif Image for Holi

    How to make a colorful Gif Image for Happy Holi 2014

    Okay, I know this doesn't answer your question, but don't get me wrong. A logo is meant to be the way it was designed - upright, no flipping/ swiveling animation. Why exactly do you want to let your logo turn around?
    If its to grab attention, why dont you consider animating the area on which your logo sits (header)? Or maybe add nice transitive slideshows on your main content area to add more interactivity?

  • How to make a selection screen two fields obligatory

    Dear friends...
       I wish to know how i make two fields obligatory in the selection screen
    like
       select-options  Po_Num for  ekpo-ebeln obligatory.
       select-options  Po_Date for  ekko-aedat.
       select-options  Material for  mara-matnr.
    in the above example i am looking for po_num and po_date both obligatory but if i dont enter data in the po_num, po_dat becomes obligatory and po_dat has no data entererd po_num is obligatory. i wish to know how i achieve single field act as a obligatory in absence of another field. please help in this regards..
    thanking you,,,
    regards.
    Naim

    REPORT  ZMM_COMP_POS  no standard page heading line-size 225
    tables:  ekko, ekpo, mara.
    data: begin of i_ekko occurs 0,
          ebeln like ekko-ebeln,
          ebelp like ekpo-ebelp,
          matnr like mara-matnr,
          aedat like ekko-aedat,
          waers like ekko-waers,
          ernam like ekko-ernam,
          end of i_ekko.
    data: begin of i_ekpo occurs 0,
          ebeln like ekpo-ebeln,
          ebelp like ekpo-ebelp,
          matnr like mara-matnr,
          aedat like ekpo-aedat,
          waers like ekko-waers,
          menge like ekpo-menge,
          meins like ekpo-meins,
          ernam like ekko-ernam,
          lgort like ekpo-lgort,
          netwr like ekpo-netwr,
          recd(16) type p decimals 3,
          rec_val(16) type p decimals 3,
          end of i_ekpo.
    data: lines type i.
    data :itab_output like i_ekpo occurs 0 with header line.
    data: itab_output3 like standard table of itab_output .
    data  data.
    data  total like sy-dbcnt.
    data  recd(16) type p decimals 3.
    data  rec_val(16) type p decimals 3.
    data : it like i_ekpo occurs 0 with header line.
    selection-screen begin of block b1 with frame title text-010.
    select-options Po_Num for ekpo-ebeln .
    select-options Po_Date for ekko-aedat.
    select-options Material for mara-matnr.
    selection-screen end of block b1.
    at selection-screen.
    if po_num[] is initial
      and po_date[] is initial.
    message e001(00) with 'Make at least one entry'.
    endif.
    start-of-selection.
    if  PO_NUM is initial and
         Po_Date is initial or
         Material is initial.
             select ebeln ebelp matnr
                    menge meins netwr
                    aedat
                    from ekpo
                    into corresponding fields of table i_ekpo
                    where ebeln in Po_Num.
    endif.
            loop at i_ekpo.
                  select ebeln aedat waers ernam
                         from ekko
                         into corresponding fields of table i_ekko
                         where ebeln in Po_Num.
                  if sy-subrc = 0 .
                     i_ekpo-aedat = i_ekko-aedat.
                     i_ekpo-waers = i_ekko-waers.
                     i_ekpo-ebeln = i_ekko-ebeln.
                     i_ekpo-ernam = i_ekko-ernam.
                     modify i_ekpo transporting ebeln aedat waers
                                                ernam
                                                where ebeln = i_ekko-ebeln.
                     clear i_ekko.
                   endif.
               endloop.
               describe table i_ekpo lines lines.
               if lines le 0.
                  message e017(zk).
               endif.
          select ebeln ebelp matnr
                 menge meins netwr
                 werks
                 from ekpo
                 into corresponding fields of table i_ekpo
                 for all entries in i_ekko
                 where ebeln = i_ekko-ebeln .
          sort i_ekpo by ebeln ebelp.
          sort i_ekko by ebeln.
          loop at i_ekko.
            read table i_ekpo with key ebeln = i_ekko-ebeln.
            if sy-subrc = 0.
                     i_ekpo-aedat = i_ekko-aedat.
                     i_ekpo-waers = i_ekko-waers.
                     i_ekpo-ebeln = i_ekko-ebeln.
                     i_ekpo-ernam = i_ekko-ernam.
               modify i_ekpo transporting ebeln aedat waers
                                          ernam
                                          where ebeln = i_ekko-ebeln.
           endif.
        endloop.
      describe table i_ekpo lines lines.
      if lines le 0.
        message e017(zk).
      endif.
      loop at i_ekpo.
       write:/1 sy-vline,
           (5) i_ekpo-ebeln left-justified ,sy-vline,
           (10) i_ekpo-ebelp left-justified ,sy-vline,
           (15) i_ekpo-aedat left-justified ,sy-vline,
           (18) i_ekpo-ernam left-justified ,sy-vline,
           (23) i_ekpo-matnr left-justified , sy-vline,
           (27) i_ekpo-menge UNIT i_ekpo-meins left-justified , sy-vline,
           (29) i_ekpo-meins left-justified , sy-vline,
           (31) i_ekpo-netwr CURRENCY 'INR' left-justified ,sy-vline,
           (33) i_ekpo-waers left-justified ,sy-vline.
    endloop.
       write:/(743) sy-uline.
    top-of-page.
        write:/30  'ESSAR CONSTRUCTIONS LTD.' color 6 inverse.
        write:80 'DATE :' color 6 inverse, sy-datum  color 6 inverse.
        new-line no-scrolling.
        write:/30 'PO Details.' color 7 inverse.
         write: /(743) sy-uline.
      format color col_heading on.
         write:/1 sy-vline.
         write: (5) 'PO no.',sy-vline,
               (10) 'Item no.',sy-vline,
               (15) 'PO Date' color 1,sy-vline,
               (18) 'PO Created By.',sy-vline,
               (23) 'Material No.', sy-vline,
               (27) 'PO Quantity', sy-vline,
               (29) 'PO Unit', sy-vline,
               (31) 'PO Value',sy-vline,
               (33) 'Currency' , sy-vline.
        write:/(743) sy-uline.
        format reset.

  • How to make a color wheel?

    I'm using CS4 on a Mac.
    I need to make a color wheel, like the attached, but with 24 segments.
    Could someone tell me how? Start with a circle, obviously, and then what?

    MarieMeyer wrote:
    If I wanted to try a different method - is there a way I can make a 15 degree segment with an arc at the top and bottom that I can fill with color, and then repeat it 23 times?
    The only way to do that and ensure your segments would meet in a perfect circle would be to start with the circle and divide it into a 15d segment, so you'd merely be tripling the amount of work.  Plus, it will be needlessly fussy to get that rotation correct.
    Here's what to do -- Create a circular band having the width that you want, divide it into segments, and paint the segments with the Live Paint tool:
    Draw your outer circle with the default empty fill and 1pt black stroke.
    Use Object...Path...Offset Path to offset that circle by a negative amount to get your inner circle.
    Select both circles and use Object...Compound Path...Make to get your circular band.
    Choose the Line Segment Tool, move your cursor until it's shown as being at the "center" of the circle band shape.  Hold down your Alt key to draw the line from the center of your drag and also hold down the Shift key to constrain your cursor to create a vertical line.  Draw the line until it extends past the outer edge of the circular band.
    With that line segment selected, double-click on the Rotate Tool, set a 15d rotation angle (from the center point, which is the default), choose "Preview", then click the "Copy" button to get a rotated line.
    Exit the Rotation options window, and with that last line still selected, keep hitting the Ctrl+D keys to duplicate that rotation and copy until you get your segments defined.
    Select everything and click on the selection with the Live Paint Bucket Tool to define the object as a Live Paint Group.
    Use the LPBucket to colour your circle segments as you wish:
    When you're finished, use Object...Expand to break the thing into two Groups:  the guidelines and the coloured segments.
    In the Layers Panel, select the guidelines group and hit your Delete key to get rid of the lines:
    Don't worry -- it took about 359 times longer to write all those steps than to actually do it!
    Ken

  • How to make a split screen picture?

    How do I make a split screen picture from 2 different pictures?

    Are you using Photoshop or Photoshop Elements?
    This question would be better posted in the Photoshop forum.
    Try http://forums.adobe.com/community/photoshop/general

  • [iPhone] How to make one color transparent on a UIImage?

    On my iPhone app I have a UIImage instance. I want to get a derived a UIImage that is the result of the first UIImage where one of its colors (e.g. magenta) is made transparent. How can I do this?
    NOTE: I cannot make the color transparent in Photoshop, the UIImage is created on the fly by the user. I need to do the "postprocessing" on the phone itself, after the user is done "drawing" the image.

    jubgb
    I still do not know your version of Premiere Elements and  your computer operating system, but here is a plan that would probably work for Premiere Elements 11, 12/12.1, and 13/13.1 on Windows 7, 8, or 8.1 64 bit.
    But you say that you are starting with a black and white image. If you could start with the color version of the image, I think we have a promising path to have the fake blood appear in color on a black and white image.
    This would be done by applying the Color Pass effect to the color photo version. Color Pass Effect is  found under fx Effects/Image Control/Color Pass.
    Then you would edit the Color Pass effect under Applied Effects Tab/Appied Effects Palette/Color Pass Panel expanded. But I find that the most effective editing of that effect is done using the Setup whose icon appear to the right of the Color Pass Panel.
    Have you used the Color Pass effect before?
    https://helpx.adobe.com/premiere-elements/using/effects-reference.html
    I will offer how to suggestion for its use if interested. As for starting with the black and white, then I need to think about that some more.
    ATR

  • How to make it full screen

    Hello
    I have made a slide show and I will be showing it threw a projector and I do not know how to make the slide show full screen.
    So how do i make the show be full screen?
    Thanks
    Greg Wyatt

    hey there Greg & welcome to Discussions.
    connect the projector to the Mac using the appropriate adaptor & cable, open System Prefs. > Displays > Detect Displays > Gather Windows. set rez for the projector & turn off Mirror. that's how you play your slideshow "through" the projector.
    good luck.

  • How to make background fit screen

    how to make background fit screen

    go to settings
    go to desktop & screen saver
    there you have a dropdownbox with all the options

  • How to make The Java Screen Recorder similar to this one?

    Can u talk about this how can make this code with java?
    http://www.devharbor.com/java/300-Screen-Recorder.html
    The author of this application says this maked by Java Swing.
    My Question is:
    What is Java Swing?
    It's easy to make this app?
    What API/Component needed for export video to MP4 Format like this application?
    How can make a similar application for education purpose with Java.
    Thanks

    808154 wrote:
    :) Thank you for answering my question,
    but impossible in nothing bro, Yea, that's what Aleksey Vayner claimed and he didn't do so well.
    I need to know about swing and start to work with java to develop this software and if I need some help I ask here.Clearly yes. You also need to make simple programs and practice for a long time before you're gonna be able to write a screen recorder with MP4 output.
    I try to develop this before 3-4 years ;)I guess 3-4 years is a realistic goal, if you really concentrate on learning Java.

  • How to make word colorful in JtextArea?

    word in JTextArea is black usually. is it possible to make word colorful? Or any other methods. any suggestions and examples are appreciated.
    thanks a lot.

    all one (foreground) colour and background colour, all one font? - sure no problem, but different colours and/or fonts - no chance! As the previous poster says, you need JTextPane.
    myTArea.setForeground(Color.cyan);
    myTArea.setBackground(Color.blue);
    myTArea.setFont(new Font("Comic Sans MS", Font.BOLD, 14));
    ... very pretty!

  • How to make a color bar expand to screen size?

    I'm building a website in adobe muse. I have a few color bars that I would like to reach the edge of the viewers screen (left and right) so that you can't see the edges of the bar. All of my content is centered, so it'd be ideal to accomplish this without causing the page to have a scroll bar(left and right)
    Thanks in advance,
    JON

    Tom Wolsky wrote:
    From the Generators button use Matte>Color or Color Solid. Make it whatever color you want. Put it on the bottom layer in the timeline.
    Thanks Tom, this is saves a lot of time.
    Thanks

  • How to make a big screen PLAY button for FLV which will fade away after the movie starts?

    I wanted to make play button. Kind of this huge one in the middle of the screen as users used to see on YouTube.
    Here is the code for it which seems to work:
    play_btn.addEventListener(MouseEvent.CLICK, onClick_Play);
          function onClick_Play(event:MouseEvent) :void {
      SWF_flv2.play();
    The problem is it doesn't dissapear once the video plays. How shoudl it be done, the whole video has to go to another frame with no play_btn on it or there is a code which can make it fade away?

    The FLVPlayback component can be set to use any number of controls for the video playback. You should use those for playback control once the video has started. If you do want to create all of your own custom controls, here's an Adobe tutorial on the FLVPlayback control structure: http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7f00.html
    And here is a third party tutorial on creating your own controls: http://www.lemlinh.com/as3-video-player-tutorials-roundup/

  • How to make a color effect

    hey,
    how can I make in adobe premiere pro this color effect? (looks like x-ray)
    thank you!!

    It might be a tad complicated.
    Because the hands stay pretty much the same, a simple invert might not work.
    It might require that the highlights and shadows be inverted individually, leaving the midtones alone.
    First try inverting the lightness, and try the luminance. Once of those might be sufficient.

  • How to make a splash screen

    Hello everyone,
    I am trying to make a kind of splash screen.
    I use JWindow for this and it works well.
    My problem is, that I need to make the background of the screen "non-opaque". So only the image I add will be shown, without the background rectangle.
    I search for something like setOpaque(false) method in class JButton.
    But there is no such method for this class.
    I would be very happy if you could help me.

    I tried this,
    but it does not help. The background is being shown.
    import javax.swing.*;
    import java.awt.*;
    public class SSB extends JWindow
         public static void main(String[] args)
              new SSB();
         public SSB()
              super();
              this.setBounds(20,20,300,300);
              MyContainer c = new MyContainer();
              c.setOpaque(false);
              this.setContentPane(c);
              this.show();
         class MyContainer extends JComponent
              MyContainer()
                   super();
    [\code]

  • How to make white colored sections transparent

    I have made a logo that consists of a black circle, with lots of text and shapes inside that are colored white. It looks fine on a white background, but when you change the background color the text stays white, when I want it to be transparent like a "cut out". How can I achieve this easily and still be able to edit the text?

    Thanks Jacob! This worked. I already tried clipping masks and pathfinder but they didn't work very well because I used strokes around the white shapes. Not sure about knockout groups, but it did what I wanted.

Maybe you are looking for

  • Unable to logon on SAP E-sourcing 5.1

    Hi, Unable to logon on E-sourcing 5.1 with 'enterprise' user id, error "Entry does not exist" Background: 1. We have installed SAP E-sourcing 5.1 on Netweaver platform. 2. Cretaed Enterprise context (example 'acme1') using 'system' user id and assign

  • Desperately in need of help restoring my photos from iPhone 3G!

    Hello All, This is the first time I've ever posted a question on the Internet and I am desperate.  I would go to an Apple Genius bar tomorrow if there was one near me...I really need to know if there is any way to restore the photos, list of contacts

  • How many generations of Airport Expresses is there?

    So I recently bought an airport express. But now I'm a bit confused if at the store they sold me the latest generation- I'm not sure how many generations there are- is it only one or...? On the box of mine its written: Airport Express                

  • Mini ipod menu and play buttons are not working

    My ipod menu button has not worked now for a few months. I can't get back to my main playlist and choose certain things, I just have to listen to the all the songs. Now the play button is not working either, its working to turn on-play-pause, but not

  • Added iPad to share everything but now it doesn't work

    I added my iPad 2 to a share everything plan this evening and was assured that it would be working tonight, and that I didn't need to do anything.  The Verizon rep said it would automatically update.  Now the iPad is showing on my Verizon account as