How to make white letters with black contour line in Title Tool?

I have version 7, I have to match the subtitles of a formerly edited piece which are in Gill Sans with a black contour.  I only know how to use Shadow.
Can you help me?   Thank you very much.

Thank you Meg:  I got on Boris 3D to the screen you're showing with the letters Gill Sans, but it only had Font and Size. When I clicked on the alignment lines it didn't respond. Also it had a shadow instead of just plain black contoured letters.  When I closed the window it brought a message: Do you wish to save the effects Settings?  I clicked OK just to get out of the window.  In Controls there was no Text and no Text Settings (see the Snapshot).  Still title 3D click for Options.  However the text appeared in the Video tab.
that's how far as I got.
Can you give me a hint of how to get from here to Text Settings please?  I'd be most grateful.

Similar Messages

  • How to make mask image with free contour points

    I use CVI and VDM8.6, how can I create a mask image with free contour points like the sample image?
     This example is made with vision assistant,

    Hi,
    If you look at the tutorials in fireworks such as changing images/rolover images you will start to get an understanding.
    Cheers

  • How do I get keyboard from white keys with black letters to black keys with white letters. This OS7 keyboard is very annoying to type with

    how do I get keyboard from white keys with black letters to black keys with white letters. This OS7 keyboard is very annoying to type with

    Go to System Preferences > Universal Access > Seeing tab > Turn voiceover off.
    Captfred

  • How do I get a white background with black lines

    How do I get a white background with black lines and characters on my screen. To run the program, copy it out and delete the ` and it should go. If it does not compile on your machine, I would like to know. There is a test on about line 34 for changing the colors.
    `//Simple program to test Graphics2D.setBackground(white) obtained from BufferedImage.getGraphics()
    `import java.awt.Frame; //Object>awt.Component>Container>Window>Frame
    `import java.awt.Insets; //Object>awt.Insets
    `import java.awt.image.BufferedImage; //Object>awt.Image>awt.image.BufferedImage
    `import java.awt.Graphics; //Object>awt.Graphics
    `import java.awt.Graphics2D; //Object>awt.Graphics>Graphics2D
    `import java.awt.Color;
    `import java.awt.BasicStroke;
    `public class TstBgCol { //frame & BufferedImage in pixels & BasicStroke in points ????????????
    ` TstBgCol tstBgCol;
    ` public static void main(String[] args) {
    ` TstBgCol tstBgCol=new TstBgCol(); tstBgCol.tstBgCol=tstBgCol;
    ` tstBgCol.main2(); tstBgCol.byteBinary();
    ` }
    ` Graphics fgcontext;
    ` Frame fram; Insets insets; //borders of the Frame, Container.getInsets
    ` int bIWid=1272,bIHgt=876; //set for 1280x1024 screen on windows XP & matches paper ratio 10.6x7.3
    ` int unusedPixHgt=84;
    ` void main2() {
    ` fram=new Frame();
    ` fram.addWindowListener(new java.awt.event.WindowAdapter() { //anonymous inner class
    ` public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); }
    ` });
    ` fram.setVisible(true);
    ` insets=fram.getInsets(); //(Container)getInsets() works after displayable
    ` System.out.println("Insets l,t,r,b:"+insets.left+","+insets.top+","+insets.right+","+insets.bottom);
    ` fram.setSize(insets.left+bIWid+insets.right,insets.top+bIHgt+unusedPixHgt+insets.bottom);
    ` fgcontext=fram.getGraphics(); //creates Graphics context for this component
    ` }
    ` void byteBinary() {
    ` BufferedImage buIm=new BufferedImage(bIWid,bIHgt,BufferedImage.TYPE_BYTE_BINARY); //can be resized
    ` Graphics2D bIG2=buIm.createGraphics(); //returns Graphics2D context
    ` //change to if(true) to use either of the following two lines
    ` if(false) bIG2.setBackground(Color.white); //does not change the background color to white
    ` if(false) bIG2.setColor(Color.black); //does change the foreground color to black
    ` edgeLinesAndX(buIm,bIG2);
    ` fgcontext.drawImage(buIm,insets.left,insets.top,fram);
    ` }
    ` private void edgeLinesAndX(BufferedImage bI,Graphics2D bIG2) { //really on the edge
    `      BasicStroke strk=new BasicStroke(10f); bIG2.setStroke(strk);
    ` int x0,y0,xmx,ymx;
    ` x0=bI.getMinX(); y0=bI.getMinY(); xmx=bI.getWidth()-1; ymx=bI.getHeight()-1;
    ` bIG2.drawLine(x0+xmx,y0,x0,y0+ymx); //lo-left to up-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0+ymx); //up-left to lo-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0); //up-left to up-right
    ` bIG2.drawLine(x0,y0,x0,y0+ymx); //up-left to lo-left
    ` bIG2.drawLine(x0,y0+ymx,x0+xmx,y0+ymx); //lo-left to lo-right
    ` bIG2.drawLine(x0+xmx,y0,x0+xmx,y0+ymx); //up-right to lo-right
    ` bIG2.drawString("("+x0+","+y0+") wid="+(xmx+1)+" hgt="+(ymx+1),(xmx+1)/5,(ymx+1)/5);
    ` }
    `} //the result on my screen is a black background, why?????

    How do I get a white background with black lines and characters on
    my screen.Contrary to what you might think, the linebIG2.setBackground(Color.white);does not give the buffered image a white background. The API docs
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html#setBackground(java.awt.Color)
    say: "Setting the background color in the Graphics2D context only
    affects the subsequent clearRect calls... " So adding a line to your
    if blocks we getif (false) {
        bIG2.setBackground(Color.white);
        bIG2.clearRect(0, 0, buIm.getWidth(), buIm.getHeight());
    if (false) {
        bIG2.setColor(Color.black);                    
    }Changing the false to true results in a white background (and black
    X and text).

  • How to change white background with text to transparent background

    Good afternoon,
    I have a jpg file (part of our logo) white background with black text and I would like to change it to transparent background and keep the black text (to be able to insert it on a cup image).
    I tried to change it in photoshop, however, when I slide the "opacity" and "fill", the text got ligther as well.
    Do I need to have the original psd.file to be able to do that, or can you please lead me through with jpg file? (I tried to save the jpg to psd and png, but it did not help.)
    I looked on one of your videos, but I could not find one of the features under "Select" tab.
    My plan is to recreate the text to have the transparent background if necessary (It would be great if I can avoid that). However, how do I find out which font was originaly used? Does photoshop has this feature, or do I need to go trough each of the font one-by-one?
    My last question is, how do I change space between letters (to have them more tight. I am not able to find it.
    Thank you for your help,
    Klara

    If you can get teh original PSD file get it, your task will be a lot easier.
    I suspect that won't be an option to you.
    If you know what fonts are being used, that also would be of benefit to you. In other word remake it using your image as a template.
    If it going over an image, then a multiply blend might work for you.
    All that fails then you are down to removing the white background. The problem this option is it will not look as good due to the thin lines on the fonts. But essentially, Load the image into photoshop, make sure the layer isnt locked, then try the magic eraser tool on the white background, bam it'll disappear, but leave the white inside the O white you will have to do seperately.
    Messing with levels will help you with more of the white. Myself i'd rebuild it using the fonts.

  • My iPad wont turn on, its black screen then i press home power buttons together and white screen with black apple logo come out after 5 seconds black "lighten" screen comes out and its stuck just like that! Whats the problem?

    HI
    this happened today suddenly while i was working on my iPad it kicked my out of the app that i was using then white screen with black apple logo came out, i thought it was an ordinary thing cause this happens all the time with me, but this time it refused to turn on! After the white screen with the black logo vanished i wad waiting for my lock screen but no, a black screen showed up just like that! And could tell it was black "lighten" screen i tried more than 10 times to do the home+power thing but it wont work, whats wrong with my ipad!

    If the battery is completely drained it may take some time while on the charger before the iPad responds. Plug the iPad into the charger that came with it and plug that into a good wall outlet. Wait one hour. Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. If the iPad restarts let it continue to charge until the battery is 100%. If it doesn't start up make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support. They will examine your iPad and explain your options.

  • HT5654 my iphone 5 fell did not break but went completely black and non responsive. When I plug it to the computer I get a white screen with black apple. When I push both the Top and Homne buttons simultaneously I get the charger picture plug end plus arr

    my i phone 5 was dropped, didn't break but went completerly black screen and nonresponsive. I pushed both the home button and top button no response. I plugged it to the computer it gave me white screen with black apple. I pushed the home and the top went black then gave the itune and the charging plug picture. I tried to download and update, the message came as couldn't restore due to unknow error. Any help??

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • SMARTFORMS - White letters on black back ground

    Hello Experts
    I am creating a smartform that has white text and black back ground.  In print preview it looks perfect but when I send the form to the printer the white letters do not appear, it is all black.  I did a print screen when it was in print preview mode and it printed fine on the printer, white letters on black back ground.  What am I missing to get it to print via smartforms, something in the CALL FUNCTION?   
          CALL FUNCTION fm_name
            EXPORTING
              control_parameters = gs_control_param
              output_options     = ls_output
              is_packlist_data   = i_packlist
              zle_ps_header      = ls_header
              user_settings      = space
            TABLES<br />
              text_lines         = lt_text_lines.

    Hai Gary,
    Welcome to SDN.
    Nothing is wrong with you print program.
    Just need to change your Printer . As the normal printer can print only black letters.
    You need to get a colour printer to get the desired result.
    Hope this solves your issue.
    Cheers,
    Suvendu

  • Photoshop-how to print white letters on transparent background

    I would like to print white letters on a transparent background.  The color white is selected, but it doesn't print print.  I have a logo with a circle and the letters are inside.  I have tried this in both photoshop and photoshop elements.
    Originally, I wanted a white circle with black letters.  The black letters print, but not the circle.  The circle is filled with pure white.  Then I tried the inverse and the black letters printed and not the white circle.  Any help would be appreciated.  Thanks.

    One thing more, in the event that you are considering offset lithography, the lithographer, on occasion, is asked to print white ink on colored paper stock. In that case, since a single litho ink film is only 1 to 2 microns in thickness, it usually takes two or more overprints of white to hide the paper color. Moreover, when a simulated white panel is requested  on white coated stock, it is not unusual to print the panel in gloss or dull varnish so that the difference in shine creates the panel.

  • How to make White, White ?

    My Photo Editing skills and experience are minimal and specially for the purpose of Photo-Texturing 3D Geo-Models (geo-located) for Google Earth.
    I have been doing this for 3 years. However, I have yet to figure out how to edit photos so that White looks White.
    Instead, they almost always look Bluish White.
    Can someone please share with me how to make White areas in Color photos, appear White ?
    I will be forever grateful for this information, especially if I can receive it quickly.
    Thanks in Advance.
    SnowTiger61 (aka SnowTiger at Google Earth and Google Forums)

    Make a test image In Elements with only a white background.  Verify that the background colour is the RGB values of 255,255,255.
    If this looks Bluish white then you have a problem with your montior calibration, since 255,255,255 is as white as you can ever get.
    You don't say how you calibrate your monitor, nor the colour space in which you are working.  There is only one way to accurately calibrate and profile a monitor and that's with a hardware device like an Eye-One Display 2, or Spyder.  This is not for printing accurately but for accurate on screen rendering.
    Any other method is guess work.
    Also keep in mind that to accurately rendere colours on screen needs a colour managed program.  Elements is, but others you are using may not be.  In which case the best colour space to use is sRGB.  However, once you get your screen to look right there is no guarantee that others will see the same colour unless they also calibrate their screens.
    Colin

  • White Font with Black Outline

    Does anyone know how to create a white font with black outline? I need this for a heading that is on a busy background so the title can be read more clearly.

    KOENIG Yvan wrote:
    Isn't it what we may achieve in Pages using:
    Format > Font > Outline ?
    Yvan KOENIG (VALLAURIS, France) jeudi 12 novembre 2009 21:23:00
    Nope. You get a transparent letter. Refer to your solution in the above link.
    Walt

  • HT4053 I start my new iPhone 5s 64 for first time , no hello screen , only white screen with black apple logo

    I start my new iPhone 5s 64 for first time , no hello screen , only white screen with black apple logo
    How can I start my iPhone (I already did restart - it didn't help)

    Did you activate the phone already?

  • How to make text columns with adobe muse

    Hi,How to make text columns with adobe muse (like InDesign)?

    Multiple columns can be acheived with CSS - http://www.w3schools.com/css/css3_multiple_columns.asp
    div
    -moz-column-count:3; /* Firefox */
    -webkit-column-count:3; /* Safari and Chrome */
    column-count:3;
    I'm surprised that Muse does not support text columns yet, but perhaps the custom CSS can be added in style tags on page properties. Haven't tried it, but don't see why it wouldn't work.

  • My iphone 6 wont go past the start up screen (white screen with black apple) iv treid restoring it on itunes but it disconects its self half way through

    my iphone 6 wont go past the start up screen (white screen with black apple) iv treid restoring it on itunes but it disconects its self half way through. what can I do

    Did you try to use recovery mode, explained in this article?
    If you can't update or restore your iOS device
    If it does not work after that, you'll have to get it serviced:
    iPhone - Contact Support - Apple Support

  • How to make turning page with ibooks author?

    How to make turning page with ibooks author?

    This question has been answered on this thread
    https://discussions.apple.com/message/17981772#17981772#17981772
    Best regards.
    Alex

Maybe you are looking for

  • List sales prices

    Hello, I need to a list with the sales prices for around 200 materials. I know that the sales prices are entered in VK11. VK13 shows the price for only one material at a time. I was wondering if there is something like a mass display or maybe a repor

  • Backup Fails after several successful days - errors "Device is not ready" & "The System cannot find the path specified"

    Well I am back again, with another backup issue. After fixing one issue with the backup failing after a reboot, I have encountered another which is starting to cause me a lot of headaches. The setup is thus - the backups run on a host machine running

  • 5dmk2 and z1 HDV footage

    I'm shooting a film which is being shot on a 5dmk2 we have also used a z1e which is a HDV 1080 50i camera. I'm going to be editing it on a macbook pro running final cut studio 2. The intension is to use the 5donly footage however if we where to mix t

  • UDP Broadcast Traffic from Cisco ASA

    Hi, I want to know that, like Cisco IOS Router, Does Cisco ASA pass the UDP Broadcast traffic e.g., TFTP etc...? Any thoughts ??? BR, Mubasher Sultan

  • Corrupted download can't be deleted

    I have a tv video file that will never finish being downloading, always give me an error message. I've tried deleting the file, but it won't allow me - even with program files/documents. Help!