Fusion of text and to make it transparent - how do we please?

Hi all

It's probably pretty simple but the answer escapes me. What I want to do is to create a rectangle color without a border (what I can do!), then drag text top and cut the text so it leaves the original rectangle with transparent text if you know what I mean.

I can easily do this in PS with the magic lasso, but of course I lose quality when re-importing in I.

If anyone can shed some light it would be greatly appreciated.

Thank you in anticipation

Dave

In turn, using the option less prominent in the Pathfinder palette you get the desired result.

Select your vectorization of text and the rectangle.

Select the option less prominent in the Pathfinder palette.

BAM! Here is your result.

All solutions are all very good. Much help here!

See you soon,.

Michael

Tags: Illustrator

Similar Questions

  • dynamic load text and image of XML. How?

    Hello

    I have the following code to display text and images on the screen how modify the code to make it more dynamic:

    var xmlData:XML = new XML(MovieClip(this.parent).xmlDocs[3]);
    // Add Title
    rssNews.rss1.title1.text = xmlData.news[0].title;
    rssNews.rss2.title2.text = xmlData.news[1].title;
    rssNews.rss3.title3.text = xmlData.news[2].title;
    rssNews.rss4.title4.text = xmlData.news[3].title;
    rssNews.rss5.title5.text = xmlData.news[4].title;
    rssNews.rss6.title6.text = xmlData.news[5].title;
    rssNews.rss7.title7.text = xmlData.news[6].title;
    rssNews.rss8.title8.text = xmlData.news[7].title;
    rssNews.rss9.title9.text = xmlData.news[8].title;
    rssNews.rss10.title10.text = xmlData.news[9].title;
    
    
    // Add Description
    rssNews.rss1.text1.text = xmlData.news[0].description;
    rssNews.rss2.text2.text = xmlData.news[1].description;
    rssNews.rss3.text3.text = xmlData.news[2].description;
    rssNews.rss4.text4.text = xmlData.news[3].description;
    rssNews.rss5.text5.text = xmlData.news[4].description;
    rssNews.rss6.text6.text = xmlData.news[5].description;
    rssNews.rss7.text7.text = xmlData.news[6].description;
    rssNews.rss8.text8.text = xmlData.news[7].description;
    rssNews.rss9.text9.text = xmlData.news[8].description;
    rssNews.rss10.text10.text = xmlData.news[9].description;
    
    
    // Add Title
    var myLoader:Loader = new Loader();
    var fileRequest:URLRequest = new URLRequest(xmlData.news[0].image);
    myLoader.load(fileRequest);
    rssNews.rss1.image1.addChild(myLoader);
    var myLoader2:Loader = new Loader();
    var fileRequest2:URLRequest = new URLRequest(xmlData.news[1].image);
    myLoader2.load(fileRequest2);
    rssNews.rss2.image2.addChild(myLoader2);
    var myLoader3:Loader = new Loader();
    var fileRequest3:URLRequest = new URLRequest(xmlData.news[2].image);
    myLoader3.load(fileRequest3);
    rssNews.rss3.image3.addChild(myLoader3);
    var myLoader4:Loader = new Loader();
    var fileRequest4:URLRequest = new URLRequest(xmlData.news[3].image);
    myLoader4.load(fileRequest4);
    rssNews.rss4.image4.addChild(myLoader4);
    var myLoader5:Loader = new Loader();
    var fileRequest5:URLRequest = new URLRequest(xmlData.news[4].image);
    myLoader5.load(fileRequest5);
    rssNews.rss5.image5.addChild(myLoader5);
    var myLoader6:Loader = new Loader();
    var fileRequest6:URLRequest = new URLRequest(xmlData.news[5].image);
    myLoader6.load(fileRequest6);
    rssNews.rss6.image6.addChild(myLoader6);
    var myLoader7:Loader = new Loader();
    var fileRequest7:URLRequest = new URLRequest(xmlData.news[6].image);
    myLoader7.load(fileRequest7);
    rssNews.rss7.image7.addChild(myLoader7);
    var myLoader8:Loader = new Loader();
    var fileRequest8:URLRequest = new URLRequest(xmlData.news[7].image);
    myLoader8.load(fileRequest8);
    rssNews.rss8.image8.addChild(myLoader8);
    var myLoader9:Loader = new Loader();
    var fileRequest9:URLRequest = new URLRequest(xmlData.news[8].image);
    myLoader9.load(fileRequest9);
    rssNews.rss9.image9.addChild(myLoader9);
    var myLoader10:Loader = new Loader();
    var fileRequest10:URLRequest = new URLRequest(xmlData.news[9].image);
    myLoader10.load(fileRequest10);
    rssNews.rss10.image10.addChild(myLoader10);
    
    
    // Add URL
    rssNews.rss1.info1.addEventListener(MouseEvent.CLICK, rss01);
    rssNews.rss2.info2.addEventListener(MouseEvent.CLICK, rss02);
    rssNews.rss3.info3.addEventListener(MouseEvent.CLICK, rss03);
    rssNews.rss4.info4.addEventListener(MouseEvent.CLICK, rss04);
    rssNews.rss5.info5.addEventListener(MouseEvent.CLICK, rss05);
    rssNews.rss6.info6.addEventListener(MouseEvent.CLICK, rss06);
    rssNews.rss7.info7.addEventListener(MouseEvent.CLICK, rss07);
    rssNews.rss8.info8.addEventListener(MouseEvent.CLICK, rss08);
    rssNews.rss9.info9.addEventListener(MouseEvent.CLICK, rss09);
    rssNews.rss10.info10.addEventListener(MouseEvent.CLICK, rss10);
    
    
    function rss01(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[0].url));
    }
    function rss02(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[1].url));
    }
    function rss03(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[2].url));
    }
    function rss04(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[3].url));
    }
    function rss05(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[4].url));
    }
    function rss06(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[5].url));
    }
    function rss07(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[6].url));
    }
    function rss08(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[7].url));
    }
    function rss09(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[8].url));
    }
    function rss10(e:MouseEvent):void
    {
              navigateToURL(new URLRequest(xmlData.news[9].url));
    }
    
    

    Kind regards

    use:

    var xmlList:XMLList;

    var xmlData:XML = new XML (MovieClip (this.parent) .xmlDocs [3]);

    xmlList = xmlData.news;

    for (var i: int = 0; i<>

    {

    rssNews ["rss" +(i+1)] ["title" +(i+1)] .text = xmlList [i] .title;

    rssNews ["rss" +(i+1)] ["text" +(i+1)] .text = xmlList [i] .description;

    rssNews ["rss" +(i+1)] ['image' +(i+1)] .loader = new Loader();  If the compiler complains, cast rssNews ["rss" +(i+1)] ['image' +(i+1)] as a movieclip.  IE: MovieClip (rssNews ["rss" +(i+1)] ['image' +(i+1)]) .loader

    rssNews ["rss" +(i+1)] ['image' +(i+1)].loader.load (URLRequest (xmlList [i] .url)) of new;

    }

  • All web browsers only show text and links for a reason, how can I fix?

    So I'm going around the internet looking for a solution to this particular problem, but all the solutions I found do not work for me. I tried to go to the hosts in the etc file and a deletion of lines of code, I tried to do a system scan using avast antivirus, I tried to update my Java and Adobe, I tried to create a profile of different system. I even found it a 'solution' where I had to change my date and time settings, but it still does not. I don't know what else to do. Here is a screenshot of what the problem looks like:

    Hello

    I understand all web browsers displays only the text and hyperlinks.

    This problem can be due to various reasons:

    • Third-party firewall.
    • Internet connection problem.
    • Third issue of enforcement.
    1. Since when are you facing this problem?
    2. Have you recently installed software on this PC?

    Please follow the methods and check them off below if it helps:

    Method 1: Check in SafeMode with network.

    Please see the link that will help you to start your computer in safe mode with networking and check your browser below:

    http://Windows.Microsoft.com/en-in/Windows/Advanced-startup-options-including-safe-mode#1TC=Windows-7

    Method 2: Reset Internet Explorer.

    This problem can also be caused by the settings of Internet Explorer, we recommend that you reset Internet Explorer to default settings and check if it helps.

    http://Windows.Microsoft.com/en-in/Internet-Explorer/reset-IE-settings#IE=ie-11

    Disclaimer reset Internet explorer:

    WARNING: Reset Internet Explorer settings can reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings. We recommend that you note these sites before you use the reset Internet Explorer settings. Reset Internet Explorer is not reversible, and all the previous settings are lost after reset.

    Hope this information helps, for assistance please answer.

  • Select text AND drop shadow effect

    I have a text layer which has also an effect layer shadow.

    If I have to ctrl + click on the thumbnail of the layer, as expected, it selects the text but is not also include the drop shadow layer style. I guess it's because the Ctrl clicking on the miniature mask selects the non-transparent pixels completely and drop shadow layer mask is slightly transparent?

    How can I easily select text and ALL pixels of drop shadow?

    In a Word, I want to choose only 100% transparent pixels, so I can reverse to select the 100% opaque text and < 100% pixels layer transparent drop shadow?

    Thanks for any help you can give.

    The pixels are selected; It is that ants walking delineate only the boundary between lower or greater than 50% selected. To select completely all non-transparent pixels in your shadow layer, select as you did and go quick mask mode. Make sure that the quick mask is active in the Panel layer and run the threshold with a value of 255. Return to Standard mode, and you will see ants on expanded.

  • How to change the highlight color, click the button image and text and sound.  are there packages of buttons for use in my project?

    How to change the highlight color, click the button image and text and sound. are there packages of buttons for use in my project?

    Hello

    Even if the point of things based Web links buttons created using them is of simple images. Captivate uses simple images. If you need to put your creative hat and not to let the fact that you see the word 'web' scared you somehow. An image is an image. Use on the web, use Captivate. Same case!

    If you change the properties of the button, you can activate the legend of success. Fix any sound that you like with the legend of success and it will play when you click the button. If you do not want to see the legend of success, delete the text and configure it as transparent.

    See you soon... Rick

    Useful and practical links

  • Text and guides Misteryous...!

    I think that I am a user of illustrator experiencied but I have never seen this before, I made new model in AI CS3 and select 'cd booklet_blank.ait' in the home folder, and I saw that green texts and guides as sovereign, unselectable, even with hidden layers, they are still visible, so I went to the object/CropArea/Release and here... all the guides and text disappear.

    My question is, any body see the same thing?

    where green text and guides come?

    How is this possible?

    Thanks in advance

    2009-07-28_1019.png

    Double-click on the tool box. In the dialog box disable display options as you see fit. This display should be updated instantly so you can see the effect of deslecting each option button.

  • Problems with white text and transparency from Photoshop to Acrobat

    Hello Adobe community!

    What I do: I have a design that I created in Photoshop CC. This design has a transparent background. I try to save it as a PDF in photoshop, so I am able to open it in Adobe Acrobat Pro XI and print it on a color with only design showing paper

    Question: When I open the PDF file in Acrobat. I see only my white text and a light outline on the part of my design and still not all the rest of the design.

    Then when I print it on paper to color only the text appears (with a black stroke) on paper with my crop marks, I've done in the design of the PS. also when the text becomes transparent for some reason any (showing the color of the paper through the race), even if the text was put to white and the PDF presents the white text printed on colored paper

    Here are my steps:

    1. create Design

    2. save under...

    3. save - under Photoshop PDF

    4 [] as a copy, not controlled

    5. [check] layers, checked

    6 OK

    7. the General settings-

    Adobe PDF preset: [print high quality]

    Standard: no

    Compatibility: Acrobat 9/10 (PDF 1.7 +)

    Preserve Photoshop editing capabilities, verified

    Embed page thumbnails, Unchecked

    Optimize for fast web viewing, Checked

    View the PDF after registration, unchecked

    8 - compression

    Compression: None

    The rest of the settings are default.

    9. open a PDF of the file

    10. printing with the default settings

    11. look at my design massacred in the press

    12 frustration continues

    If for any reason any its like Acrobat of 'ignore' the white in my design? I'm so confused, and I've been at this for hours, through the forum post after post on the forum and it seems that I do everything correctly, but I get anywhere with it.

    I hope that I have added all of the necessary information, it's my first time posting here.

    Any ideas on what I am doing wrong? Would someone mind looking at the file? any help would be much appreciated.

    Note: also, I inverted the whole design makes all black instead of all white people. followed the exact same steps as above, and it printed perfectly. My confusion/frustration continues.

    You wrote:... also when printed on the paper of the color the text become transparent for some reason any (showing the color of the paper through the race), even if the text was put to white and the PDF document shows the text white .


    You cannot print white using an inkjet or laser because it is not white ink or toner in the printer.

    White was to come from your document that should be white.

    All the presses and printers use CMYK inks or toner.

    What is the definition of white? C = 0, M = 0, Y = 0, K = 0 so not a single of any ink drop is hoisted on paper in an area that is supposed to be white...

    Of course it will show the color of the paper in the areas where there is no ink.

    When you see something white that is printed on paper dark special white Opaque spot on an offset press using a color...

    (there is a model unique inket Epson which can print ink that appears to be white.)  The model is $ 7,000 by the way. ink [White] is $350, all other inks are only $90)

    On the Epson website:

    Ink Epson UltraChrome HDR white introduced an all-new organic hollow resin particle technology, forcing the fire to disperse randomly, producing the illusion of seeing white color.

    Note that even only claims Epson, it produces the illusion of white.

    The only way around this problem is to print on paper white and printed the "paper color" everywhere on paper that doesn't have your elements of design. ".



  • How to make the darker text and how to get rid of the ads on my toolbar

    original title: GI 82 and my text is too light, how to make it darker also how can I get rid of the ads on my toolbar

    Just do my text coming or in your darkest records

    Hello

    1 are you referring to the ads in the Internet Explorer toolbar?

    2. are you referring to the policies of the Internet Explorer icons?

    Method 1: You can change the theme of the operating system Windows 7 high contrast themes that will make the text and the darkest record.

    Follow the steps below to change the high contrast theme.

    1. open Personalization by clicking the Start button, then Control Panel. In the search box, type personalization, and then click customization.

    2. under Basic and high contrast themes, click Windows 7 Basic or one of the high contrast themes.

    Method 2: In order to disable ads in Internet Explorer disable all modules and check if this is useful.

    No add-on, run Internet Explorer mode.

    a. Click Start, point to programs, point to Accessories and system tools

    b. click Internet Explorer (No Add-ons).

    If this resolves the problem, follow these steps to isolate the browser add-on that is causing the problem:

    a. click Tools and then click Internet Options.

    b. click on the tab programs, then click on Manage Add-ons.

    c. click an add-on in the name list and then click on disable.

    d. Repeat step c until you identify the add-on that is causing the problem.

    If this solves the problem, this could be caused by an adware installed as add-on. See the link below for more information.

    http://Windows.Microsoft.com/en-us/Windows/help/Internet-Explorer/slow-five-tips-to-boost-performance

  • the text went too big and I don't know how to make it smaller

    the text got too big and I don't know how to make small new

    You may need to change your DPI settings. See the link below:

    Make the text on the screen larger or smaller
    http://Windows.Microsoft.com/en-us/Windows-Vista/make-the-text-on-your-screen-larger-or-smaller
    You can make text and other items, such as the icons on your screen easier to see by making them bigger. This by increasing the dots per inch (DPI) scale. You can also decrease the DPI scale to make text and other items on your screen smaller, so that more information fits on the screen.

    If at the end you can not click on the button 'OK' because it is hidden, press your 'Enter' key (OK is defined as the default value).

    If it would not help see this:

    Change the screen resolution
    http://Windows.Microsoft.com/en-us/Windows-Vista/change-screen-resolution

  • Hello, I want to make an outline of the text that I created.  I started with a blue background.  Then, I created a text and changed the color of gold.  I then put on an image and used the clipping mask to show the image by the text. Problem

    Hello, I want to make an outline of the text that I created.  I started with a blue background.  Then, I created a text and changed the color of gold.  I then put on an image and used the clipping mask to show the image by the text. Problem is it gets rid of color and shows that the peak through the text.  I wanted a draft of the text with the picture.  Is this possible?

    Thank you

    Peter

    You're welcome, Peter.

  • How to make a slideshow of heroes with the text and the button for each slide?

    I'm trying to make a basic slide show (auto no buttons) which will be the width of page 100% and I want each picture to have a title and a status button they can click to access other pages, for the life of me I can't this is! What I am doing wrong?

    Indeed I could solve my problem, yay 2 + hours of troubleshooting finally paid off!

    I tried the white color text and read 'Check this video now!', but the background was a color of the light, so it is in contradiction with the white text. To remedy this problem, I created a rectangle shape, he made black and reduced the opacity to 40% and threw it behind the text. In order to get the button under the text that says: 'Click here'! I was able to use a copy + paste glitch by sticking the trio in the caption text box for an image, thus allowing me to have a unique caption for each photo in an automatic slideshow. The problem arises due to the notion of a chart of the icon to stay on the text no matter how it is pasted into the text box but I could understand that if you group the text above the rectangle elements before pasting in the text area of the legend, then the text will remain on the chart! Yay problem solved (at least for now)!

  • How can I remove background and make it transparent?

    How can I remove background and make it transparent?

    The tutorial below shows you how to remove the background around a figure.

    For more simple images, you can try this tutorial, instead:

    I hope this helps and please let us know if you have problems with the steps!

  • Is it possible to get a transparent background for text and to vary the color of the text of the black and white?

    By the question, you can obviously tell that I am a newbie in InDesign. I have a cover of the album I'm working on, and the printer says that exit Photoshop will be rasterized and InDesign is better for clarity. However, in Photoshop, it's easy to overlay text on a chart where the text background is transparent, so the graph through, and it is also easy to change the color of the text if you wish.

    Change the opacity of the slghtly even filling in a text box in InDesign appears to degrade the quality of the text in a substantial way. I do something wrong, and is it possible to get a transparent background around that? And also, text must be only shades of black and white and no other colors?

    I would appreciate anyone who can take the time to respond to what is probably something obvious to most of you.

    Michael

    I realized that I forgot to include the screen Cap illustration. I'm sorry.

    I seem to be brain dead on terminology, too. The density of Tint slider is clearly labeled hue, no opacity, nuances and not creat a transparent color.

  • Full text and background semi transparent

    I need to have full text and background semi transparent.

    I found a solution here CSS;

    http://CSS-tricks.com/CSS-transparency-settings-for-all-broswers/

    But using a semi transparent PNG24 would be better for older browsers? IM using the text in black with a white backgrround, so if in a few browsers transparency has been lost and the bottom turned white, it would be OK.

    Thank you

    Here's what looks like a transparent PNG in IE6. Notice the slight blue tint around what should be transparent areas?

    jQuery PNG fix script can help.

    http://jQuery.andreaseberhard.de/pngFix/

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    www.Alt-Web.com/
    www.Twitter.com/ALTWEB
    www.Alt-Web.blogspot.com

  • IM on a site of social networking and text and all quotations have decreased size on my laptop... How to make page at 100%

    I'm on a social networking site and the texts and quotes are in small text-how I get back to 100%

    Not sure if it will work with you operating system. Hold down the Ctrl key and move the mouse wheel.

    If you could give a little more information. File type is current program visualization would be useful.

Maybe you are looking for