How to make clipping mask with text and vector pattern?

Hey there guys, any help would be greatly appreciated. Im making a logo for a client and am having a nightmare of a time trying to properly use the clipping masks in illustrator CS5. I copied and pasted the  logo I made behind itself with a different color just for a drop shadow-like effect. And now I'm trying to apply this diagonal line pattern I created over top the "shadow" I made to give it some texture.
Here's an example of what I'm going for, only imagine the line pattern on the text instead of banner

Eric,
As I (mis)understand it, you can either keep the Type live (or outline it) and:
1) Create one copy of the pattern for each Type object (this will give you the opportunity of having different(ly coloured) patterns;
2) For each Type object, select the type object and one of the patterns and Object>Clipping Path>Make;
or you can:
1) Select both Type objects and Type>Create Outlines, then Object>Compound Path>Make;
2) Select the compound object and the pattern and Object>Clipping Path>Make.

Similar Messages

  • How to create Clipping Masks with Shapes and Text?

    Hi there! I am new to Illustrator and am currently attempting to learn it. I am creating a logo that has text and has a shape that goes through the text to make the text appear as if it has claw marks in it.
    I have two layers. The layer with the shape "claw" marks, and a layer with the text. The shape layer is currently above and the text layer is currently below. If I select both layers and click on Make Clipping Mask it has the text displayed within the little claw marks, how do I reverse that? Because when I try to change the order of the layers it doesn't clip anything?
    Thank you so much!
    Aaron

    Hi Monika,
    Sorry for taking so long to reply... This is what I am trying to accomplish. I tried following your directions above, but that only made the text invisible and I tried moving the claw layers above and below the text... and it only appeared as if the claws per se were filling up with the text color.
    Here is what I am trying to accomplish:

  • Best way to make a clipping mask with indesign drawn vector shapes?

    What is the best way to create a clipping mask  with vector art that is drawn inside of indesign?
    I have a group of vector shapes to paste into a rounded corner box. This art is grouped.
    What i tried:
    -create the rounded corner box i want the art inside
    -cut art
    -edit > paste-into
    This worked, but i could not figure out how to move the artwork once it was pasted into the shape. With the direct select tool i could move the individual objects, but not the group of objects. Any ideas?
    Is this the best way to acomplish what i'm trying to do?
    Thanks!

    Yopu don't mention the version of ID, which makes a difference here.
    Paste Into is correct. In CS5 you can then use the content grabber donut to move the group inside the frame. In all versions you should be able to select the frame, tehn use Object > Select > Content to get the group, or use the button for that onthe Control Panel. Before CS5 you'll need to use the arrow keys or grab the center spot withthe mouse to move the group.

  • How can i copy line with text and image to ms word

    When I insert an image in textflow using InlineGraphicElement it works, but when I copy the line with the image to MS Word it copies only the text (not the image).
    How can i copy the image to MS Word?

    If you want copy formatted text and image to MS Word, you need to give MS Word rtf markup, because Word can recognize rtf markup but not TLF markup.
    So you need to create a custom clipboard to paste a rtf markup. It's a large feature for you, because you need a tlf-rtf converter in your custom clipboard.
    TLF Custom Clipboard Example:
    package
        import flash.display.Sprite;
        import flash.desktop.ClipboardFormats;
        import flashx.textLayout.container.ContainerController;
        import flashx.textLayout.conversion.ITextImporter;
        import flashx.textLayout.conversion.TextConverter;
        import flashx.textLayout.edit.EditManager;
        import flashx.textLayout.elements.*;
        import flashx.undo.UndoManager;
        // Example code to install a custom clipboard format. This one installs at the front of the list (overriding all later formats)
        // and adds a handler for plain text that strips out all consonants (everything except aeiou).
        public class CustomClipboardFormat extends Sprite
            public function CustomClipboardFormat()
                var textFlow:TextFlow = setup();
                TextConverter.addFormatAt(0, "vowelsOnly_extraList", VowelsOnlyImporter, AdditionalListExporter, "air:text" /* it's a converter for cliboard */);
            private const markup:String = '<TextFlow whiteSpaceCollapse="preserve" version="2.0.0" xmlns="http://ns.adobe.com/textLayout/2008"><p><span color=\"0x00ff00\">Anything you paste will have all consonants removed.</span></p></TextFlow>';
            private function setup():TextFlow
                var importer:ITextImporter = TextConverter.getImporter(TextConverter.TEXT_LAYOUT_FORMAT);
                var textFlow:TextFlow = importer.importToFlow(markup);
                textFlow.flowComposer.addController(new ContainerController(this,500,200));
                textFlow.interactionManager = new EditManager(new UndoManager());
                textFlow.flowComposer.updateAllControllers();
                return textFlow;
    import flashx.textLayout.conversion.ITextExporter;
    import flashx.textLayout.conversion.ConverterBase;
    import flashx.textLayout.conversion.ITextImporter;
    import flashx.textLayout.conversion.TextConverter;
    import flashx.textLayout.elements.IConfiguration;
    import flashx.textLayout.elements.TextFlow;
    class VowelsOnlyImporter extends ConverterBase implements ITextImporter
        protected var _config:IConfiguration = null;
        /** Constructor */
        public function VowelsOnlyImporter()
            super();
        public function importToFlow(source:Object):TextFlow
            if (source is String)
                var firstChar:String = (source as String).charAt(0);
                firstChar = firstChar.toLowerCase();
                // This filter only applies if the first character is a vowel
                if (firstChar == 'a' || firstChar == 'i' || firstChar == 'e' || firstChar == 'o' || firstChar == 'u')
                    var pattern:RegExp = /([b-df-hj-np-tv-z])*/g;
                    source = source.replace(pattern, "");
                    var importer:ITextImporter = TextConverter.getImporter(TextConverter.PLAIN_TEXT_FORMAT);
                    importer.useClipboardAnnotations = this.useClipboardAnnotations;
                    importer.configuration = _config;
                    return importer.importToFlow(source);
            return null;
        public function get configuration():IConfiguration
            return _config;
        public function set configuration(value:IConfiguration):void
            _config = value;
    import flashx.textLayout.elements.ParagraphElement;
    import flashx.textLayout.elements.SpanElement;
    import flashx.textLayout.elements.ListElement;
    import flashx.textLayout.elements.ListItemElement;
    class AdditionalListExporter extends ConverterBase implements ITextExporter
        /** Constructor */
        public function AdditionalListExporter()   
            super();
        public function export(source:TextFlow, conversionType:String):Object
            if (source is TextFlow)
                source.getChildAt(source.numChildren - 1).setStyle(MERGE_TO_NEXT_ON_PASTE, false);
                var list:ListElement = new ListElement();
                var item1:ListItemElement = new ListItemElement();
                var item2:ListItemElement = new ListItemElement();
                var para1:ParagraphElement = new ParagraphElement();
                var para2:ParagraphElement = new ParagraphElement();
                var span1:SpanElement = new SpanElement();
                span1.text = "ab";
                var span2:SpanElement = new SpanElement();
                span2.text = "cd";
                list.addChild(item1);
                list.addChild(item2);
                item1.addChild(para1);
                para1.addChild(span1);
                item2.addChild(para2);
                para2.addChild(span2);
                source.addChild(list);
                var exporter:ITextExporter = TextConverter.getExporter(TextConverter.TEXT_LAYOUT_FORMAT);
                exporter.useClipboardAnnotations = this.useClipboardAnnotations;
                return exporter.export(source, conversionType);   
            return null;

  • How to make tables move with text

    In Pages '09 and Pages 5.0, tables that I set to move with text do not move with text. They overlap text. That is, the table and non-table text occupy the same space, which does not seem to be the intention behind "move with text". In Pages 5.0, I try to fix the problem by selecting a text wrap option such as "Above and below", since I do want text above my table and below my table and I want the table to move with the text when the text changes. But choosing "Above and below" automatically changes the object placement option from "Move with Text" to "Stay on Page", so the table does not move with the text. Re-choosing "Move with Text" once again makes the table and the text overlap, which renders the document unusable.
    I have been frustrated with this behavior for years. I got around it in Pages '09 by using linked text boxes and putting tables outside the text boxes or by putting multi-page tables in their own text boxes without any other text. Since Pages 5.0 does not have linked text boxes, my old work-arounds are no longer possible.
    I must be missing something simple here. What is it?
    Thanks for any help.
    Rick

    If the Table is an inline object then it follows the rules of the text it is sitting in.
    ie Line Spacing, Space Before and Space After.
    The Line Spacing is the crucial specification. The Table should be in its own paragraph and have Line Spacing Multiple set, usually to 1, with before and after spacing to set it off from surrounding text.
    Inline Objects are one case where you should use Multiple Line Spacing because they vary in size and it is best to let Pages work out what space to give them.
    Peter

  • How to send an SMS with text and image

    I'm trying to add a photo and text to an SMS but can't add anything in the body of the SMS. What do I need to do?

    Hi Joe,
    Yeah, that's been the method I've been testing with. Is there a way for AIR to access the Intent API?
    Android code:
    final Intent i = new Intent(Intent.ACTION_SEND);
    i.putExtra("sms_body", msgText);
    i.putExtra(Intent.EXTRA_STREAM, imageUri);
    i.setType("*/*");
    startActivity(i);
    Thanks

  • How to make iMovie dvd with Toast and external burner

    I have a powerbook G4 (without superdrive so have an external DVD burner) and Toast. But Toast wont allow me to drag iMovie file there. Help?
    Powerbook G4   Mac OS X (10.4.1)  

    You first have to make that iMovie project into a DVD project in iDVD, then save that as a disk image, and burn the disk image in Toast.

  • How to make a frame with components and JTextAreas on it?

    on the Window 98 System, when you press F1 on the keyboard, you will get a window(frame) where there are "buttons" and "textAreas".
    i would like to create a JFrame like that, but how to realize it?
    thanks a lot!!!

    What do you want to do?
    You can easily create a JFrame, and then create JButtons and JTextAreas and then add() them to the JFrame's content pane.
    But you must know that already, so it must be something different you are confused about. What is it?

  • How do you share thousands of pictures with text and captions outside of PSE?  (PSE 4)

    One of my dad’s retirement passions is family genealogy and old family pictures.  Several years ago I gave my family PSE 4.0 for Christmas so that we could each have backup copies of our dad’s pictures.  Usually once per year, I made backup copies of everything and emailed the DVDs to my brothers and sisters.  Everyone knows the basic PSE 4 functions and share our dad's enjoyment with the old family photos.
    My problem is that my dad is running out of pictures to scan.  He wants to “share” or “show” his photos with others so that he can “borrow” their photo albums in order to scan their photos.  He plans to attend a hometown high school reunion later this fall.  He hopes to "collect" photo albums from cousins and classmates.  I have been struggling with this for several days without any good ideas.
    The scanned pictures lack any text (added as a layer?) or captions.  Creating a slideshow (on my dad’s computer is slow).  Also, a slideshow doesn’t let others select individual pictures to save from the slide show
    He has old pictures pre-PSE 4 that allowed him to add captions directly to the picture when it was scanned.  I never liked this approach as it "destroyed" the actual picture but these old pictures are more easily shared as individual pictures.
    How do you share thousands of pictures with text and captions outside of PSE?  Can you save or export a composite picture with all the layers?
    Thanks in advance for your help and replies.

    I think it is one of the printer option screens that gives me the choice of tabbed 4x6. All of the choices specifiy HP or Other so I am pretty sure it is printer software that offers me this choice.
    Make sure your image has a 4x6 aspect ratio. I have been quite happy with the tabbed 4x6. Just need to remember to load the paper with the tab last.
    So, in elements you set to 4x6, in printer options you should be able to choose 4x6 tabbed paper.

  • How do i set text in a object so that object expands with text and has even space on both sides of the object in illustrator cc?

    how do i set text in a object so that object expands with text and has even space on both sides of the object in illustrator cc?

    if you see all the different panel. I past the info in and have to manually expand the width of every panel. Is there a way of pasting the text in and the panel moves to the right with so that there is an even space on both sides of the blue panel?

  • How do you make clips go in slowmotion and play reversed using imovie 08

    how do you make clips go in slowmotion and play reversed using imovie 08

    as owner of iM08, you're entitled for a free download here:
    http://www.apple.com/support/downloads/imovieHD6.html
    Plan B) using a designated 'slow mo' software, link, demo and how-to on my site:
    http://karsten.schluter.googlepages.com/slowmowithim08

  • I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    It may be due to Continuity
    The following quote is from  Connect your iPhone, iPad, and iPod touch using Continuity
    Turn off iPhone cellular calls
    To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls.

  • I´ve made four Columns with text and an Image over the middle of two columns. How do I put a text u

    I´ve made four Columns with text and an Image over the middle of two columns. How do I put a text under the Image that spans over the Columns?

    Did you mean that?
    or
    Did you mean that?
    Let me know.

  • Where is the best place to make a slideshow with pictures and music on a mac?

    Where is the best place to make a slideshow with pictures and music on Macbook Pro?

    There are many ways to produce slide shows using iPhoto, iMovie or iDVD and some limit the number of photos you can use (iDVD has a 99 chapter (slide) limitation).
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico:  http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie  as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, including adding other video clips, then send it to iDVD 7, or Toast,  for burning.
    You will be pleasantly surprised at how professional the results can be!
    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089

  • How can I fill mask with pattern?

    Hi
    Would you please help me? How can a add pattern to a mask? I drew a motion mask on video clip and now I want to fill it with pattern that I made in Photoshop and saved as PSD, what should I do? How can I fill mask with specific pattern?
    Thanks for any help

    AE doesn't directly support a pattern-fill like PS, so here's a workaround (as Mylenium suggested):
    Create a PS document and create a layer filled with the pattern required.
    Import the layer/PSD to AE and place in timeline.
    Place a copy of the masked layer above the Pattern layer.
    On the pattern layer, set the Track Matte to Alpha Matte.
    Read more here:
    http://livedocs.adobe.com/en_US/AfterEffects/8.0/WS3878526689cb91655866c1103906c6dea-7cf9. html

Maybe you are looking for

  • Can't add files to folio in InDesign; DPS

    My work has ground to a halt as I keep getting these errors. I'm creating a magazine for the iPad and designing in InDesign (CS6) goes fine, but when I attempt to add a article to a folio I get one of two errors: If I add a file from a folder I get t

  • I am getting error code 50 when updating cloud any ideas?

    I am installing updates from cloud but keep getting an error code 50 any ideas?

  • Text quality when exporting to PDF -- CS4

    Hi, Whenever I export my InDesign document to a "high quality print" (PDF) or any PDF preset, for that matter, the text becomes "chunky." The picture below illustrates the problem. The text on the left is how the text appears in InDesign, while the t

  • An iphone app dealer keeps taking over my phone.

    King.com Unlimited keeps forcing my iPhone to go to its Apple app-store app[s] page[s].They have several 'games' where they later persuade you to buy other features for their games. How in heck can I prevent this ???? Is there a way to block it? Is m

  • SQL table script ending

    I have a sql script someone else wrote and it has many create tables scripts. Some end with a semi-colon and some end with a forward slash /. What is the difference? I need to clean up the code and didn't know what way I should take all the create ta