Help with creating compound/Clipping Mask

Hello,
This is going to be quite hard to explain so bear with me!
I recently live traced a hand drawn pattern into illustrator pressing 'Ignore white', Underneath this I have a jpg with a texture I want to use. My aim is to cut out the shape of two letters into this pattern/texture.
My problem is that creating a compound mask on my pattern will not work because live trace has created a group with hundred of paths and compound paths from my live trace, is there anyway create a mask so that the pattern just shows up as the two letters and deletes everything around it?
I want to use this method because although I can cut the letters out of a white square covering everything in the background, the design is for a logo and I would like to export as a PNG with a transparent background.
I know there are often a few was to get a desired effect with illustrator but I just can't get my head around this one!
Thanks for any help,
Laltoofan4

Place the outline of the letters on top of the pattern. Select the pattern and the letters and choose Object > Clipping Mask > Make.

Similar Messages

  • Photoshop elements 6 help with making a clipping mask

    I have a button template (for a pinback) I put into elements. What I would like to do is make a country flag button. Right now the flag image is sitting ontop of the template. I would like to make a clipping mask (I think that's what's it's called) so that the image covers the entire part of the button that will be seen when it is printed. Here is a link to a button. This is what I am trying to do, but am not having any luck. I would a appreciate a step by step guide. I am using photoshop elements 6 on a mac OSX (ver. 10.5.8
    any help would be great
    http://www.petergreenberg.com/wp-content/uploads/2008/11/canadian_flag.jpg

    This is user to user tech support for folks having issues with Intel-based iMacs. This is not any kind of Adobe product support. If you need help with an Adobe product I suggest that you look for that help at the Adobe website.
    Dah•veed

  • How to Create a Clipping Mask with LIVE TEXT?

    Please, please, pease...there's has to be a way to do this.
    I'm currently working on a project in which I have a background that has a large text layer above it. What I want to do is create a sort of "dynamic" clipping mask that essentially subtracts the shape of the text from the background yet remains editable as text in case I need to change the word or font.
    However every way I've tried so far as been met with the backgrouns instead being constrained inside of the shape of the text...which is NOT what I want.
    How can I do this while still having the text able to be edited?

    An Opacity mask will work, but it will also move artwork from various layers to one layer.
    You can get the same effect with a Layer Clipping mask and keep objects on their layers.
    In this example only one layer is clipped, but you can drag as may as you want below the clipping layer.

  • I need to create a clipping mask that covers the negative space of my created path...

    Like in a Circle I need to make the compound path the inner area or negative space of my objects. I have expanded letters and joined their paths so that there are negative space, I was wondering if it were possible to fill in the negative space with a clipping mask? (like one would with an object like a circle or rectangle) The letter that I am using is an A and I have connected two A's together like a diamond reflecting each other... Is it possible to create a clipping mask to cover the negative space of the inside of the letters...?

    Colio,
    As (Kurt and) I (mis)understand it, you may, presuming the As form one Compound Path:
    1) Lock the underlying gradient rectangle;
    2) Copy the path of the four As and hide the original;
    3) With the copy selected Object>Compound Path>Release, then delete the outer path, then select all the inner paths and Object>Compound Path>Make;
    4) Unlock the rectangle from 1) and select it with the compound path from 3) and Object>Clipping Path>Make;
    5) Show the original compound path from 2).
    You can do it without the hiding and locking, but that makes it easier to see and to avoid mistakes.

  • I need help with Creating Key Pairs

    Hello,
    I need help with Creating Key Pairs, I generate key pais with aba provider, but the keys generated are not base 64.
    the class is :
    import java.io.*;
    import java.math.BigInteger;
    import java.security.*;
    import java.security.spec.*;
    import java.security.interfaces.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import au.net.aba.crypto.provider.ABAProvider;
    class CreateKeyPairs {
    private static KeyPair keyPair;
    private static KeyPairGenerator pairGenerator;
    private static PrivateKey privateKey;
    private static PublicKey publicKey;
    public static void main(String[] args) throws Exception {
    if (args.length != 2) {
    System.out.println("Usage: java CreateKeyParis public_key_file_name privete_key_file_name");
    return;
    createKeys();
    saveKey(args[0],publicKey);
    saveKey(args[1],privateKey);
    private static void createKeys() throws Exception {
    Security.addProvider(new ABAProvider());
    pairGenerator = KeyPairGenerator.getInstance("RSA","ABA");
    pairGenerator.initialize(1024, new SecureRandom());
    keyPair = pairGenerator.generateKeyPair();
    privateKey = keyPair.getPrivate();
    publicKey = keyPair.getPublic();
    private synchronized static void saveKey(String filename,PrivateKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream(new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    private synchronized static void saveKey(String filename,PublicKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream( new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    the public key is:
    �� sr com.sun.rsajca.JSA_RSAPublicKeyrC��� xr com.sun.rsajca.JS_PublicKey~5< ~��% L thePublicKeyt Lcom/sun/rsasign/p;xpsr com.sun.rsasign.anm����9�[ [ at [B[ bq ~ xr com.sun.rsasign.p��(!g�� L at Ljava/lang/String;[ bt [Ljava/lang/String;xr com.sun.rsasign.c�"dyU�|  xpt Javaur [Ljava.lang.String;��V��{G  xp   q ~ ur [B���T�  xp   ��ccR}o���[!#I����lo������
    ����^"`8�|���Z>������&
    d ����"B��
    ^5���a����jw9�����D���D�)�*3/h��7�|��I�d�$�4f�8_�|���yuq ~
    How i can generated the key pairs in base 64 or binary????
    Thanxs for help me
    Luis Navarro Nu�ez
    Santiago.
    Chile.
    South America.

    I don't use ABA but BouncyCastle
    this could help you :
    try
    java.security.Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
    java.security.KeyPairGenerator kg = java.security.KeyPairGenerator.getInstance("RSA","BC");
    java.security.KeyPair kp = kg.generateKeyPair();
    java.security.Key pub = kp.getPublic();
    java.security.Key pri = kp.getPrivate();
    System.out.println("pub: " + pub);
    System.out.println("pri: " + pri);
    byte[] pub_e = pub.getEncoded();
    byte[] pri_e = pri.getEncoded();
    java.io.PrintWriter o;
    java.io.DataInputStream i;
    java.io.File f;
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pub64"));
    o.println(new sun.misc.BASE64Encoder().encode(pub_e));
    o.close();
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pri64"));
    o.println(new sun.misc.BASE64Encoder().encode(pri_e));
    o.close();
    java.io.BufferedReader br = new java.io.BufferedReader(new java.io.FileReader("d:/pub64"));
    StringBuffer keyBase64 = new StringBuffer();
    String line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] pubBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    br = new java.io.BufferedReader(new java.io.FileReader("d:/pri64"));
    keyBase64 = new StringBuffer();
    line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] priBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    java.security.KeyFactory kf = java.security.KeyFactory.getInstance("RSA","BC");
    java.security.Key pubKey = kf.generatePublic(new java.security.spec.X509EncodedKeySpec(pubBytes));
    System.out.println("pub: " + pubKey);
    java.security.Key priKey = kf.generatePrivate(new java.security.spec.PKCS8EncodedKeySpec(priBytes));
    System.out.println("pri: " + priKey);
    catch(Exception e)
    e.printStackTrace ();
    }

  • Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Look to the right under "More Like This". Your issue has been discussed many many times. The error you are seeing is because you do not have enough free "contiguous" space on your hard drive. Read the other threads that address this issue to find how to solve the issue.
    Or, put "The disk cannot be partitioned because some files cannot be moved" into the search box at the upper right of this page.

  • Help with creating a Quiz

    Hey i need help with creating a quiz with scoring and all.
    I need a helping hand so if you can get me started that
    would help a lot.
    Use the Question class to define a Quiz class. A
    quiz can be composed of up to 25 questions. Define the add method
    of the Quiz class to add a question to a quiz. Define the giveQuiz
    method of the Quiz class to present each question in turn to the user,
    accept an answer for each one, and keep track of the results. Define
    a class called QuizTime with a main method that populates a quiz,
    presents it, and prints the final results.
    // Question.java Author: Lewis/Loftus/Cocking
    // Represents a question (and its answer).
    public class Question implements Complexity
    private String question, answer;
    private int complexityLevel;
    // Sets up the question with a default complexity.
    public Question (String query, String result)
    question = query;
    answer = result;
    complexityLevel = 1;
    // Sets the complexity level for this question.
    public void setComplexity (int level)
    complexityLevel = level;
    // Returns the complexity level for this question.
    public int getComplexity()
    return complexityLevel;
    // Returns the question.
    public String getQuestion()
    return question;
    // Returns the answer to this question.
    public String getAnswer()
    return answer;
    // Returns true if the candidate answer matches the answer.
    public boolean answerCorrect (String candidateAnswer)
    return answer.equals(candidateAnswer);
    // Returns this question (and its answer) as a string.
    public String toString()
    return question + "\n" + answer;
    }

    Do you know why this lazy f&#97;rt-&#97;ss is back? Because when he posted his homework last week, some sorry-assed idiot went and did it for him.
    http://forum.java.sun.com/thread.jspa?threadID=5244564&messageID=10008358#10008358
    He didn't even thank the poster.
    It's the same problem over and over again. You feed the bears and it only teaches them to come back for handouts.
    My polite suggestion to the original poster: please do your own f&#117;cking homework.

  • Need help with creating a brush

    Hi guys,
    I wanted to ask for help with creating a brush (even a link to a tutorial will be goon enough ).
    I got this sample:
    I've created a brush from it, and i'm trying to get this kind of result:
    but it's only duplicates it and gives me this result:
    Can someone help me please understand what i need to define in order to make the brush behave like a continues brush instead of duplicate it?
    Thank you very much
    shlomit

    what you need to do is make a brush that looks like the tip of a brush. photoshop has several already but you can make your own that will be better.
    get a paintbrush and paint a spot kind of like what you did but dont paint a stroke. make it look kindof grungy. then make your brush from that, making sure to desaturate it and everything.
    EDIT:
    oh, and if you bring the fill down to like 10-20% your stroke will look better

  • I need help with creating PDF with Preview...

    Hello
    I need help with creating PDF documetns with Preview. Just a few days ago, I was able to create PDF files composed of scanned images (notes) and everything worked perfectly fine. However, today I was having trouble with it. I scanned my notebook and saved 8 images/pages in jpeg format. I did the usual routine with Preview (select all files>print>PDF>save as PDF>then save). Well this worked a few days ago, but when I tried it today, I was able to save it, but the after opening the PDF file that I have saved, only the first page was there. The other pages weren't included. I really don't see anything wrong with what I'm doing. I really need help. Any help would be greatly appreciated.

    I can't find it.  I went into advanced and then document processing but no batch sequence is there and everything is grayed out.
    EDIT: I realized that you cant do batch sequences in standard.  Any other ideas?

  • I need help with creating some formulas

    I'm not sure if anyone around here can help me, but I'm trying to create a Numbers document and need some help with creating a formula/function.
    I have a column of amounts and I would like to create a formula which deducts a percentage (11.9%) and puts the result in another column.
    If anyone can help me, it would be greatly appreciated.

    Here is an example that shows one way to do this:
    The original data is in column A.  In column B we will store formulas to adjust the amounts:
    1) select the cell where you want to formula (in this case cell B2)
    2) Type the "=" (equal sign):
    3) click cell A2:
    4) now type the rest of the formula which is: "*(100-11.9)/100"  that is asterisk, then open parenthesis, 100 minus eleven point nine close parenthesis forward slash  one hundred
    The Asterisk is the multiply operator  (times) and the forward slash is the division operator (divide)
    now hit return.  select cell B2 and hover the cursor over the bottom edge of the cell:
    drag the little yellow dot down to "fill" the formula down as needed.

  • Wanted: help with creating overlapping arc selections

    I use Elements 6, make album pages, and want to replicate a design I have seen.  There is a background image. Around the edges are several overlapping arcs which "frame" the image.  Each arc has a white stroke outline and is a different color (obviously pulled from the background image).  The interesting thing is that where two arcs overlap the stroke outlines of both arcs are still visible, and also the section within the overlap has a third  color.  My questions are:
    1. How do I create the arcs in the first place? I tried extending the canvas, creating ellipses and moving parts of them over the edge of the background image.  This worked for the first arc, but Elements balked at doing more!  Should I create arcs on separate files and move them over?
    2. Once I have two arcs overlapping on a page, how do I retain visibility of both their stroke outlines?  And how do I select the overlapped area in order to recolor it?  How do I make different layers opaque and transparent at the same time, and only show the parts I want visible?  What tool(s) do I use?
    Does anyone know?  Or is this something too advanced for Elements?  Thanks.  MH1071

    You could use the ellipse shape tool to make the arcs. Drag out an ellipse shape; arching the top to taste. Click on the subtract from shape icon in the options bar and use the ellipse tool again to cut the ellipse.
    Use a clipping mask to clip your image to the shape. See this link:
    http://www.photokaboom.com/photography/learn/Photoshop_Elements/layers/layer_groups_clippi ng_masks/1_layer_groups_clipping_masks.htm
    For the outlines, each shape and use the stroke command (edit<Stroke) to stroke each shape. Note: Stroke will not be included in the clipping group...put it in a blank layer above the clipping group. (On PC, Ctrl click the shape thumbnail will select the shape.) To get the strokes the way you want, you may have to experiment with their position in the layer stack.
    For the solid colors, you can clip solid fill adjustment layers to the shapes. This is nice because it makes experimenting with color very easy. Just double click the color fill to bring up color picker and swap out color.
    Here's an example of what I mean. My layers palette UI will look different as I did this using Photoshop. Everything done however, would be done exactly the same way in Elements.
    Edit: For the olive green solid color fills, I used selections of the arc shape to mask the area I wanted blocked in with a solid color. (Use black paint to hide color; white paint to show color) This is why it isn't in a clipping group. (You could but I didn't in the above example.

  • How to create a clip mask for a group?

    I have created a hue/saturation adjust that I want to use as clip mask for a group of layers. How do I do that? I can create a single layer clip mask of hue/saturation but not a whole group of layers.

    You can nest it with its adjustment layer in another group and set that group to normal (instead of pass through). But setting the second group to normal may affect any blending you have going on in the first group.

  • Why won't this create a clipping mask?

    Trying to take an AI file that I purchased and mask it into a shape. Either it comes back that it cannot mask, or I get a white screen. If I then select the shape, I can see it selected but it has no fill. The AI file was a complex design, but I've tried using the Make Clipping Mask from the Layers panel as well as the Object panel. Neither works. What am I missing?
    here is a link to the file...

    The problems (there are several) reside with the bird drawing that you are trying to use as a masking object. Select the bird and Choose Object>Clipping mask>Release Clipping Mask. Delete the white box that shows up. Reselct the bird and Choose Object>Compound Path>Release Compound Path.Go back to Object>Compound Path and Make Compound path> Then select all and choose Object>Clipping Mask>Make Clipping mask.
    That should do it.
    Michael
    http://www.learnadobesoftware.com
    Message was edited by: Michael Riordan

  • Question about problem with  file using clipping mask

    I am using Photoshop CS6.  I purchased a digital frame with a clipping mask on Etsy.   When I go to insert the picture into the frame using the clipping mask the picture continues to show through the edges of the frame (as shown in the picture).  I have tried locking the layer but it doesn't work.  Any suggestions?

    Try this, move layer 2 below 3 don't clip them.
    With the ellipse selection tool drag out a circle that encompasses the area that the image should show
    Create a mask for the shape (make sure the shape layer is selected {now layer 2 was 3} click on the icon at the bottom of the layers panel that looks like a circle inside a square)
    You should now see your image.
    If you are stuck, capture your screen to show your progress.
    Tips for the selection tool:
    You can hold down the shift key to constrain to a circle,
    You can hold down the alt key to draw a circle selection from its center,
    You can hold down both modifier key for a perfect circle drawn from center.
    Finally you can hold down the space bar to move the selection before letting go of the mouse button.

  • Need help with creating template. Changes are not going through to index.html page

    Hi all,
    I have an issue with my template that I am creating and also a question about creating template Regions (Repeating and Editable).
    Somehow my changes to my index.dwt are not changing my index.html page.
    Also my other question is: For my top navigation bar and left navigation bar links, do I need to select and define each individual button or link as Repeating/Editable Region? or can I just select the whole navigation bar (the one on the top) etc...
    Below are my steps for creating my template...I am kinda fairly new to using DW and this is my first attempt to making a template following the DW tutorial CD that came with DW CS3.
    I appreciate any help with this...regards, Dano
    -Open my index.html file
    -File/save as template
    -Save
    -update links - yes
    -Select Repeating and Editable Regions (I selected the whole top navigation bar and selected Repeating Region and Editable Region, same with the left side navigation links)
    -File close all
    -Open the index.dwt
    -Save as and selected the index.html and chose to overide it..
    When I make changes to my index.dwt it is not changing the index.html
    I feel that I am missing some important steps here.....
    Website address
    www.defenseproshop.com

    Figured out

Maybe you are looking for

  • Help: Adobe AIR installer has encountered a problem and needs to close.

    When I run the Adobe AIR installer i always get this window... I'm running Windows XP SP3 How do i solve this problem? Thanks.

  • Transferring movies from iPad2 to Mac

    I am transferring movies purchased fromn iTunes on my iPad2 to my MAC computer using a USB connection. I used the "Transfer from Devices" option under the "File" option in iTunes to make the transfer.  However, each movie is taking more than 12 hours

  • Hr Fi Payroll Comperision Report

    Hi all,       I want to generate on report for payroll which show given field. can anybody help me with it. i want to know is there any standerd report available? if NO then which table or cluster i should use?? GL Acnt Wage type Hr Doc no FI doc no

  • Can't open mime-attachment in mail

    Sometimes mail is forwarded to my iPhone from my Yahoo! account as a mime-attachment and the iPhone won't open it, so I can't read the message. Any suggestions?

  • My iTunes Web Widgets

    I'm using the HTML code for both my iTunes Purchases and my iTunes Favorites on my blog. The favorites widgets appears to be working just fine and updates whenever I make new purchases. But, the purchases widget is displaying really old information f