Filling Text with a Texture?

I want to take a piece of video (specifically the metal texture from the generator tab) and fill my text face with it.  What I've tried:
Selecting "Face" in the 'text' section of the inspector for the text I want to fill
Then I selected "Texture" from the "Fill With " drop down menu
Then I clicked inside the "Source Media" icon,
Next the monitor split and when I selected the section of video I wanted to use (in this case the metal texture I dragged from the generators) I clicked "apply clip"
and then nothing happnes, and the "Source Media" thumbnail remains blank..
I also tried this with other random video clips just in case it might be the generator, all to no avail...
...am I doing something wrong or is this another bug?

Put the texture on top of the video. Put the text on top of the texture. To the text apply blend mode Stencil Alpha. Combine the text and the texture into a compound clip.

Similar Messages

  • Filling JButton with different texture?

    Hi All,
    This may be a silly question, but is there a way to change the filling of a jbutton besides changing the color or loading it with an image? What I'm trying to do is, have the filling-texture change when the button color changes. For example:
    Button 1 : Color red, filling-texture type 1
    Button 1 : Color green, filling-texture type 2
    Button 1 : Color yellow, filling-texture type 3
    ...etc...
    Thanks!

    try this, it is simple but it can give you some ideas.
    MyButton jbm = new MyButton(" My Button");
    jbm.setBounds(10,10,100,36);
    jbm.setBackground(Color.orange);
    getContentPane().add(jbm);
    MyButton jb1 = new MyButton(" My Button");
    jb1.setBounds(151,10,100,36);
    jb1.setBackground(Color.pink);
    getContentPane().add(jb1);
    public class MyButton extends JButton
    public MyButton(String s)
         super(s);
         setMargin(new Insets(0,0,0,0));
    public void paint(Graphics g)
         super.paint(g);
         if (getBackground() == Color.pink)
              g.setColor(Color.darkGray);
              g.drawRect(3,3,getWidth()-7,getHeight()-7);
              g.drawRect(5,5,getWidth()-11,getHeight()-11);
              g.drawRect(7,7,getWidth()-15,getHeight()-15);
         if (getBackground() == Color.orange)
              g.setColor(Color.darkGray);
              g.drawRect(3,3,getWidth()-7,getHeight()-7);
              g.drawRect(4,4,getWidth()-9,getHeight()-9);
              g.drawRect(5,5,getWidth()-11,getHeight()-11);
              g.drawRect(6,6,getWidth()-13,getHeight()-13);

  • How to fill text with the negative of the background image

    I have a picture of grass as the background. I am trying to put text on the image, and have the fill of text be colored as the negative of the background grass image colors. To represent what I wish to do, I demonstrated the color I wish to obtain inside the fill by highlighting the text over the image. Any help is appreciated. Thanks.

    Pinipples,
    As I (mis)understand it, you may:
    1) Copy/replace the image on top of itself;
    2) Invert the colours of the copy image;
    3) Place the text (which may be live Type) on top of the copy image, select both (not the original image), and Object>Clipping Mask>Make.

  • Imported image comes small and with a low resolution when trying to fill text

    I am trying to fill my text with a texture or image.
    Heres my process:
    I type my text, select it and click on the "draw inside" button.
    I then go to place and select my image.
    The image comes tiny with dimensions of x- 430mm and y-340mm.
    Obviously when i stretch it out to cover the text, the image becomes blurry.
    Whats happening here?
    Thanks

    herms,
    What happens if you start with (File>Place) the image/texture, then have the live/outlined Type on top, select both and Object>Clipping Mask>Make (if you have outlined Type, select all of it and Object>Compound Path>Make first)?

  • Filling Text art with gradient or pattern

    Hello all,
    I'm trying to fill some existing arts (path, text, compound) with a just created gradient or a pattern loaded in the swatch
    To achieve that I'm trying to change the path style:
    GetPathStyle (myArt, &pathArtStyle);
         pathArtStyle.strokePaint = false;
         pathArtStyle.fillPaint = true;
         pathArtStyle.fill.color.kind = kGradient;
         pathArtStyle.fill.color.c.b.gradient = myGradient;
    SetPathStyle (myArt, &pathArtStyle);
    This works for kPathArt,
    but nothing happens for kTextFrameArt or kCompoundPathArt.
    How can I program this ?
    thanks in advance
    PS: I also tried to program the procedure "How to Fill Text with a Pattern or Gradient in Adobe Illustrator" described for illustrator UI, w/o success
    PS: I have similar problem when trying to create a clipping using SetGroupClipped()  (see AI function reference) while the clipping path is a text or compound. No clipping is done.

    To fill text with a gradient or pattern youi can do two things, either
    1) outline your text (Type > Create Outlines) then click on the pattern or gradient swatch you require. For easier control of gradients it is best to make a compound path of all the letters. This method is not editable because the type is no longer live.
    2) If your type needs to be live do the following: Type your text and colour it None (no fill, no stroke). Then Appearance panel flyout menu; Add New Fill and click on your swatch.

  • Textured Text with after effects

    Hi all,
    I just want to know if there's a way that I can generate a textured text in after effects.
    Thank.

    Hi,
    Thanks for the site as I'll check it out.
    Date: Tue, 15 Dec 2009 19:12:16 -0700
    From: [email protected]
    To: [email protected]
    Subject: Textured Text with after effects
    The question isn't really clear to me, so I'll take a guess and suggest that you look into using a http://help.adobe.com/en_US/AfterEffects/9.0/WS3878526689cb91655866c1103906c6dea-7cf6a.htm l as a http://help.adobe.com/en_US/AfterEffects/9.0/WS3878526689cb91655866c1103906c6dea-7cf9a.htm l, with the underlying (fill) layer being a texture image.
    I'll also remind you that doing a simple search using the http://community.adobe.com/help/search.html?q=texture+text&l=aftereffects_product_adobelr is a good way to get answers to questions like this.
    >

  • [AS] CS3- Find any text with style, then replace that text with a new applied fill color.

    I am trying to find the simplest way in cs3 to find any text with style, then replace that text with a new fill color. I can find text and change text. I can find a style and change it to a new style. I can't seem to find a style and change the applied fill color. I do not want to change the properties of the style, just the applied color. Yes, I want the + sign, for now. I know, why not update the style, I am not allowed to. Any help would be great. Since the search is not available, I need a new response.
    Thanks.

    You can work around the bug by just doing a find, then looping through the<br />results, changing the color one at a time. It'll be a fraction slower, but<br />should do the trick:<br /><br />tell application "Adobe InDesign CS3"<br />    set find text preferences to nothing<br />    set properties of find text preferences to {applied paragraph style:"The<br />name"}<br />    set theFinds to find text document 1<br />    repeat with i from 1 to count of theFinds<br />        set properties of item i of theFinds to {fill color:"Replace color"}<br />    end repeat<br />end tell<br /><br />The bug is fixed in CS4, BTW.<br /><br />-- <br />Shane Stanley <[email protected]><br />AppleScript Pro Florida, April 2009 <a href=http://scriptingmatters.com/aspro>

  • How to fill tabs with textures?

    Hi all,
    I wondering how to fill tabs with textures, just like in the "Personal Budget" template.
    I mean this:
    How could I replicate this nice effect? Please help!
    I already read the user manual but I won't be able to find a solution...

    One way is to open the template and select the table with the fill pattern.  Open the table inspector
    highlight the Image fill cell (in the "Cell Background" section).  Copy.
    Now open the application Preview in the Applications folder.  Select the menu item "File > New From Clipboard" to create a new document with the image you copied.  Now save the image as a pdf using the menu item "File > Save..."
    Save it with a name you can remember in a location of your choice.
    Now select a table in some other Numbers document and set the table background to the image you just saved by using the Table Inspctor:

  • Filling text/using a clipping mask, then using the knife tool

    Hey, new to the forums here, and I have a problem....
    I'm digitizing my notes for an earth science class and I'm using Illustrator CS5.
    I'm attempting to make a simple text effect which is leaving me baffled.
    The text says "Earthquakes" (in Impact, 24pt.)
    I wish to texture the text with a photo of sandstone.  I can do this.
    I wish to cleave the text in twain with the knife tool.  I can do this, too.
    What I cannot do for the life of me is to cut the text in half after applying the clipping mask.
    Nor can I apply the texture (via clipping mask) after cutting the text in half.
    I've tried all manner of different combinations, including doing some of the work in Photoshop, and still nothing works.
    I tried to create an outline (apparently essential for using the knife tool on text), cut the text in half, and then make the clipping mask, but that only gives me hollow, invisible letters which I can't seem to fill with the appropriate image.
    Does anyone out there have any ideas?
    In case it's not clear, I want my text to be filled by an image, then I'd like to cut the text approximately in half (I would prefer to use the knife tool, as it looks better with a curved cut)
    It's that simple, but I haven't been able to stumble upon a solution on my own.
    On a side note, I've also happened upon some tutorials for "cutting text" that involves drawing a line across it, then using Divide from the Pathfinder toolbox, but this keeps giving me errors.  Thoughts?

    I like your answer because it showcases things I had never thought of.  As it happens, minutes after posting this I decided to reverse the workflow from Illustrator into PS and then back.
    Essentially, I converted my text via "outlines", used the knife tool, then cut and pasted it into PS.  Then I added the stone texture into a new layer and applied a mask.  I cropped it and imported it back into Illustrator.
    Of course, that's a lot of steps, so as soon as I get back, I'm going to try the way you just described as I think it will come in very handy in the future.
    Thank you.
    Message was edited by: MercuryCrest

  • How do I print the contrast between "filled" text and its surrounding "box"?

    Hi,
    Apologies in advance for any ambiguity or confusion . . .
    I am a self-taught Photoshop user who has come upon a problem to which I cannot find an answer, despite searching online for hours . . .
    When I design a project, it looks beautiful on screen . . . when I print it, however, it loses the definition between colors inside a font and the shape surrounding the font . . .
    To be more exact:
    I am working at 300 dpi . . .
    I create a rectangle and fill it with red.  I then write text inside of the rectangle and the font color is white.  Onscreen, it looks clear and well-defined.  When I print it, however, there is not clear definition between the font and its surrounding area . . . the colors seem to bleed into each other . . . I have tried using different paper (glossy, matte, etc.), have tried putting a narrow stroke around the text, etc., but nothing help to clearly define the difference between the text and its surrounding shape/color.
    It also does not matter the size of the font, although the larger the font, the easier it is to "see" the difference.  But a white font at 24 point looks no sharper than a white font at 8 pt.
    I am using an Epson XP-610 printer . . . it is a home deskjet and I mainly design for fun, but this "lack of sharpness" on the fonts is driving me crazy.  I would included a screenshot, but it would not help much, since the project looks beautiful and clear on the screen.
    The colors only seem "muddled" when  I print.  Any advice, or even a point in the direction of something I can read to help me understand what to do, would be helpful. . . . TIA!I

    Hullo Cheapster:
    I too am confident that this facility does not exist in relation to the underline function as such. Nor am I aware of a workaround that would let you access it straightforwardly for routine usage in body text. The underline facility, like the strikethrough, is provided because it is standard in some documentation which a wordprocessing might be expected to serve - but as such, it is provided in limited conventional formats. Otherwise, I agree, it is not ideal typography.
    However, for occasional use, there are two workarounds you might like to consider. One is to use the line drawing facility available through the insert menu (insert shape, choose line; then grab its handles to make it horizontal) or the same process initiated from the objects icon in the toolbar.
    Be aware, however, that the above could require further attention to your wrap options: you would need to deselect any wrap - but could still need to modify your line spacing options to avoid irregular line spacings with the rest of your text.
    Possibly simpler is to bear in mind that you can produce an underline without its text. To do this, select underline (Command / U) and type "non-breaking spaces" (option / space). This would allow you to place your underline on a separate line from your underlined text. You could do the same with the strikethrough function, which you access via the effects section in the font panel for closer spacing; or alter the line spacing where you need to do this.
    Either of the above would affect your surrounding text in a way that would make these methods unsuitable for incorporation into body text.
    However, if your interest in doing this relates to headlines or the like, one or other of these options might suit your purpose.
    Regards.

  • Crosshatch Pattern to fill Text Box or polygon shape???

    I often have a need to define a certain area or room of a floor plan as the part we'll be using.
    In the past, I've done this by creating a text box with No Borders, then filling it with a color and 25% opacity.
    Our new attorney says "no colors...use a cross-hatch pattern in the defined area".
    So, my question is, once I've defined the area with a text box or by using the Polygon Tool, how do I fill the space with a crosshatch pattern???
    I've tried creating a small jpg (attached) of the sort of pattern I'd like it to be filled with, but can't figure out how to implement it so it will be used as a fill option.
    Thanks in advance for any help you may provide.
    I'm using Adobe Acrobat Pro, Version 9.2.0.
    Thanks again,
    D Flash
    Durham, NC (usa)

    Michael,
    Thanks for your response (and lawyer humor!).
    I've attached a document showing the type of thing the lawyer's referring to.
    in the attached drawing it shows two spaces we're using, surrounded by a polygon box and "filled" with a slightly opaque color.
    His concern is after much copying, it would always be easier to see the defined area if it was filled with a crosshatch, as opposed to a color.
    Is there a way to do that, perhaps using a custom-made stamp...I tried that with the jpg I provided in my previous post, but the jpg would not "fill" the area, and I was not able to "size" it to fill my space.
    Do you (or anyone else) have any suggestions as to how to accomplish what he's asking of me, using Acrobat????
    Thanks so much,
    Flash

  • How to copy Log text (with Date, Time stamp ) User IDfrom BP to Transaction

    Hi Experts,
                     Can someone guide us how  to copy Log text (with Date ,Time & User ID) fron Business partner  (Prospect) to transactions by text detrmination procedure.
    Regards,
    Basavaraj Patil

    save text
    Fill out following parameters of SAVE_TEXT function module:
    HEADER
    TDOBJECT C 10 BUT000
    TDNAME C 70 10 digit BP number
    TDID C 4 Z001
    TDSPRAS C 1 Language
    INSERT = ’X’
    LINES
    TDFORMAT TDLINE
    |
    |testtttttttttttttttttttttttt( Your text)
    I would suggest you to use some other BAPI that would attach your text to BP than SAVE_TEXT.
    If you still wanted to use SAVE_TEXT then first make sure how the TDNAME is generated. It depends on the text determination procedure. For examples, it can be guid of BP, GUID followed by date or time or else the BP number itself.
    Just go to BP transaction, double click on the text pad, it will open you the SAP Script editor. Click on menu GOTO and select Header which will give you info about your TDID, TDOBJECT, TDNAME....
    Hope this helps.

  • How in Illustrator I write text with transparent background ?

    How in Illustrator I write text with transparent background ?

    that is correct. You open it in AI and you have an option to use area text, you first take the text tool and drag to make a text frame, which wors like it does in a layout program. Or you click the text tool any where on the canvas and just start typing if you want to make another line you either hit the return (enter) key or for  soft return use shift/return (enter).
    The default is a transparent background.
    All art i Illustrator is on a transparent background unless you add an object behind other objects that has a fill color.

  • System.log fills up with uninstall_folder_path no 0

    My system.log fills up with the following text:
    Apr 10 22:09:48 Macken DelMonitor[60]: hokan
    Apr 10 22:09:48 Macken DelMonitor[60]: uninstall_path no 0
    Apr 10 22:09:48 Macken DelMonitor[60]: uninstall_folder_path no 0
    Apr 10 22:09:50 Macken DelMonitor[60]: install_path yes
    These four lines adds every other second, and just fills upp the system.log.
    I habe tried to google but can not find any clues to what this is and how to make it stop!
    Anyone have any suggestions?
    I have a Mac Book Pro with verson 10.7.3
    Regards,
    Hokan

    It's some third-party software that you installed, but I can't be more specific. If you can't figure it out any other way, you'll just have to start uninstalling things until the log messages stop.

  • Opacity level changing when exporting text with alpha

    Hello,
    I am hoping someone can shed some light on what is happening with my opacity levels when exporting text with an alpha.  I have animated text where some words are black at 50% opacity and some words are white at full opacity.  They are on a textured background.  I need to give the other editors a version of the text married to the background and one that is just text with an alpha.  When I export it and bring it into Premiere, the "married" version looks fine, but the black in the version of the text with alpha appears more transparent.  I can fix this by changing the blend mode to Hard Light or Luminosity, but this alters the color of the white text slightly (and I should note that the blend mode in AE was normal).  I can of course work around this by exporting my black and white text separately, but I was hoping someone might know why this is happening.
    I am working on AE CC (ver12) and Premiere CC (ver7)
    Thank you!

    Rick, I am judging visually.
    I have since taken the cue from Mylenium, and I think the problem has to do with the fact that AE's default opacity is not linear and Premiere's is.  When I change the sequence settings of Premiere and uncheck "Composite in Linear Color" the blacks of my clips match.  Similarly when I change my Project Settings in AE and check "Linearize Working Space" the blacks appear lighter as they did when with the text only clip in Premiere.  Since I am working with other editors that are using Premiere, I assume I should change the settings in After Effects to match Premiere (linear).  Unless there is any reason I shouldn't do that?
    Thank you,
    -Keri

Maybe you are looking for

  • After installing when I try to open PS elements12 message (Windows 8.1) problem and has to close

    After downloading Photoshop Elements12 to Windows 8.1 laptop, when I try to open the program I get a message "A problem has caused the program to stop working correctly. Windows will close the program and notify you if a solution is available" I have

  • Wine fullscreen issues

    When I try to fullscreen certain applications in wine, it does a couple of things: * It changes my resolution, both on my main and my other monitor, probably to match the resolution of the game. Key here is that also the resolution of my other monito

  • Clearification needed

    Hi, I have a report in this report now running with single select option for sales org. but i want to make multiple select option, it means i want to select 3 different S.organisation . For that i created range. if i gives the multiple input with out

  • How to know if a Sales order item created with or without reference

    Hi, I am working on user exit USEREXIT_MOVE_FIELD_TO_VBAP, and I just wanted to know if there is a way to know if a sales order item is created with or without reference to a contract. I need to write the code in USEREXIT_MOVE_FIELD_TO_VBAP, however,

  • How to Program 6020E in VC++

    Hi, I've a 6020E connected to my laptop working on Windows XP Pro. I also have the software that came with it installed on my machine. I do not have either Measurement Studio or Labview on my system. Please let me know the methodology to program and