Drop shadows with mask problem

I've got a vector image that I've applied a drop shadow to,
I've then used a mask on it to square it off but unfortunately the
drop shadow follows the mask after applying.
Is there any way the mask can cut off the the drop shadow
effect as well?

Garry Bradley wrote:
> I've got a vector image that I've applied a drop shadow
to, I've then used a
> mask on it to square it off but unfortunately the drop
shadow follows the mask
> after applying.
>
> Is there any way the mask can cut off the the drop
shadow effect as well?
It's pretty hard to guess what it looks like from your
description. Can
you upload a copy of your document to a website where we can
see it?
Linda Rathgeber - Adobe Community Expert
http://www.adobe.com/communities/experts/members/8.html

Similar Messages

  • 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.

  • Flicker when using drop shadow with edge feather

    I have encountered a new problem with FCP 5.1.2. When using edge feather and drop shadow together, I encounter a flicker around the edge of the feathered video image. This flicker goes away if I remove the drop shadow. I read in an earlier post that the 5.02 update solved this problem. However, I am using version 5.1.2 and the sugestion to reajust the percentage of the effect and then back to the original percentage, doesn't work. I have used the edge feather, drop shadow combo many times in earlier versions of FCP with no problem. Fixes anyone?
    I posted this months ago with no reply so I'm trying again. Anyone with any thoughts? I really don't like having to resort to creating the drop shadow in Photoshop.

    What I am trying to do is very simple. I want to soften the edges of an image and give it a drop shadow. This "image" could be a scaled and cropped DV source, or it could be a photoshop file. This is something I have done routinely in previous versions of FCP without any problem. This is very basic. I have opened earlier projects that were edited in those earlier versions of FCP, and what looked fine then, looks horrible now. If others are not having this problem, can I assume my software upgrade is defective in some way?
    Please, if someone would perform the following and report back, I would greatly appreciate it.
    1- import two DV video files into a new FCP project.
    2- place DV file "A" on the V1 track
    3- create a V2 track and place DV file "B" over DV file "A"
    4- scale DV file "B" to 50% and apply a 100% Edge Feather to it.
    5- now check the Drop Shadow box
    This will look fine on your computer screen, but when viewing on an external monitor the edges of DV file "B" flicker in a terribly annoying way.
    Something this simple and basic shouldn't be causing this much pain. Thanks in advance for your help.

  • Add drop shadow with css?

    is there a way to add a dropshadow with css? (specifically to
    a label component)
    Thanks!

    "Phrankie" <[email protected]> wrote in
    message
    news:gop31l$24j$[email protected]..
    >
    quote:
    Originally posted by:
    ashtangakasha
    >
    quote:
    Originally posted by:
    danger42
    > No, drop shadows are implemented as filters, not styles.
    They cannot be
    > set
    > via CSS in Flex 3.
    >
    > matt horn
    > flex docs
    >
    > Although Matt's reply is true with respect to label
    components, which is
    > what
    > the original question addressed, it's worth pointing out
    that MXML Styles
    >
    can
    set dropshadows on components which happen to expose the
    > dropShadowEnabled property. Perhaps this is new to Flex
    3.2.
    >
    > For example, CSS can apply dropshadows to TextArea,
    Canvas, DataGrid,
    > AdvancedDataGrid, and other list-based containers, but
    not to Buttons,
    > Labels,
    > ComboBoxes, Images, etc. The rationale for exposing or
    not exposing the
    > dropShadowEnabled (and dropShadowColor) property is not
    clear, so you have
    > to
    > refer to the docs.
    I think it depends on whether the component has a HaloBorder
    or not.

  • Drop menus with mask and invisible movie clip

    please see this navigation interface:
    http://www.hearightnow/yogamater/
    when the mouse is outside of the drop menus, the drop menus "hide" behind the outside of a mask, when the mouse enters the drop menus, they move up. An invisible movie clip the traces the frame of the photos is in place to insert ROLL_OVER and ROLL_OUT code to "block" the event listener that functions the "yoga" drop menu.
    This is all done in one frame, the scripts do all the animation of the drop menus.
    the current code for this menu allows the mouse to travel from the photos to the "yoga" drop menu without triggering the menu to go up, however if the mouse travels from the "yoga" drop menu to the photos, the drop menu locks up until the mouse leaves the photos.
    any ideas how this can be fixed? also, how do I apply the script on the invisible clip to all the drop menus?
    definitely a newbie to AS3 so all help is greatly appreciated!!
    here is the main script:
    stop();
    addEventListener(Event.ENTER_FRAME,upyoga);
    addEventListener(Event.ENTER_FRAME,upteach);
    addEventListener(Event.ENTER_FRAME,upsched);
    addEventListener(Event.ENTER_FRAME,uppriv);
    addEventListener(Event.ENTER_FRAME,upcont);
    var speed:Number=.222;
    function upyoga(e:Event) {
    if ((yoga_menu.mouseY<yoga_menu.height&&yoga_menu.mouseY>0) &&
    (yoga_menu.mouseX<80&&yoga_menu.mouseX>0)) {
    yoga_menu.y-=(-58+yoga_menu.y)*speed;
    } else {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function upteach(e:Event) {
    if ((teach_menu.mouseY<teach_menu.height&&teach_menu.mouseY>0) &&
    (teach_menu.mouseX<80&&teach_menu.mouseX>0)) {
    teach_menu.y-=(-65+teach_menu.y)*speed;
    } else {
    teach_menu.y-=(-118+teach_menu.y)*speed;
    function upsched(e:Event) {
    if ((sched_menu.mouseY<sched_menu.height&&sched_menu.mouseY>0) &&
    (sched_menu.mouseX<80&&sched_menu.mouseX>0)) {
    sched_menu.y-=(-42+sched_menu.y)*speed;
    } else {
    sched_menu.y-=(-96+sched_menu.y)*speed;
    function uppriv(e:Event) {
    if ((priv_menu.mouseY<priv_menu.height&&priv_menu.mouseY>0) &&
    (priv_menu.mouseX<80&&priv_menu.mouseX>0)) {
    priv_menu.y-=(-28+priv_menu.y)*speed;
    } else {
    priv_menu.y-=(-74+priv_menu.y)*speed;
    function upcont(e:Event) {
    if ((cont_menu.mouseY<cont_menu.height&&cont_menu.mouseY>0) &&
    (cont_menu.mouseX<80&&cont_menu.mouseX>0)) {
    cont_menu.y-=(-40+cont_menu.y)*speed;
    } else {
    cont_menu.y-=(-88+cont_menu.y)*speed;
    and here is the script on the invisible clip:
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, invisClipOver);
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, menuBack);
    invisiClip.addEventListener(MouseEvent.ROLL_OUT, invisClipOut);
    function invisClipOver(event:MouseEvent):void {
    removeEventListener(Event.ENTER_FRAME,upyoga)
    function menuBack(e:Event) {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function invisClipOut(event:MouseEvent):void {
    addEventListener(Event.ENTER_FRAME,upyoga)

    I was having trouble attaching a zip or fla to this post so they can be retrieved at
    http://www.hearightnow.com/yogamater/menu_45b.zip
    or
    http://www.hearightnow.com/yogamater/menu_45b.fla
    the "menu" layer contains the mask that the drop menus hide behind
    the "invis" layer contains the invisible movie clip that has the code that removes and adds the event listeners that move the "yoga" drop menu
    the photos seen at http://www.hearightnow.com/yogamater/ are added with HTML DIV tags.
    thanks!

  • Drop menus with mask and invisible clip

    please see this navigation interface:
    http://www.hearightnow.com/yogamater/
    when the mouse is outside of the drop menus, the drop menus "hide" behind the outside of a mask, when the mouse enters the drop menus, they move up. An invisible movie clip the traces the frame of the photos is in place to insert ROLL_OVER and ROLL_OUT code to "block" the event listener that functions the "yoga" drop menu.
    This is all done in one frame, the scripts do all the animation of the drop menus.
    the current code for this menu allows the mouse to travel from the photos to the "yoga" drop menu without triggering the menu to go up, however if the mouse travels from the "yoga" drop menu to the photos, the drop menu locks up until the mouse leaves the photos.
    any ideas how this can be fixed? also, how do I apply the script on the invisible clip to all the drop menus?
    definitely a newbie to AS3 so all help is greatly appreciated!!
    here is the main script:
    stop();
    addEventListener(Event.ENTER_FRAME,upyoga);
    addEventListener(Event.ENTER_FRAME,upteach);
    addEventListener(Event.ENTER_FRAME,upsched);
    addEventListener(Event.ENTER_FRAME,uppriv);
    addEventListener(Event.ENTER_FRAME,upcont);
    var speed:Number=.222;
    function upyoga(e:Event) {
    if ((yoga_menu.mouseY<yoga_menu.height&&yoga_menu.mouseY>0) &&
    (yoga_menu.mouseX<80&&yoga_menu.mouseX>0)) {
    yoga_menu.y-=(-58+yoga_menu.y)*speed;
    } else {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function upteach(e:Event) {
    if ((teach_menu.mouseY<teach_menu.height&&teach_menu.mouseY>0) &&
    (teach_menu.mouseX<80&&teach_menu.mouseX>0)) {
    teach_menu.y-=(-65+teach_menu.y)*speed;
    } else {
    teach_menu.y-=(-118+teach_menu.y)*speed;
    function upsched(e:Event) {
    if ((sched_menu.mouseY<sched_menu.height&&sched_menu.mouseY>0) &&
    (sched_menu.mouseX<80&&sched_menu.mouseX>0)) {
    sched_menu.y-=(-42+sched_menu.y)*speed;
    } else {
    sched_menu.y-=(-96+sched_menu.y)*speed;
    function uppriv(e:Event) {
    if ((priv_menu.mouseY<priv_menu.height&&priv_menu.mouseY>0) &&
    (priv_menu.mouseX<80&&priv_menu.mouseX>0)) {
    priv_menu.y-=(-28+priv_menu.y)*speed;
    } else {
    priv_menu.y-=(-74+priv_menu.y)*speed;
    function upcont(e:Event) {
    if ((cont_menu.mouseY<cont_menu.height&&cont_menu.mouseY>0) &&
    (cont_menu.mouseX<80&&cont_menu.mouseX>0)) {
    cont_menu.y-=(-40+cont_menu.y)*speed;
    } else {
    cont_menu.y-=(-88+cont_menu.y)*speed;
    and here is the script on the invisible clip:
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, invisClipOver);
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, menuBack);
    invisiClip.addEventListener(MouseEvent.ROLL_OUT, invisClipOut);
    function invisClipOver(event:MouseEvent):void {
    removeEventListener(Event.ENTER_FRAME,upyoga)
    function menuBack(e:Event) {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function invisClipOut(event:MouseEvent):void {
    addEventListener(Event.ENTER_FRAME,upyoga)

    I was having trouble attaching a zip or fla to this post so they can be retrieved at
    http://www.hearightnow.com/yogamater/menu_45b.zip
    or
    http://www.hearightnow.com/yogamater/menu_45b.fla
    the "menu" layer contains the mask that the drop menus hide behind
    the "invis" layer contains the invisible movie clip that has the code that removes and adds the event listeners that move the "yoga" drop menu
    the photos seen at http://www.hearightnow.com/yogamater/ are added with HTML DIV tags.
    thanks!

  • Add Drop Shadow to JMenu Problem

    Hi,
    I got this code from "Swing Hacks", for some reason it does not run for me, but throws exceptions. I can not figure out why this is happening. This code straight out of the book, should be runnable. Below is the custom class, then the driver-test class, then the Exception:
    import javax.swing.plaf.basic.*;
    import javax.swing.plaf.*;
    import javax.swing.border.*;
    import javax.swing.*;
    import java.awt.*;
    public class CustomPopupMenuUI extends BasicPopupMenuUI{
         public static ComponentUI createUI(JComponent c){
              return new CustomPopupMenuUI();
         public Popup getPopup(JPopupMenu popup, int x,
                   int y){
              Popup pp = super.getPopup(popup, x,y);
              JPanel panel = (JPanel)popup.getParent();
              panel.setBorder(new ShadowBorder(3,3));
              panel.setOpaque(false);
              return pp;
    class ShadowBorder extends AbstractBorder{
         int xoff,yoff;
         Insets insets;
         public ShadowBorder(int x, int y){
              this.xoff = x;
              this.yoff = y;
              insets = new Insets(0,0,xoff,yoff);
         public Insets getBorderInsets(Component c){
              return insets;
         public void paintBorder(Component comp, Graphics g,
                   int x, int y, int width, int height){
              g.setColor(Color.BLACK);
              g.translate(x,y);
              // draw right side
              g.fillRect(width-xoff,yoff,xoff,height-yoff);
              // draw bottom side
              g.fillRect(xoff,height-yoff,width-xoff,yoff);
              g.translate(-x,-y);
    // Driver Below
    import javax.swing.*;
    import javax.swing.plaf.ComponentUI;
    import java.awt.*;
    public class MenuTest {
         public static void main(String[] args)throws Exception{
              UIManager.put("PopupMenuUI","CustomPopupMenuUI");
              //UIManager.put("MenuItemUI","LucentMenuItemUI");
              JFrame frame = new JFrame();
              JMenuBar mb = new JMenuBar();
              //mb.setUI(new CustomMenuUI());
              frame.setJMenuBar(mb);
              JMenu menu = new JMenu("File");
              mb.add(menu);
              menu.add(new JMenuItem("Open"));
              menu.add(new JMenuItem("Save"));
              menu.add(new JMenuItem("Close"));
              menu.add(new JMenuItem("Exit"));
              menu = new JMenu("Edit");
              mb.add(menu);
              menu.add(new JMenuItem("Cut"));
              menu.add(new JMenuItem("Copy"));
              menu.add(new JMenuItem("Paste"));
              menu.add(new JMenuItem("Paste Special.."));
              frame.getContentPane().setLayout(new BorderLayout());
              frame.getContentPane().add("North",new JButton("Button"));
              frame.getContentPane().add("Center",new JLabel("Label"));
              frame.getContentPane().add("South",new JCheckBox("checkbox"));
              frame.pack();
              frame.setSize(200,150);
              frame.show();
    }Exception:
    UIDefaults.getUI() failed: no ComponentUI class for: javax.swing.JPopupMenu[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.0,border=,flags=0,maximumSize=,minimumSize=,preferredSize=,desiredLocationX=0,desiredLocationY=0,label=,lightWeightPopupEnabled=true,margin=,paintBorder=true]
    java.lang.Error
         at javax.swing.UIDefaults.getUIError(Unknown Source)
         at javax.swing.MultiUIDefaults.getUIError(Unknown Source)
         at javax.swing.UIDefaults.getUI(Unknown Source)
         at javax.swing.UIManager.getUI(Unknown Source)
         at javax.swing.JPopupMenu.updateUI(Unknown Source)
         at javax.swing.JPopupMenu.<init>(Unknown Source)
         at javax.swing.JPopupMenu.<init>(Unknown Source)
         at javax.swing.JMenu.ensurePopupMenuCreated(Unknown Source)
         at javax.swing.JMenu.add(Unknown Source)
         at hacks.MenuTest.main(MenuTest.java:23)
    advTHANKSance

    I am also using xp and java version 1.4.2_08, but to no avail.. see below:
    C:\workspace\Swing Hacks\src>java -version
    java version "1.4.2_08"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
    C:\workspace\Swing Hacks\src>java hacks.MenuTest
    UIDefaults.getUI() failed: no ComponentUI class for: javax.swing.JPopupMenu[,0,0
    ,0x0,invalid,alignmentX=null,alignmentY=null,border=,flags=0,maximumSize=,minimu
    mSize=,preferredSize=,desiredLocationX=0,desiredLocationY=0,label=,lightWeightPo
    pupEnabled=true,margin=,paintBorder=true]
    java.lang.Error
    at javax.swing.UIDefaults.getUIError(UIDefaults.java:689)
    at javax.swing.UIDefaults.getUI(UIDefaults.java:719)
    at javax.swing.UIManager.getUI(UIManager.java:784)
    at javax.swing.JPopupMenu.updateUI(JPopupMenu.java:204)
    at javax.swing.JPopupMenu.<init>(JPopupMenu.java:169)
    at javax.swing.JPopupMenu.<init>(JPopupMenu.java:154)
    at javax.swing.JMenu.ensurePopupMenuCreated(JMenu.java:521)
    at javax.swing.JMenu.add(JMenu.java:556)
    at hacks.MenuTest.main(MenuTest.java:23)
    UIDefaults.getUI() failed: no ComponentUI class for: javax.swing.JPopupMenu[,0,0
    ,0x0,invalid,alignmentX=null,alignmentY=null,border=,flags=0,maximumSize=,minimu
    mSize=,preferredSize=,desiredLocationX=0,desiredLocationY=0,label=,lightWeightPo
    pupEnabled=true,margin=,paintBorder=true]
    java.lang.Error
    at javax.swing.UIDefaults.getUIError(UIDefaults.java:689)
    at javax.swing.UIDefaults.getUI(UIDefaults.java:719)
    at javax.swing.UIManager.getUI(UIManager.java:784)
    at javax.swing.JPopupMenu.updateUI(JPopupMenu.java:204)
    at javax.swing.JPopupMenu.<init>(JPopupMenu.java:169)
    at javax.swing.JPopupMenu.<init>(JPopupMenu.java:154)
    at javax.swing.JMenu.ensurePopupMenuCreated(JMenu.java:521)
    at javax.swing.JMenu.add(JMenu.java:556)
    at hacks.MenuTest.main(MenuTest.java:30)
    I don't understand what the issue could be..
    Can anyone reproduce this error??

  • Drop shadow blur issue

    Hi, we have come across an issue using Illustrator drop shadows with a large blur. What seems to happen is that Illustrator expands the box size and after fading the shadow to nothing it seems to fade back to the colour. To try create a box with a colour fill, add a drop shadow with any colour other than black with about a 7mm offset and a blur of over 10mm

    I see the problem for one thing when yo give the feather a large setting it extends beyond the the shape that it is generated by so it is actually expanding beyond what a pears to be a clipping path that is totally invisible as well as extending to the opposite direction of the direction of the offset.
    You can draw a shape that can mask the edges showing and make a clipping mask.
    You can also make your own shadow which might prove to be a better option with a feathered copy of the objects shape and filling that with the color you want you can give it quite a feather if you desired.
    The reason that might be better is that you can use a spot color which does not seem to be supported in drop shadows but is supported in feathered shapes.
    This is puzzling as I swear I read somewhere this was fixed?
    This is what a drop shadow looks like when created with a feathered rectangle of course you have more control this way as you can resize the shadow to give it a more realistic feel as a shadow would be larger then the original shape.
    So the way they should fix this is to also have a setting for the clip as well as a setting for the size of the shadow or if the wish distance from object calculation.
    So the feather technique also gives you the option of adjusting the placement of the shadow in a manually tactile manner. You should probably group the two once you finished or make it a symbol as Mordy points t making these types of object symbols are useful
    and can come in handy especially if youy want to export to Flash at sometime in the future.
    Anyway I am going to add these ideas to my feature request for cast shadows and other enhamcements to the shadow effect.
    You can all do so as well.

  • Drop Shadows and Color Copiers

    If you have a color copier or color laser printer try this test:
    1. Create a page in InDesign with a pale CMYK background (I'm using 40% C, 30% M)
    2. Create a small white box on top of the background and rotate it 10 to 60°
    3. Add a drop shadow with default settings (multiply 100% K at 75% opacity)
    4. Export a PDF using ANY export settings you like
    5. Print the PDF to your color copier out of Acrobat, again using any setting you like
    What I get is a bounding box around my white square that is a slightly different color than the background tone. It is obviously the area that includes transparency because of the drop shadow, which is being rasterized either when the file is made into a PDF or when it is printed. This same PDF looks fine on screen in Acrobat and looks fine when rasterized into Photoshop: absolutely no difference in the color of the background visually or with the eye-dropper. This PDF also prints totally fine when I send it directly to my cheapo inkjet and when I drop it into my color managed RIP that runs our higher-end inkjets. I should add that there is no RIP in front of the 2 different color copiers I am testing. The same thing happens on a client's color copier.
    What appears to be happening is that the color copier renders raster data differently than vector data, which results in this bounding box being visible. I've tried printing directly out of InDesign and indeed if I select "Print as Bitmap" in the advanced tab, the problem goes away. However, I need to be able to send out PDFs that will print correctly on any kind of office printer. Obviously I could rasterize the whole thing in Photoshop, but I've got hundreds of flyers to prepare, and they need to be small enough to e-mail and look good when printed.
    There is no "Print as Bitmap" option when creating PDFs, and they would probably be too big anyway. How can I get the drop shadow effect to work correctly in this situation?
    Thanks in advance!
    -Todd Shirley

    Thanks for the link Bob!
    It ALMOST works. In the link a procedure is described for rasterizing the whole page by creating a custom Transparency Flattener Preset, which I would THINK would solve my problem. Unfortunately the only way to access Transparency Flattener Presets in the PDF export is to set Compatibility to Acrobat 4 (PDF 1.3), which creates a PDF that my color copier won't print at all! It just hangs in whatever that thing has for a RIP. I left one for about a half hour and it finally came out all crazy messed up.
    The goal here is to create a relatively small PDF that can be distributed to hundreds of offices and printed correctly on whatever kind of office machine they have. My Canon color copier is brand new and if it chokes on PDF 1.3 I can only imagine what older copiers will do.
    So the quest continues! Is there any way to fix the problem without rasterizing the whole page? Or is there a way to rasterize the whole page but make a PDF 1.4 or higher? Keep the suggestions coming!
    -Todd

  • Drop Shadow pdf issue

    Hi there
    I'm trying to export a High Quality print Photoshop pdf with 7.5pt Helvetica LT Std white text with a 0.1mm drop shadow. The problem is that when I export it the drop shadow comes out unevenly (some letters/words/lines are bolder than others). I have tried changing font to Gautami, and also reducing the shadow to 0.075mm but with no joy. I have tried it in Illustrator and InDesign as well but with the same result.
    Has anyone come across this before or got any ideas?
    Cheers
    Sean

    Just to make sure: The issue persists at larger zoom values?
    I am not sure but it might be an unfortunate combination of type/vector and pixels.
    If you could tolerate a sharp shadow one possible workaround might be to duplicate the Type Layer, make the lower one black and offset it manually.
    Another possibility would be to use
    Type > Convert to Shape
    and check if the shadow goes better with this in the pdf. Of course the text would not be searchable anymore …

  • How do I include a drop shadow effect when I import an Illustrator vector into Edge Animate?

    How do I include a drop shadow effect when I import an Illustrator vector into Edge Animate? It should be noted that I also have another effect (an extrude & bevel) applied which does copy over when I paste (or create an SVG and import) into Edge Animate. Any thoughts on why the drop shadow disappears but the extrude & bevel carries over?

    Which version of Illustrator are you using?
    In earlier versions of Illustrator it is not that easy to apply drop shadows with spot colours.
    Another reason why it's always important to tell which version of AI … well …

  • Drop Shadow caused by light source (Motion 3)?

    i am trying to create some drop shadows with objects in Motion, and i cannot seem to find a way to allow the 3D lights, to create a drop shadow for the object that is blocking the light. The object is also in a 3D group.
    I am aware that you can just enable the "Shadow" box in the properties tab when in a 2D project/group, but this is not available when in a 3D group, so...
    Is this not implemented yet?

    No, this is NOT available in Motion yet. Need to go over to After Effects for the Cast Shadow and Accept Shadow options.

  • Change distance and size of drop shadow does not allow me to use the arrow up/down, or any of the effects windows.

    Does anyone know why I'm not able to use the up/down arrow shown above. This has only happened recently.

    You have two different blending modes on your layer that are neutralizing each other.
    You probably have your text on a separate layer.
    In the the Effects PANEL (NOT the dialog box) you have the blending mode set to SCREEN.
    In the Effects DIALOG box you have drop shadow with the default MULTIPLY blending mode.
    See the setting in the lower left of the dialog box.
    Object is set to Screen 100% ( in the Effects PANEL)
    But the Drop Shadow is set to MULTIPLY in Effects DIALOG box
    These settings are canceling out each other.

  • Drop shadow troubles

    i am trying to create a drop shadow on text.  i select the text and then copy and then paste in back.  however, the copy shows up way above the text and not behind it.  what am i doing wrong?

    SoneMouanghot,
    What happens if you create the text as live Type, then Effect>Stylize>Drop Shadow (with suitable values)?

  • How to create drop shadow preset?

    I have now spent an entire day searching and trying to create a preset for fcpx. On most of the effects I use, i have the option to save as a preset. BUT with the drop shadow effect, I doesn't.
    On the instructions in the help section for editing a FCPX effect, it claims you need to either right click or control click the effect in the media browser, and then select "open a copy in motion". This works on any effect BUT Drop shadow! lol.
    So I then with my limited knowledge of Motion 5, tried to create a FCPX effect on my own. I created a new FCPX Effect, Then in the HUD I applied the drop shadow with the settings I needed, and saved it. Then in FCPX I applied it to the track, but nothing happened. I am lost, and need help. I ahve to apply a drop shadow with 50% opacity, and 30% for blur to over 600 clips in over a month. I can't do it manually and then adjust the parameters manually for each one. PLEASE HELP!
    Chris

    The Drop Shadow is actually coded with FXPlug, it is not a straigth Motion template.  Any effect or template that is coded can't be opened in Motion.
    When you create your own, you need to publish the parameters you need access to.
    I think what you need to look at is the Paste Attributes function.  Select a clip in your Timeline that you've applied the Drop Shadow to and have tweaked it.  Command-C to copy it.  Select all the other clips at once, in the Edit menu select "Paste Attributes", then specify only the Drop Shadow effect.  Poof, done.

Maybe you are looking for