Stroke outline selection creates inner shadow - why?

Hi,
this is a typical beginners questions, so please bare with me if the answer is pretty obivous.
I put a few pictures in idividual layers on a canvas and made a simple frame using stroke selection. Then I made the mistake to rescale the pictures, and obviously the frames got scaled as well. So now they are all of different thickness and I would like to correct that by using again stroke outline selection. The only problems is: I get a whole bunch of effects I don't understand:
The following images showes the situation before I click o.k. and apply the settings to the right hand picture:
After clicking o.k. I see that the frame became wider (o.k. so far) but that there is also a brighter line inside the brown border- why? And more over there appears to be a shadow border inside the image, about as thick as the frame - where does this come from?
Any help would be much appreciated,
regards, Christoph

Thanks for the help so far! I am trying to reproduce in order to better understand whats going on.
1. Upper corner of a jpg image (500% view)
2. Selected by simple mouse cluck. Then outine selection 8 pt inside
3. Image size reduced to 60%
(so far everything as expected)
4. Again select by simple mouse click, then outline seletion again 8 pt inside
and .... result is perfect, as in image 2
I  don't get it,
halve an hour ago, when I tried to reproduce I got the artifacts ... really !

Similar Messages

  • Stroke (Outline) Selection grayed out

    I would like to outline a selection. After I select it and go to Edit, Stroke (Outline) Selection is grayed out. Please advise.

    The selection has to be active. You can determine this if you see "marching ants" surrounding the selection.
    Try this:
    Open picture files, make your selection with one of the tools, e.g. lasso, selection brush
    Go to Layer>new>layer via copy. Now the selection will be on its own layer, but not active - no marching ants
    Press CTRL + left click the layer thumbnail for the selection, and the marching ants show up
    Go to Edit>stroke. Position inside, use contrasting color vs. background
    Please report back with your progress.

  • How to use stroke outline in PSE 13

    I am trying to use the stroke outline around a picture in PSE 13 and it is greyed out.  Can anyone help me with this?
    Thank you in advance.
    Robyn

    Work in Expert tab
    Open the picture file
    Go to Select>all
    Open a blank layer at the top in the layers palette
    Go to Edit>stroke(outline)selection. Enter the px width for the stroke, select the color, and position it inside.

  • Is there a way to make the Inner Shadow to only render over the fill, and not stroke of a rectangle?

    To be precise, I want to recreate this button in Fireworks (original here):
    I created a rectangle with the stroke set to the dark orange color, and the fill to the light yellow color. Then I wanted to add a white inner shadow with 50% opacity to make the effect that's visible in the inner top, left, and right edges. However the shadow is also affecting the stroke. Is there a way to make it only affect the fill?
    Thanks.

    Actually, you can control the stacking order of filter effects. So you could apply the Inner Shadow effect to the object without the stroke, and then add the Stroke via the Photoshop Live Effects (at the bottom of the Filters menu).
    Both this and the Gradient Fill options would allow you to save the appearance as a Style, where it could then be applied to other buttons or objects.

  • Help! Need to create outline of a text shadow...

    Hi there
    I have designed the above white shadow using the path offset function. I want to create outlines for this shadoa only but am experiencing some difficulty. I have expanded the image but this shows both outlines for the black text and the white shadow. I only want the outlines for the white shadow so that this can be cut out, but another tricky thing is, i dont want the complete letters cut out but only the outline shape of letters (i tried to show above)..
    Please forward any ideas.
    Thanks
    Gemma

    Gemma,
    I have designed the above white shadow using the path offset function. I want to create outlines for this shadoa only but am experiencing some difficulty. I have expanded the image but this shows both outlines for the black text and the white shadow. I only want the outlines for the white shadow so that this can be cut out, but another tricky thing is, i dont want the complete letters cut out but only the outline shape of letters (i tried to show above)..
    If the offset is sufficient to make the borders of the white shadows overlap or have coinciding Anchor Points, you may Pathfinder>Merge, and then release Compound Paths and remove counters (holes in letters) as needed.

  • How to outline selected cells during drag and drop in the jtable

    Hi,
    I have spent a lot of time to find out how to outline selected cells during drag in the jtable, but I did not find the answer.
    Can anybody give me a tip, where to read more about this problem or even better, give an example...
    I have the following situation:
    1.Table has 10 rows and 10 columns
    2.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION) and setCellSelectionEnabled(true)
    3.user select 5 cells in 4th row (for example cell45,cell46,cell47,cell48 and cell49)
    4.user starts dragging. During dragging an outline should be drawn. Outline should be a rectangular with width of 5 cells and height of one cell. Outline should move according to the mouse position.
    5.rectangular disappears when dropped
    Regards,
    Primoz

    In "createTransferable" you can create a drag image
    which you can paint in "dragOver" and clear in "drop" method of DropTarget :
    package dnd;
    * DragDropJTableCellContents.java
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.dnd.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    public class DragDropJTableCellContents extends JFrame {
        public DragDropJTableCellContents() {
            setTitle("Drag and Drop JTable");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            getContentPane().add(createTable("JTable"), BorderLayout.CENTER);
            setSize(400, 300);
            setLocationRelativeTo(null);
        private JPanel createTable(String tableId) {
            DefaultTableModel model = new DefaultTableModel();
            for (int i = 0; i < 10; i++) {
                model.addColumn("Column "+i);
            for (int i = 0; i < 10; i++) {
                String[] rowData = new String[10];
                for (int j = 0; j < 10; j++) {
                    rowData[j] = tableId + " " + i + j;
                model.addRow(rowData);
            JTable table = new JTable(model);
            table.getTableHeader().setReorderingAllowed(false);
            table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
            table.setCellSelectionEnabled(true);
            JScrollPane scrollPane = new JScrollPane(table);
            table.setDragEnabled(true);
            TableTransferHandler th = new TableTransferHandler();
            table.setTransferHandler(th);
            table.setDropTarget(new TableDropTarget(th));
            table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(scrollPane);
            panel.setBorder(BorderFactory.createTitledBorder(tableId));
            return panel;
        public static void main(String[] args) {
            new DragDropJTableCellContents().setVisible(true);
        abstract class StringTransferHandler extends TransferHandler {
            public int dropAction;
            protected abstract String exportString(JComponent c);
            protected abstract void importString(JComponent c, String str);
            @Override
            protected Transferable createTransferable(JComponent c) {
                return new StringSelection(exportString(c));
            @Override
            public int getSourceActions(JComponent c) {
                return COPY;
            @Override
            public boolean importData(JComponent c, Transferable t) {
                if (canImport(c, t.getTransferDataFlavors())) {
                    try {
                        String str = (String) t.getTransferData(DataFlavor.stringFlavor);
                        importString(c, str);
                        return true;
                    } catch (UnsupportedFlavorException ufe) {
                    } catch (IOException ioe) {
                return false;
            @Override
            public boolean canImport(JComponent c, DataFlavor[] flavors) {
                for (int ndx = 0; ndx < flavors.length; ndx++) {
                    if (DataFlavor.stringFlavor.equals(flavors[ndx])) {
                        return true;
                return false;
        class TableTransferHandler extends StringTransferHandler {
            private int dragRow;
            private int[] dragColumns;
            private BufferedImage[] image;
            private int row;
            private int[] columns;
            public JTable target;
            @Override
            protected Transferable createTransferable(JComponent c) {
                JTable table = (JTable) c;
                dragRow = table.getSelectedRow();
                dragColumns = table.getSelectedColumns();
                createDragImage(table);
                return new StringSelection(exportString(c));
            protected String exportString(JComponent c) {
                JTable table = (JTable) c;
                row = table.getSelectedRow();
                columns = table.getSelectedColumns();
                StringBuffer buff = new StringBuffer();
                for (int j = 0; j < columns.length; j++) {
                    Object val = table.getValueAt(row, columns[j]);
                    buff.append(val == null ? "" : val.toString());
                    if (j != columns.length - 1) {
                        buff.append(",");
                return buff.toString();
            protected void importString(JComponent c, String str) {
                target = (JTable) c;
                DefaultTableModel model = (DefaultTableModel) target.getModel();
                String[] values = str.split("\n");
                int colCount = target.getSelectedColumn();
                int max = target.getColumnCount();
                for (int ndx = 0; ndx < values.length; ndx++) {
                    String[] data = values[ndx].split(",");
                    for (int i = 0; i < data.length; i++) {
                        String string = data;
    if(colCount < max){
    model.setValueAt(string, target.getSelectedRow(), colCount);
    colCount++;
    public BufferedImage[] getDragImage() {
    return image;
    private void createDragImage(JTable table) {
    if (dragColumns != null) {
    try {
    image = new BufferedImage[dragColumns.length];
    for (int i = 0; i < dragColumns.length; i++) {
    Rectangle cellBounds = table.getCellRect(dragRow, i, true);
    TableCellRenderer r = table.getCellRenderer(dragRow, i);
    DefaultTableModel m = (DefaultTableModel) table.getModel();
    JComponent lbl = (JComponent) r.getTableCellRendererComponent(table,
    table.getValueAt(dragRow, dragColumns[i]), false, false, dragRow, i);
    lbl.setBounds(cellBounds);
    BufferedImage img = new BufferedImage(lbl.getWidth(), lbl.getHeight(),
    BufferedImage.TYPE_INT_ARGB_PRE);
    Graphics2D graphics = img.createGraphics();
    graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1f));
    lbl.setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY));
    lbl.paint(graphics);
    graphics.dispose();
    image[i] = img;
    } catch (RuntimeException re) {
    class TableDropTarget extends DropTarget {
    private Insets autoscrollInsets = new Insets(20, 20, 20, 20);
    private Rectangle rect2D = new Rectangle();
    private TableTransferHandler handler;
    public TableDropTarget(TableTransferHandler h) {
    super();
    this.handler = h;
    @Override
    public void dragOver(DropTargetDragEvent dtde) {
    handler.dropAction = dtde.getDropAction();
    JTable table = (JTable) dtde.getDropTargetContext().getComponent();
    Point location = dtde.getLocation();
    int row = table.rowAtPoint(location);
    int column = table.columnAtPoint(location);
    table.changeSelection(row, column, false, false);
    paintImage(table, location);
    autoscroll(table, location);
    super.dragOver(dtde);
    public void dragExit(DropTargetDragEvent dtde) {
    clearImage((JTable) dtde.getDropTargetContext().getComponent());
    super.dragExit(dtde);
    @Override
    public void drop(DropTargetDropEvent dtde) {
    Transferable data = dtde.getTransferable();
    JTable table = (JTable) dtde.getDropTargetContext().getComponent();
    clearImage(table);
    handler.importData(table, data);
    super.drop(dtde);
    private final void paintImage(JTable table, Point location) {
    Point pt = new Point(location);
    BufferedImage[] image = handler.getDragImage();
    if (image != null) {
    table.paintImmediately(rect2D.getBounds());
    rect2D.setLocation(pt.x - 15, pt.y - 15);
    int wRect2D = 0;
    int hRect2D = 0;
    for (int i = 0; i < image.length; i++) {
    table.getGraphics().drawImage(image[i], pt.x - 15, pt.y - 15, table);
    pt.x += image[i].getWidth();
    if (hRect2D < image[i].getHeight()) {
    hRect2D = image[i].getHeight();
    wRect2D += image[i].getWidth();
    rect2D.setSize(wRect2D, hRect2D);
    private final void clearImage(JTable table) {
    table.paintImmediately(rect2D.getBounds());
    private Insets getAutoscrollInsets() {
    return autoscrollInsets;
    private void autoscroll(JTable table, Point cursorLocation) {
    Insets insets = getAutoscrollInsets();
    Rectangle outer = table.getVisibleRect();
    Rectangle inner = new Rectangle(outer.x + insets.left,
    outer.y + insets.top,
    outer.width - (insets.left + insets.right),
    outer.height - (insets.top + insets.bottom));
    if (!inner.contains(cursorLocation)) {
    Rectangle scrollRect = new Rectangle(cursorLocation.x - insets.left,
    cursorLocation.y - insets.top,
    insets.left + insets.right,
    insets.top + insets.bottom);
    table.scrollRectToVisible(scrollRect);
    Edited by: Andre_Uhres on Nov 18, 2007 10:03 PM

  • Inner shadow effect and layers in PSE 9

    Hi,
    I was wondering if someone could assist me. 
    In PSE 9, I opened a photo>selected it>created a new layer and applied an inner shadow without a problem.  However, when I selected the TEXT tool and wrote some text in a new layer on top of the photo and dropped a shadow and/or bevel on the text, the text appears blurry and the shadow effect doesn't look right.  I tried the same effects on the text wihtout adding an inner shadow to the photo underneath and the text looked great. Any thoughts on what I am doing wrong?
    Thanks!

      Try right clicking on the T symbol in the tool box and choose Horizontal Type Mask Tool.
    Then type your text and see if adding your layer style looks any better.
     

  • How can I create drop shadows with PSE10

    How can I create drop shadows with PSE10 & PE10?

    Layer styles let you quickly apply effects to an entire layer. In the Effects panel, you can view a variety of predefined layer styles and apply a style with just a click of the mouse.
    Three different layer styles applied to text 
    The boundaries of the effect are automatically updated when you edit that layer. For example, if you apply a drop shadow style to a text layer, the shadow changes automatically when you edit the text.
    Layer styles are cumulative, which means that you can create a complex effect by applying multiple styles to a layer. You can apply one style from each style library per layer. You can also change a layer’s style settings to adjust the final result.
    When you apply a style to a layer, a style icon appears to the right of the layer’s name in the Layers panel. Layer styles are linked to the layer contents. When you move or edit the contents of the layer, the effects are modified correspondingly.
    Once you choose Layer > Layer Style > Style Settings, you can edit the settings of a layer’s style or apply other style settings or attributes available in the dialog box.
    Lighting Angle Specifies the lighting angle at which the effect is applied to the layer.
    Drop Shadow
    Specifies the distance of a drop shadow from the layer’s content. You can also set the size and opacity with the sliders.
    Outer Glow Size Specifies the size of a glow that emanates from the outside edges of the layer’s content. You can also set the opacity with the slider.
    Inner Glow Size Specifies the size of a glow that emanates from the inside edges of the layer’s content. You can also set the opacity with the slider.
    Bevel Size Specifies the size of beveling along the inside edges of the layer’s content.
    Bevel Direction Specifies the direction of the bevel, either up or down.
    Stroke Size Specifies the size of the stroke.
    Stroke Opacity Specifies the opacity of the stroke.

  • Inner shadow

    Hi,
    In InDesign CS3 there is an option to create an inner shadow in a vector object. Is it possible to do the same in Illustrator CS3.
    Thanks,
    Meryl

    Not as an effect. You can accomplish the look by:
    <br />
    <br />1. Duplicate the object or text.
    <br />2. Offset the front object.
    <br />3. Blur the front object.
    <br />4. Select both objects and select "Object&gt;Clipping mask&gt;Make (Cmd-7)
    <br />5. Select just the mask object (the back object) and fill it with the intended shadow color.
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1vMzhnY6S7jqM7SlY15lu9ECixJOCY0" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1vMzhnY6S7jqM7SlY15lu9ECixJOCY0_thumb.png" border="0" />

  • Merge Text and Outline to create cut contour

    Hi there just wondering if anyone can help. I have a Roland Printer cutter and want to create text with its outline and then create a cut contour line around both. The problem I have is it creates two cut contour lines (one around the text itself and one around the text outline). This is a problem because my cutter then cuts out the text and its outline. Can anyone help create on cut contour line around the entire text outline?

    I think I  understand
    1. after you give your text a stroke (outline)
    2. select the text with the direct select or selection tool
    3. Go to the Appearance panel and from the flyout select Add New Stroke
    4. The stroke will be black and 1 pt and centered in you Outline (stroke)
    5. Change the Strokeweight to the weight of the cut line, I think it is .25 pts but you know better than me.
    6. Highlight the .25 pt black stroke in the Appearance panel
    7. Go to Effects>Path>Offset Path and give it an offse half the weight of your Outline (Stroke)
    Now the cutline will be where you want it

  • Is there any way to create a shadow in both sides of a box?

    Hi,
    is there any way to create a shadow in both sides (opposite) of a box? I just can create the shadow in one side..
    If not, is that possible in CS6?
    CS5.
    Regards

    You can definitely show an inner shadow on just one side of a rectangle.  You just need to turn the blur down to 0 to prevent it from leaking to the nearby sides.  Then set the angle to an exact multiple of 90, like 270 to put the shadow on the top side of the rect.
    This file has some examples: http://johndunning.com/fireworks/scratch/Shadowed%20Elements.png
    If you're trying to simulate a rectangle with different border colors or widths, this auto shape can make that easy: http://johndunning.com/fireworks/about/MultiBorderRect

  • Can anyone help me?Creating the shadow copies in the file server cluster ,there are some errors occured, OS version is WSS 2012

    I construct a failover cluster(file server,AP module) for sharing files by WSS 2012,and I want to use the shadow copies to backup my data,but when making  a shadow copies on the volume which  is added to the cluster(not the CSV,just add
    it to the cluster and use it to share files,it plays the role of file server),there are some errors occured, these errors result in the shadow copies failed,error likes the following pictures:
    1: the disk F is added to the cluster,first I make the shadow copies by click the right key of mouse on the disk F,and chouse the configeration shadow copies,and click the settings, then click the schedule , and I wait just a few seconds, the error is appeared,like
    this picture 1, the wait operation timed out,and then ,
    I click the schedule button once again,a different error occured,like the following picture," the object already exists",if i don't set the schedule at first ,use the default shedule,and click the enable button also the same  error must 
    accure
    but the only diffrence is that, a shadow copy time point is created, also ,you can make the shadow copies by click " create now", that is creating the shadow copies manually. Although it can succesfully make the shadow copies, but when I select
    a time point to revert, error  occured, "A volume that contains operating system files or resides on a cluster shared disk cannot be reverted" 
    In a word,all the errors above make the shadow copies by schedulling failed,except making the shadow copies manually,but what makes me confused is that I have ever maked the shadow copies succesfully by schedul a policy,I don't know what makes it succesful,
    it's small probability, most of time ,it's failed.No matter what kind of situation, revert must be failed.
    I'm sorry for my pool english , it's the first time for me getting help in forum by english ,I don't know if I descripe my question clearly, also ,other method like the link
    http://technet.microsoft.com/en-us/library/cc784118(v=ws.10).aspx I have tried,but the same errors occured.Can anyone tell me How can I make the shadow copies in File Server
    cluster(AP module)?And I make a mistake in operating? Looking forward for your reply.Thanks!

    Hi,
    Please check the following 2 places:
    HKEY_LOCAL_MACHINE\Cluster\Tasks
    C:\Windows\System32\Tasks
    First please compare permission settings of the folder C:\Windows\System32\Tasks with a working computer. Correct permission settings if anything wrong. Specifically, confirm you current account do have permission on this folder.
    As it said "object already exists", find the schedules you created before, backup and delete all these schedules in both registry key and folder.
    Then test to create a new schedule to see if issue still exists.
    Meanwhile what kind of storage device you are using? The issue could occur on specific storage device, so test to enable shadow copy on a local disk to see if that will work.
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]
    Thank you for you reply.On the local volume,all of these errors will not occur, but the volume in the file server cluser.There is no value in HKEY_LOCAL_MACHINE\Cluster\Tasks. On local volume, everything goes well about the shadow copy, so I do not
    think something is wrong about the permission settings of the folder C:\Windows\System32\Tasks.Storage device  is a SAN,we use RAID6 and provide the LUNs to the NAS engine, and the make the volume on these LUNs, Is Angthing wrong? Hope for you
    reply~~

  • CS3: Inner Shadow crashes InDesign

    When placing images in large documents (1745 x 995 mm) and using the effect Inner Shadow on the image, InDesign crashes when exporting to PDF.
    This is a real puzzle cause when I use the same image with that effect in a smaller document (A4) I have NO problem in exporting the document. Why is that? Is there a work-around, some settings I've missed or an upgrade that fixes this problem (I have IND CS3 5.0.3).

    I've isolated the problem. Took me about 15 InDesign restarts.
    The problem has nothing to do with PDF settings (I tried all the defaults with or without transparency. High-res and Low-res. RGB and CMYK). InDesign crashes when it's trying to download the image with the effect. It doesn't really get to making the PDF.
    The problem is...The file size! I tried it with different kind of file-types (jpg, tif, psd - 8 bit, RGB and CMYK with or without icc-profiles)No matter what kind of file InDesign crashes when handling the effect on the image (120 MB). When I used another smaller image (only 20 MB) or the same image downsampled, InDesign made the PDF. So it seems to be the amount of pixels in the image that has an effect on InDesign handling the effects.
    Has this something to do with my hardware (PC, 4 GB RAM, 8*3158 MHz processors, Virtual memory: 3 GB) or is it the software?

  • Inner Shadow missing feature?

    I'm looking for a better alternative to my current vector graphic applications, mostly to create modern web and application UI's.
    So I downloaded the trial version of Illustrator CC, to see if I should make the jump to Illustrator for vector work.
    After using about half a day to learn the applicaiton and do some experimentation, I was going to apply an Inner shadow to some text on a button, to make it look indented, and was like "What the.....where's the Inner Shadow Effect?".
    I could see the Drop Shadow feature, and there's an Inner Glow feature (can't be offset), but that doesn't solve the problem of making shapes and text look indented.
    If anyone doesn't know what I mean, just browse 'Inner Shadow' on google, it's such a fundamental feature.
    Photoshop has it.
    InDesign has it.
    Fireworks has it.
    Even Sketch, the app for Mac has it. And Acorn has it as well.
    Hell, I can even write it in CSS3:
    .example {
    -moz-box-shadow: inset -5px -5px #888;
    -webkit-box-shadow: inset -5px -5px #888;
    box-shadow: inset -5px -5px #888;
    So I looked around the web, and realized Illustrator has no Inner Shadow feature (!!), but there are work arounds. Here's an example:
    http://vectorboom.com/load/effects/innershadow/3-1-0-257
    (Or this:)
    http://www.webdesign.org/raster-graphics/fireworks/mastering-shadows-in-photoshop-illustra tor-and-fireworks-who-s-the-winner.19730.html
    Sorry, but when you are used to applying something so fundamental as Inner Shadow, to make your shapes and texts look indented with a single click (and easily adjust it live and experiment), then it's hard to get used to Illustrator.
    And when something so basic is missing, then you can only fear what else will also hinder you, as you continue to learn the application and try to make the switch.
    Looking at the forum and others who have requested the same thing, and for so long, it sadly also says something about how much adobe listens to the community.
    Sorry but this is a deal breaker for me, and my trial stops here.
    I'm sure Illustrator can do a lot of other fancy things, but since it still havent figured out the fundamentals (shadow and indented), I'm not buying.

    Yeah Photoshop, and most other vector applications I've tried (even CSS3 stylesheet has it!).
    I searched the web and found out this feature has been much requested and needed for many many years.
    What I get from that, is that Adobe is not a developer that listens to it's community. And that's what I get from just using the Trial version of their latest software, Illustrator CC...there is no excuse for not having inner shadow in a vector graphics application, especially not one that's this expensive, just makes it embarrising.
    Damn, I was hoping to switch to Illustrator...

  • Inner shadow box with paper fill overprinting?

    (Mac Pro 4,1 / 2.66 GHz Quad/12G InDesign: CS6 / Ver. 8.0.2)
    I have 2 boxes filled with paper and Inner shadow effect with black (created in InDesign), Background is a 4 color linear gradient (left is 4c green, middle is paper, right 4c green) from Illustrator.
    The Inner shadow box that is close to the top of gradient (more green than white) is ok.
    The Inner shadow box that sits on the paper fill of the gradient, appears to be overprinting, thus no paper fill.
    I have check fills of the Inner shadow box in InDesign, to make sure it is not overprinting.
    I have tried some tricks but nothing works.
    Ideas anyone?

    I found the solution:
    You should never use white as a color in a gradient. I have always been told to use 5-10% of the gradient color.
    This gradient create in Illustrator using:
    left is 4c green, middle is paper, right 4c green
    Solution:
    Duplicated the green and made a spot
    modified gradient to:
    left 4c green, middle 8% of Spot green, right 4c green
    Been a few years and I forgot prepress 101, white is not a color and should never be used in a gradient.
    Hope this helps someone in the future.
    Thank you Leonie15

Maybe you are looking for

  • VPN Client and DNS settings

    Hello, here are few posts (quite some time ago) telling the same trouble: The VPN Client does *NOT* restore the original DNS settings. Upon BM3.8.2 Massimo told, that this is a bug in that version of the VPN client. I face this issue with 3.8.16 and

  • How to find out which keys are pressed while a d&d drop occurs?

    Hi, while an item is dropped as part of a drag and drop operation, I would like to know if the user has pressed any keys. I use a TransferHandler for managing the d&d and this works fine with the system dependent modifier keys for move, copy and link

  • Preview video in a menu

    When I have a button highlighted in a menu, I want a window beside to play a preview to the video clip which it is linked to (No audio). Is this possible, and how do I do it?

  • HT204406 mess up a download

    i messed up on an album i bought from itunes store. I stopping a download  on a album and now one song the first song on the albem wont play all the way. just the beginning of the song and the it stops and gos to the second. how can i fix this.

  • How to shift column in Goods movement overview

    Dear gurus(sap pp consultant), this is related to earlier thread which was answered by you, i am able to drag the required column,but i did not find the table setting tab, i am working on 4.7 version please suggest....