Image with entrance effect

Using Captivate 5.5, I've inserted an image on the slide that is wider than the slide itself. The right edge of the image lines up with the right edge of the slide. I want to add an effect to the image so that when the slide appears, the image appears immediately. Then the image moves from left to right until the left edge of the image lines up with the left edge of the slide. None of the white slide background should be showing at any time.
I've tried various settings with the effects, but each time, some of the white slide background shows at the beginning and/or end of the effect, so that the image is not covering the whole slide.
Can anyone help me?

Hi Jay,
Just tried it out and cannot get your issue
I inserted an image, set it to No transition in the Properties panel (did you do that?), aligned it to the right of the stage and added the effect LeftToRight. Then I changed the motion path so that at the end the image was aligned with the left border of the stage, extended the effect till the end of the slide. This seemed to work as expected, I never did see the background when previewing in Browser or from this slide. I did not publish.
Lilybiri
PS sometimes I set the effect not to start when the image appears but 0,1sec later.

Similar Messages

  • Load images with some effects

    Hi, I wanted to load java images with some effects like we have in power point like blinds or appear in Java swing when user clicks on the image.
    I have these specific questions in mind:
    1.Is there a way to do this in Java?
    2.Also how will this behave when the image to load is huge like 25 Mega Pixel?
    3.If we are dealing with large images being switched, what mechanism should be used for incorporating images in the application?
    4. Can there be a provision of displaying an image over another one with the one on the top having some transparency?
    Thanks,
    Sandeep

    Kayaman wrote:
    835085 wrote:
    how can this be done? do you have any pointers. i have played with swing earlier but did not know about the effects thingy.Well I didn't mean that you'd have ready made powerpoint-like effects (unless someone has created a library for that kind of stuff). I mean Java is a programming language, Powerpoint is a crime against nature.
    You'd need to program those effects (or find a library that does).OK, i think i will have to try this out first.
    The point is that i wanted to confirm to go with java or choose python.
    I need to track user inputs and display really large images. Now the interaction is really on graphical side like have moving images in the application which are transparent. I know Java but havent played with images yet and was not sure whether it will be worth spending days on this and then switch to python.
    >
    well my scenario will be 2x2 matrix of screens. it will be a 25 MP screen. so wont this work now in this context?Sure, if you have the resolution.
    i was thinking in terms of response time. any inputs?And I was answering in terms of response time. The Fullscreen API. Of course you'll need to keep all the images in memory (or at least a certain range if you want to show them fast enough).
    4. Can there be a provision of displaying an image over another one with the one on the top having some transparency?Sure.any pointers?Well, Java does support transparency and alpha channel. But you'll need to go through the APIs to find ways to do those.
    Is there a reason why you want to do this in Java?I mentioned that I have worked on swing before but was not sure to do it in a totally new prog. language like python.

  • Image with a Effect flicker

    How I can create a Image with Effect flicker
    Thanks

    The nearest behaviour I can think of that you can achieve
    inside RH is with the Rock n Roll DHTML effect. You can try adding
    this and playing settings to see if this will give you what you
    want. If it doesn't I suspect the answer will be to use something
    outside of RH to produce the required effect and then import
    it.

  • Rotating Image with Fade Effect

    Ok looking to rotate an image with a fade effect; below is a rotating image code.
    (Wanting this effect to be transitional and smooth. Transparency? Opacity?)
    <script language="JavaScript">
    <!--
    function adArray() {
    for (i=0; i*2<adArray.arguments.length; i++) {
    this[i] = new Object();
    this[i].src = adArray.arguments[i*2];
    this[i].href = adArray.arguments[i*2+1];
    this.length = i;
    function getAdNum() {
    dat = new Date();
    dat = (dat.getTime()+"").charAt(8);
    if (dat.length == 1)
    ad_num = dat%ads.length;
    else
    ad_num = 0;
    return ad_num;
    var ads = new adArray(
    "img1.jpg","http://www.domain.com",
    "img2.jpg","http://www.domain.com",
    "img3.jpg","http://www.domain.com");
    var ad_num = getAdNum();
    document.write('<div align="center"><A HREF="'+ads[ad_num].href+'" target="_blank"><IMG SRC="'+ads[ad_num].src+'" '
    +'BORDER=0 name=js_ad></A></div>');
    link_num = document.links.length-1;
    function rotateSponsor() {
    if (document.images) {
    ad_num = (ad_num+1)%ads.length;
    document.js_ad.src = ads[ad_num].src;
    document.links[link_num].href = ads[ad_num].href;
    setTimeout("rotateSponsor()",4000);
    setTimeout("rotateSponsor()",4000);
    // -->
    </script>
    Any ideas?

    Here is the script I finally got working! It would have not came to me without your help guys!
    <script>
    var pictureWebPartName="Pictures"; // name of the picture library web part
    var showThumbnails = true; //otherwise show full sized images
    var randomImg = true; //set to true to show in random order
    var useCustomLinks = false; //true to use second column as URL for picture clicks
    var RotatingPicturesLoopTime = 5000; //2000 = 2 seconds
    var imgToImgTransition = 1.0; //2 = 2 seconds
    // don't change these
    var selectedImg = 0;
    var imgCache = [];
    var imgTag;
    function RotatingPictures()
    imgTag = document.getElementById("RotatingImage");
    //Find the picture web part and hide it
    var Imgs = [];
    var x = document.getElementsByTagName("TD"); // find all of the table cells
    var LinkList;
    var i=0;
    for (i=0;i<x.length;i++)
    if (x[i].title == pictureWebPartName)
    // tables in tables in tables... ah SharePoint!
    LinkList = x[i].parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;
    // hide the links list web part
    LinkList.style.display="none";
    break;
    if (!LinkList)
    document.all("RotatingImageMsg").innerHTML="Web Part '" + pictureWebPartName + "' not found!";
    //Copy all of the links from the web part to our array
    var links = LinkList.getElementsByTagName("TR") // find all of the rows
    var url;
    var len;
    for (i=0;i<links.length;i++)
    //if (links(i).id.match("row")!=null)
    if (links[i].childNodes[0].className=="ms-vb2")
    len=Imgs.length
    Imgs[len]=[]
    Imgs[len][0] = links[i].childNodes[0].childNodes[0].href;
    if (useCustomLinks)
    if (links[i].childNodes[1].childNodes.length>0)
    { Imgs[len][1] = links[i].childNodes[1].childNodes[0].href; }
    else
    { Imgs[len][1] = "" }
    if (Imgs.length==0)
    document.all("RotatingImageMsg").innerHTML="No images found in web part '" + pictureWebPartName + "'!";
    for (i = 0; i < Imgs.length; i++)
    imgCache[i] = new Image();
    imgCache[i].src = Imgs[i][0];
    if (useCustomLinks)
    imgCache[i].customlink=Imgs[i][1];
    RotatingPicturesLoop();
    // now show the pictures...
    function RotatingPicturesLoop()
    if (randomImg)
    selectedImg=Math.floor(Math.random()*imgCache.length);
    if (document.all){
    imgTag.style.filter="blendTrans(duration=" + imgToImgTransition + ")";
    imgTag.filters.blendTrans.Apply();
    url=imgCache[selectedImg].src
    if (useCustomLinks)
    { RotatingImageLnk.href=imgCache[selectedImg].customlink; }
    else
    { RotatingImageLnk.href = url; }
    if (showThumbnails)
    // convert URLs to point to the thumbnails...
    // from airshow%20pictures/helicopter.jpg
    // to airshow%20pictures/_t/helicopter_jpg.jpg
    url = revString(url);
    c = url.indexOf(".");
    url = url.substring(0,c) + "_" + url.substring(c+1,url.length);
    c = url.indexOf("/");
    url = url.substring(0,c) + "/t_" + url.substring(c,url.length);
    url = revString(url) + ".jpg";
    imgTag.src = url;
    if (document.all){
    imgTag.filters.blendTrans.Play();
    selectedImg += 1;
    if (selectedImg > (imgCache.length-1)) selectedImg=0;
    setTimeout(RotatingPicturesLoop, RotatingPicturesLoopTime);
    // utility function revString found here:
    // http://www.java2s.com/Code/JavaScript/Language-Basics/PlayingwithStrings.htm
    function revString(str) {
    var retStr = "";
    for (i=str.length - 1 ; i > - 1 ; i--){
    retStr += str.substr(i,1);
    return retStr;
    // add our function to the SharePoint OnLoad event
    _spBodyOnLoadFunctionNames.push("RotatingPictures");
    </script>
    <!-- add your own formatting here... -->
    <center>
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td id="VU" height="125" width="160" align="center" valign="middle">
    <a name="RotatingImageLnk" id="RotatingImageLnk" alt="click for larger picture">
    <img src="/_layouts/images/dot.gif" name="RotatingImage" id="RotatingImage" border=0>
    </a>
    <span name="RotatingImageMsg" id="RotatingImageMsg"></span>
    </td>
    </tr>
    </table>
    </center>
    Thanks again guys!

  • Help!  Ideas for displaying ~100-300 still images with After Effects / Premiere Pro

    Hi, I am a cadet at a US Air Force detachment and am responsible for making this semester's end of the year video.
    I have the Adobe creative cloud and am familiar with the basics of Photoshop, and Premiere Pro, and I am trying to also learn After Effects.  I have a large amount of picture and video, and am at a loss for how to quickly make all these pictures into an interesting slideshow.  Software such as Cyberlink Powerdirector had a "photo grid" which would allow me to create an automatic slideshow of images on a 3x3 grid, where each image flashed into place one at a time.  I am looking for automated processes or tutorials to feed my images into and have a modern effect of displaying the images.
    If anyone has any idea for a template or where to start on handling a large amount of still images in After Effects or Premiere Pro, I could definitely use a point in the right direction!
    Exactly what I want can be found at 5:27 of this video: https://www.facebook.com/photo.php?v=10150247563700519&set=vb.120583801339638&type=2&theat er

    read below
    -http://helpx.adobe.com/premiere-pro/kb/error---preludevideo-play-modules.html
    -http://forums.adobe.com/thread/1001579
    -Use BIOS http://forums.adobe.com/thread/1019004?tstart=0
    -link to why http://forums.adobe.com/message/4685328
    -http://www.anandtech.com/show/4839/mobile-gpu-faceoff-amd-dynamic-switchable-graphics-vs-n vidia-optimus-technology/2

  • Creating an image with a Cloud Effect

    Can someone please tell me how I can create an image with a
    cloud effect like the photo located at the link below:
    http://www.arizonamedicalclinic.com/
    Thanks in advance for all of your help.

    Nessa wrote:
    > Can someone please tell me how I can create an image
    with a cloud effect like the photo located at the link below:
    >
    >
    http://www.arizonamedicalclinic.com/
    >
    > Thanks in advance for all of your help.
    Draw a cloud shape. Fill it with white and add a black inner
    glow.
    Position the cloud shape over the photo. Press Shift and
    select both the
    cloud shape and the image. Choose Modify > Mask > Group
    as Mask.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    Design Aid Kits:
    http://www.webdevbiz.com/pwf/index.cfm

  • Image - with a WriteOn effect

    I'm trying to make a image draw on my canvas. I've got an image with tribal band styled lines that are really intricate and I'm trying to make them write on over the duration of my motion clip. I'd rather not copy the entire image with lines and use the write on behavior to make it work because it will take hours. Is there an easier way to do this. My source image is photoshop and the lines are one of the brushes I've got in photoshop.
    Any Ideas?

    I mean... you could, depending on the shape, animate some crazy shapes that you're using as a mask. But yeah... if it's intricate, the best way will be to make lines out of it...
    Maybe you could use the replicator with the sequence replicator in some fun way to do this, but you'd still have to trace the lines for that by hand.
    There isn't a quick and easy filter to drop on to make it do what you want.

  • Render high quality 15 minute clip of still images with transitions - After Effects CC 2014

    Hello, I am rendering a 15 minute composition comprised of a 3 high quality still images (5 mins for each image) with basic blur fades between each still at a res of 1440x900.
    Rendering this out as a Quicktime movie is taking forever and results in a HUGE file size, can someone please recommend an alternative that will not sacrifice video quality?
    Thanks!

    He can't give you any specific advice because you didn't give us any specific information. How you are delivering your video makes a HUGE difference in what render settings you would use. If you're planning to send it for use in an NLE like Premiere, the advice would be different from if you were wanting to upload it to YouTube. Thus, he linked you to a resource that could best help you based on the limited information you provided.
    Also, Todd comes on here in his free time. This is a user-to-user forum, not an official way to contact Adobe. We are grateful for any support we get here from official personnel.

  • Problem with keyframe effect - at start and end (crop and scale)

    I'm having this odd problem with keyframe effects.
    Setup:
    I have a gif image that I have on video 1 for say 2 minutes.
    I have my real video on video 2.  It is a person talking.
    First I start with my video full size on top of video 1.
    Though the motion and cropping keyframe management I slowly reduce the scale and crop my video image so that it is reduced to the lower left bottom of the screen, on top of the gif, which is now revealed.
    My problem is at the start and end of the transition from full video to small box on lower left on top of my gif I often get 1-2 frames where the video goes blank and/or I get a bunch of random red bars on black background appearing on the video - Or I get the gif from video 1 without the video 2 at all (it disappears).
    I've tried moving my start of end of the transition to skip the bad spots - but these new transition starts or ends not get their own bad spots in the same way.  Its only a couple of frames but it's really unacceptable for the finished video.
    Note, when I say transition here I don't mean real transition events, but rather the start of effects that are managed with keyframes.  My move from start to end of the effect runs for about 4-6 seconds.
    Any ideas?

    Bill,
    Here is more detail and screen captures.
    Concept:
    I have 3 minutes of video.  It contains a person making a speech.  During parts of the speech I want to reveal a graphic image that will be discussed.  The speech will begin with the speaker full screen.  Half way in, the speaker will shrink down to 45% in the lower left corner of the screen.  While the animation occurs (the shrink, move and cropping) it will reveal the graphic below.  The graphic will take up the full screen with the speaker at 45%.
    Technique:
    I put the video in Video 2 and the graphic, a GIF image in Video 1.  The scene begins with the speaker talking at full screen.  After a minute, I animate the move of the speaker using Motion: Scale and Position and Effect: Crop changing Top, Bottom, Left and Right sides.  The animation occurs over approximately 8 seconds.
    I am manually adding keyframes at the start and end of the animation.  I set the ending state of the video image in the end keyframes.  The interpolation between these start and end keyframes should be managing the animation.
    Problem:
    At the beginning and end of the animation – usually 1-3 frames from the start and 1-3 frames from the end, where the change has barely begun or almost ended, I get these problems.  On some frames, the video (in Video 2) completely disappears only showing the Video 1 GIF image below.  On other frames, the video image turns black with horizontal red bands half way across.
    Troublshooting:
    I’ve tried deleting all start and end keyframes and moving the start and end earlier or later to see if I can fix this, but the problem continues to show up in these new locations.
    I have added a few screen shots.
    1:32:15 is the start of the animation change and 1:40:22 is the end of increasing from the mini video speaker to full size (on top of the GIF).
    At 1:40:16 the video image completely disappears only showing the GIF below.
    At 1:40:17 its back and slowly increases in size through the interpolation until it is full size at 1:40:22.
    Let me know if you need anything else.
    Thanks!
    Evan

  • Using still images with Final Cut (and the apple suite in general)

    I have had a re-occuring and long term problem that has caused me many lost hours of head scratching and work arounds, and as of yet I have not been able to come up with a good solution.
    Its to do with integrating still images with the Final Cut suite.
    If I receive a high quality image from a client to use in their video and I then try importing it into Final Cut and animating it, it always ends up looking like a pile of ahem. Often I will get "swimming" lines appear across fine detail on the image, and parts of it will flicker as it moves across the screen. For instance, if I have a picture of some blinds or other fine detail (especially horizontal and vertical lines), when I add a grow and throw movement to it the detail will become very noisy - buzzing and flickering like mad.
    I have found I can counter this by resizing the image in photoshop to a resolution closer to SD video (700w or 500h) - but I always end up losing detail, and the flickering and noise is only reduced, not eliminated. Other things that have helped are blur effects applied at a very low level, like 0.5 blur, so its not noticeable visually, but Final Cut seems to treat it differently and quieten the noise and flicker down.
    However, all of these workarounds are ultimately still giving a reduced quality product.
    Also, this problem is not necessarily constrained to Final Cut, I am currently fighting DVD Studio Pro because it is murdering the text quality in a stills slideshow I am creating - and in this situation there is no animation being applied. No matter what file type (psd, jpeg, tiff, png...) or size I output the text and images from Photoshop in, the moment DVD studio pro gets hold of it, it turns to cripe.
    For a while I was putting it down to the fact that I usually edit in SD (PAL) formats, and there just wasn't the resolution available to reproduce fine detail. However, I do often see other people achieving pin-sharp fine detail on still images and text in SD formats (the Apple templates are a good example)
    So, my question to you, oh great and high boffins, if you are dealing with still images and text, how do you do it? How do you work around any noise problems you have, and how do you produce those pin-sharp images (both moving and still) I see in other professional productions?
    Quad G5   Mac OS X (10.4.8)  

    still images with too high a resolution will always cause problems. this is due to the detail of the image being finer than the scanline of the tv can display ... obviously this will caise the image to flicker as these details alternately appear and disappear as and when the scanline can display them. as you have discovered, the answer is to apply a very small blur, the effect being that the detail is spread by the blur such that the scanline can dislay it correctly.
    text issues are often rooted in the same problem ... unless the text is placed very carefully (whole even number on the y axis) then the quality may be impaired due to the resulting interlacing/scanline issues

  • Importing images with Lightroom 2  & Camera RAW 4.5

    The following query has been raised with Adobe Technical Support (5 days ago and I am still waiting for a response/reply. They claim to reply within 24 hours but they have not on this occasion......they seem to be ignoring me
    Perhaps a fellow user can help to identify or resolve the problem.
    Operating System:
    Windows XP Professional (Service Pack 3)
    Software:
    Adobe Design Premium CS3 (10.0.1); Photoshop Lightroom 1.4 (which was working fine) and Lightroom 2 (on trial and not working particularly well)
    I am using a trial download of Photoshop Lightroom 2 (with Camera RAW 4.5 in Photoshop CS3).
    I am having a few problems with editing Lightroom 2 images in Photoshop CS3 but I understand that Adobe is currently investigating a solution to this problem.
    I have also noticed another potential problem since I have started to import images from a computer drive to Lightroom 2 and converting the Manufacturers RAW files to DNG (with the option to leave the files at their current location/drive).
    My RAW and JPEG files open ok in Camera RAW (v 4.5) for basic editing and subsequently to Photoshop for more detailed work. The problem is that all my images are now opening as Smart Objects by default in Photoshop CS3, as opposed to opening as a Background layer". (I have not knowingly opted to use the Open as Smart Object option.
    I am not entirely sure how this came about but I have also lost the capacity to edit images with empty Levels adjustment layers or percentage (%) grey fill option).
    I am able to highlight the respective layer and create the empty Levels adjustment layer, change the blend mode to either Multiply or Screen, fill the Layer Mask with Black (Alt & backspace), change the opacity level as desired, select the brush tool and change the foreground colour to white to enable the applicable Dodge or Burn processes.
    Unfortunately, it does not function irrespective of the preferred opacity level. The Dodge or Burn feature is static with no effect on the image.
    I cannot recall any settings to open all files as Smart Objects in Photoshop CS3 but would welcome some help in identifying such a setting if it exists. Alternatively, I would welcome any other suggested methods of correcting the above difficulties.
    The same difficulties are evident when I try to use the Dodge or Burn features via the Edit and Fill option with a percentage of Grey and the Overlay Blend Mode.
    The "Common Denominator" of the above difficulties appear to be Lightroom 2 and Camera RAW 4.5 (individually and or collectively) and now I am stuck between a rock and a hard place.
    Are any other users experiencing similar issues or have any suggestions about how I might correct or resolve these problems? ......
    I am not afraid of hearing or accepting that the "Dummy Factor" has played some part or how I may release myself from the said "Dummy Factor".....any help is welcome help.
    Adobe Technical Support seems to be ignoring me......I wonder why?
    Regards
    Bob Wallace

    Essentially you are wrapping the raw image data into a special type of layer, a "smart object". You can then revisit and fine tune the Camera Raw conversion as often as you want and take advantage of working directly on the raw data in its pre-Photoshop purity. You can also apply to this smart object layer a number of Photoshop adjustments and filters - and again redo and fine tune them as often as you wish.
    You'll find them explained in a number of recent books. I know Scott Kelby is keen on them, there are examples on Russell Brown's site, and my own book last year on B&W strongly advocated their use.
    Have a play.
    John

  • Working with after effects in photoshop?

    I want to edit some contents of the after effects of videos like clearning up skin or removing objects in photoshop from after effects  - how would this get done? both ar cs5 and both ar 64bit

    If you want to work on the frames of a movie in Photoshop, you have a few options. One is to render and export a composition from After Effects as an image sequence, and work on the frames as individual images in Photoshop. Another approach is tor ender and export the composition as a QuickTime movie and then import tha into Photoshop; this requires Photoshop Extended.
    These options are covered in a bit more detail in "Working with After Effects and Photoshop".

  • Still image with motion has flicker pulsating problem

    I use FCP 5.0.4
    I have read the many threads about this subject and am still not able to succeed in getting rid of the flicker/pulsating in a still image with motion.
    I would say about 25% of the stills with motion have the jitters; all the rest look great.
    The first thing I tried was
    Effects:Video Filters:Video:Field Shift:none
    as well as
    Effects:Video Filters:Video:Flicker Filter min, med, and max.
    Maybe 5% were corrected with this, but the other 20% still had the jitters even after using a combination of the above or by themselves.
    I just burned a test DVD using a variety of the persistently jittery stills from my current project and although the jitters change a bit, they were still there so all of these failed:
    1. Effects:Video Filters:Video:De-interlace Upper (odd)
    2. Effects:Video Filters:Video:De-interlace Flicker Filter minimal
    3. Effects:Video Filters:Video:De-interlace Flicker Filter max
    4. Effects:Video Filters:Color Correction:Broadcast Safe conservative 115
    5. Effects:Video Filters:Video:Flicker Filter max
    6. All the tricks together which means
    Effects:Video Filters:Video:De-interlace set at Upper (odd)
    Effects:Video Filters:Video:Flicker Filter max
    Effects:Video Filters:Video:Shift Fields: none
    Effects:Video Filters:Color Correction:Broadcast Safe conservative 115
    I know this issue has been kicked around a lot and i know some folks are not happy that it has to be kicked around at all. But I am doing something wrong because my DVDs look very un-PRO. Would anyone like to talk me through this nightmare preferably with as many details as possible since I am obviously missing something critical.
    Thanks in advance.

    There is no 'secret formula'. It just takes thinking through the issues.
    1. Set the image size for each image that makes sense within the context of your project. Going significantly larger than the displayed area of that image (including movement) is just asking FCP to do additional work to resize the image. FCP is less sophisticated at resizing images than Photoshop. Use Photoshop and your planning of the movie to get the images to the appropriate size.
    2. Wasted effort and totally irrelevant- you could set it to 7200 dpi if it makes you feel better.
    3. Good idea - be sure to knock down areas of pure or very bright white. These are the elements that will give you the most trouble.
    4. Don't do this unless you want to throw away HALF the picture information. Deinterlace deletes half the picture and then photoshop recreates it through interpolation of the remaining half of the picture. Why do this?
    5. Make your determination based on what works. If you have properly exposed and sized the material, the need to blur is greatly reduced. ONLY do it on the images that need it. Why degrade every image if you do not need to do so?
    6. See number 5
    7. Lay out your time line early, view the work on an external broadcast monitor and only mess about with the images that require it.
    In the psycho business they have term for much of the referenced post - it's called superstitious behavior. Basically it comes down to "It worked before so we recommend it to everyone without regard to their situation" ... here's another example:
    Many years ago in my architecture practice, we had one of the early 512k macs (upgraded from the 128k!) I needed to show one of the interns how to create a project budget spread sheet in Excel. Inadvertently I clicked on Word, said "oops", closed it and opened Excel and we went to work.
    A week later I was walking by the computer and overheard the same intern explaining how to work with Excel to another architect. "First you open Word, close it, THEN you open Excel", she explained. When asked by her 'trainee', why do you have to open Word first, wouldn't it just be easier to simply open Excel? Her answer was just perfect, "Well, it works every time, what's wrong with that?" so it goes ...
    good luck with your project.

  • How to synchronize a graphic on one layer with an effect on another

    Hi.  I'd like to use the bulge effect on my main layer to create distortions in the underlying graphic.  I'd also like to synchronize this with the image of a magnifying glass or other lens so that when I mover the lens around, the main image distorts / bulges beneath it.  Not sure if I should place the magnifying glass on its own layer (or the same layer as the main image).  Also not sure how to go about parenting an effect (like bulge) to an object / image (like a magnifying glass).
    Any help would be appreciated.
    Thanks

    Thanks for providing the link.
    As to the Search function, I usually do try to search first because I understand these forums are pretty much run by volunteers who are giving freely of their time and expertise.  That said, I rarely find what I need.  Probably has to do with how the info is indexed, plus my overall lack of familiarity with After Effects at this point.  For instance, I just tried putting in "linking a layer to an effect on another layer" or something like that.  That pulled up a list of 20 or so items.  There were a couple of links to Expressions, and that probably would have tipped me off to the right answer. 
    Anyway, I appreciate the link you provided, and I'll try to work on my searches.

  • Printing Images with Transparent Background

    Sorry if this question has already been asked, but I couldn't find anything similar to it in a search through the archives.
    I have a couple of images with transparent backgrounds in a document, much like the shells and the blue flowers in the "Classic Brochure" template in Pages 2.0.1. These images show up perfect on the screen, and when printed as .pdf files, but when I print to either an hp color laserjet 4600 or an hp laserjet 1320, the images show up with a clear box around them; the colors under the box (where it should be transparent) are faded and slightly blurred. This happens both with my document, and the unaltered "Classic Brochure" template. I've tried moving various objects backwards and forwards, but it doen't seem to have any effect. It even happens with one of the text boxes I have in the document.
    Another odd thing is that the printed "box" isn't the same size as the box that appears when you click on the object in the document. It's a bit bigger. I've seen other posts about problems with hp printers, but I'm not sure it's related. Any insight would be appreciated.
    MAF
    iMac Intel Core Duo   Mac OS X (10.4.7)  

    http://indesignsecrets.com/eliminating-ydb-yucky-discolored-box-syndrome.php
    Bob

Maybe you are looking for

  • How do I create a single PDF file with multiple pages?

    Hi, I occasionally need merge several jpg images into a single pdf file with multiple pages (one Jpg per page). I have tried doing this on Preview, and by selecting all the pages I want to include in my document and trying to save to Pdf through the

  • I tunes 7.0

    Okay.. It Appears really cool, but i'm having some trouble with the music store. Everytime I click to go try and purchase some TV shows, a message appears in the center of the screen (normally where like, "Top TV Shows" would be) and says that "Album

  • Why FM DD_GET_NAMETAB?

    Hi All, I am using a SAP fm to update something. For one scenario it is working. But for another scenario it is not working. I debugged the FM and came to know that it is due to FM DD_GET_NAMETAB. CAn somebody tell what could be possible reason for i

  • Error when configuring Portal Server 7.1 Update 1 on Solaris 10 x86 VM

    I have installed Portal Server 7.1 with most of the default options/settings but I was unable to get the server up. Going through /var/opt/SUNWportal/logs/config/portal.fabric.0.0.log, I found some SEVERE entries: [#|2008-03-04T18:10:21.184-0500|SEVE

  • Browser freezes

    My browser freezes. I have An HP computer. I have Windows7--- 64 bites. I was using IE8, so I upgraded to IE9. It also freezes. So I installed Firefox, same thing. I have a NetWork,and on that Computer the Browser does not freeze. I think this would