How to repeat fade in fade out images

Hi,
Sorry for this stupid question but I am new to Flash and I really cannot figure out how to do the following:
I have 2 images that need to fade in and fade out so after 5 seconds image1 slowly begins to fade out while image2 slowly begins to fade in.
My first image does not fade in because on the start of the flash movie I want to directly see the first image.
But when image2 is done (so the whole movie is almost done) and it's start fading out.... I get to see the background (just a black empty background) while I actually want to begin fading in image1 (so looping the 2 image constantly).
So how can I immediately see an image on the start of the movie and still getting a fading in effect of the first image when the movie is almost on its end (so during the fading out of the last image)?
Can this be done graphically or do I need to write code for this?
Thanks in advance!

For a basic, timeline approach to a 2-image fade in/out loop, let's say you have the following layers:
actions
photo1
photo2
photo1: your image appears right away on frame 1, with no fading.
photo1: on frames 30-45, fade the image OUT from alpha 100% to alpha 0%.
photo2: on frame 30, show the other image (no fading). This will appear to fade IN as photo1 fades OUT. Notice that photo2 doesnt' ever fade in or out - only photo1 does.
photo1: on frames 75-90, fade the image IN from alpha 0% to alpha 100%.
actions: on frame 90, enter gotoAndPlay(1);  This will loop to the first frame and start the animation over again.
Give that a shot, and watch the animation - tweak it as you need to.

Similar Messages

  • Fade Out Image

    I'm using thumbnails to display buttons for my portfolio in
    flash, and I have the code to fade in the bigger images:
    But how do I fade Out every time a new button is clicked on?

    pziecina wrote:
    Hi
    Try this one - http://www.linein.org/blog/2008/01/10/roate-image-using-jquery-with-plugin/.
    PZ
    www.pziecina.com
    That'll do for me.
    Ta very much.
    Osgood.

  • Jquery fade in fade out image tutorial?

    Anyone know of a good resource which explains how to put together a simple jquery fade in fade out images effect where the images appear in a single container on the page being sourced from one folder on the server. I just want to loop through each image.
    Ta
    Osgood

    pziecina wrote:
    Hi
    Try this one - http://www.linein.org/blog/2008/01/10/roate-image-using-jquery-with-plugin/.
    PZ
    www.pziecina.com
    That'll do for me.
    Ta very much.
    Osgood.

  • How do I fade out audio in Premiere Elements 13?

    HOW DO I FADE OUT AUDIO IN PREMIERE ELEMENTS 13?

    ATR
    Thanks for answering,
    im moving slowely forward in speeding up making presentations by using the new discovered smart tricks or functions.
    So you understand my level of expertise:
    This step by step production methode im using now give's me controle without the (full) knowledge of all the (smart)functions in this program.and slowely learning the way arround.
    starting a project:  a mix of photo's and avi's, starting with manual time line filling with the selected files then the timesaving "Standard crosover on all selected".
    second: placing a header with the titel at the front and a ending a the end. (cut al the wrong or bad pieces and extend some photo viewingtime if needed.)
    And then adding subtitels/tekst and use some other crosovers to highlight the change of subject or stills to movie.
    And at last: placing the background music on "soundtrack": after some fiddeling around ive choose to cut the musictrack between the avi's instead of let the music play all the time and adjust the volume down to zero when a avi is playing.
    this have two advantages:
    1)  the songs can be streched by  by cut and jumping to the end of the avi soundtrack. (no loss of music through fading out and still let it play so need less musicsongs.)
    2) And the rightclick fade function with the standaard fadingtime => "fade out" and "fade in" is easly to use because of the end track avi and begin track music timeline. (And if needed lowering the fading slope/ extend the fading time by moving the "points" on the audio line)
    But; its a lot of work and after the first run through the presentation(or watching on TV) and there is a adjustment needed (fadingtime, volume-changes) you have to adjust every bit of the soundtrack. (keeping the volume "feeling" the same is the  difficult part.)
    I will read about the Smart Mix function and test  it on a other project. see of its fits my kind of using and expertise. (every automatic (smart) function needs understanding of its purpes and limitations and there are a lot of them in premiere
    What is in your opinion the most effective way of adjusting volume of audio parts across the hole project so its merged in to one audio/soundlevel?
    (and offcourse in the hole way of building the presentation.)

  • How do i fade out a video clip?

    how do i fade out a video clip?

    ChiDonDada
    What version of Premiere Elements are you using and on what computer operating system is it running?
    In the absence of that information, I will generalize, tending toward Premiere Elements 11....
    a. Right click the Expert workspace Timeline video, select Fade from the pop up menu and then the wanted Fade Audio or Video command.
    b. In version 11, you could click on Applied Effects/Applied Effects Palette/Opacity Panel and the shortcut Fades there.
    c. You could keyframe the Opacity property in the Applied Effects Palette/Opacity or via the video track content rubberband at the Timeline Level.
    Please supply more information for fading in out your video and audio track contents.
    Thanks.
    ATR
    Add On...If you have Premiere Elements 11, you may be interested in the information on these Fades found in one of my blog posts
    http://www.atr935.blogspot.com/2013/06/pe11-timeline-fade-out-shortcuts-and.html

  • In Edge Animate, how do I fade an image in on mouseover?

    In Edge Animate, how do I fade an image in on mouseover?
    Thanks!

    You can either make a symbol and use a transition in Animate and use play() and playReverse() on mouseenter and mouseleave or you could use  animate() on the element for our mouse events.
    fadeout
    sym.$("elementName").animate({"opacity":0.00},3000);
    fadein
    sym.$("elementName").animate({"opacity":1.00},3000);

  • Image zooms in and bounces. How do I fade out?

    Getting my feet wet and trying a routine event. Have an image
    zooming in and bouncing. That works. What I want to do is fade the
    image out after it has stopped bouncing. How do I fade it out? Here
    is what I have:

    I came up with the below bit of code. But now the image fades
    and then re-appears

  • Fade Out Image Actionscript

    I am using the fadeIn actionscript for my portfolio, but how
    do I make it so that when I click on another image, the previous
    one fades out?
    My fade code:
    quote:
    var reset:Boolean = false;
    function fadeIn(clip) {
    dif = 100 - clip._alpha;
    if(Math.abs(dif)>1 && reset == true) {
    clip._alpha += dif*.3; // this .3 controls the speed of the
    fade
    } else {
    clip._alpha = 100;
    reset = false;
    }Q]
    My button code:
    quote:
    on(release) {
    reset=true;
    this.holder.loadMovie("file:///D|/folio/work/graphics/5b.jpg",0);
    }Q]
    Help please.

    >> Is there any way to make a timed tween from image
    >> A to image B using actionscript? Ex. Making image
    >> A fade out and image B to fade in, all of this over
    5
    >> seconds. Thanks.
    Sure thing. If the idea is to make it look like A is
    dissolving into B,
    I would leave B at full opacity the whole time. Just reduce
    A's opacity.
    If you fade one out and fade one in at the same time, there's
    this "dead
    spot" when both are at half opacity, and the whole image
    seems to dip out
    momentarily.
    You could use the Tween class for this. Look up "Tween
    class" in the
    documentation and you'll find a section on "About the Tween
    class" as well
    as the Tween class entry itself, in the Components Language
    Reference. Use
    _alpha as the property to tween.
    > why not just make image A and B animate for 5 seconds
    > in iys own timeline. That way it wount interfeer with
    anything
    > else.
    There are definitely times to animate by hand (think complex
    character
    animation), but there are also times to animate via
    ActionScript. If you
    want something to animate for 5 seconds in a timeline, you
    have to take into
    consideration what framerate you're running and do the math.
    If you need
    five seconds at 24fps, you need 120 frames for that. What if
    you decide to
    change your mind? What if you need 10 seconds? Now you need
    240. What if
    you change the movie's over all framerate? With ActionScript
    and the Tween
    class, you only need one frame.
    > im saying that as an alternative to using
    actionScript...
    > but if you DO find the code to do it.. please share it
    with
    > me... =) the more code one has the better..
    Code can actually be harmful if you're unfamiliar with it.
    ;) More
    important than finding code is making sure you have a
    programmer's mindset.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Simple question - How do I fade out a project?

    There's got to be an easy answer to this. I have created a project in Logic 9 and would like to fade it out at the end. This is really easy in GarageBand (Track > Fade Out) but I can't see how to do it in Logic. Any tips?

    Press A on your computer keyboard to show the automation.
    You can make changes in volume in a similar way to the way that you do it in Garageband, so try it with different tracks first. You can fade the whole thing out by automating the main output channel, but it needs to be in the Arrange window for you to be able to do that, yeah ?
    If you open the mixer you can select the main out and choose an automation mode from the button on the channel strip - that automatically put it into the Arrange window, there are a few other ways of doing that that are worth knowing.

  • Animated gifs: How to transition (fade) 1 image over another

    Fireworks noob, trying to make an animated gif in CS4, reading/experimenting for hours, searching FW help documentation, Youtube tutes, Google - can't find how to pull off this basic fade.
    6 unique but same sz. jpgs in my .png (default FW worksheet doc), each a different "state" in the states palette. Got the basic timing down, all 6 pop up one after another, but I want transitions - #1 fades into #2, 2 into 3 etc. - possibly 3-4 step fade.
    How?
    Where are the other transitions/effects hidden?
    Doesn't FW have some kind of animation timeline feature where you can click through frame by frame?
    Ready to go back to Gifbuilder...
    TIA!

    Gif animations are for poster-like images. They don't work successfully with JPEGs because the file size ends up enormously large. The best program to use for whast you want to do is Flash. That said, Fireworks has an animation wizard that will fade images for you. Select an image and choose Modify > Symbol > Convert to Symbol. A dialog box will pop up enabling you to choose which type of symbol you wish to create. Choose Animation. From there, just follow the wizard. To fade one image over the other, you'll need to convert the images to symbols and animate them on different states  (frames). Symbol 1 on state 1. Symbol 2 on state 10. Symbol 3 on state 20, for example.

  • How do I fade out a soundtrack to the entire presentation?

    Hey - my presentation has a track to accompany it which is longer than the visual so I would like to fade it out at the end. Any ideas how I can do this?? Thanks so much!

    Keynote is unable to do this. Use video or sound editing software to fade out and cut the sound track.
    iMovie and audacity are examples of software you can use, or Google for others.

  • How Do I Fade Out In The Middle Of A Song?

    I cant find out how to do it on certain parts in the middle of a song I am mixing. Can anyone help?

    You may want to head over to http://labs.adobe.com/ and download the public beta release of Soundbooth CS4. It offers multitrack, volume keyframing, and more tools that are better suited for mixing music than the tools offered in Soundbooth CS3.
    Durin

  • How can I fade an image in CS5?

    I have to do some sample note pads for a class and our professor wants us to have a notepad where the image for our notepad is in the center of the pad and that it is faded enough so that people can see the image but be able to write notes on the pad. He said we have to do this in illustrator and that we may not use photoshop for this one.
    Here is a sample I found-
    http://www.shutterstock.com/pic-63562894/stock-photo-unique-note-pad-design-featuring-a-be autiful-antiqued-sunflower-faded-in-the-background.html
    Can you please direct me on what to do?

    You can also use the Edit Color>Saturate with a negative number to do something like this.

  • Can you fade in and fade out the same layer in the same page state?

    I am simulating a lot of touch interactions, and have a hand object that moves over the simllated screen. I want to add small "taps" under the hands to show touch; I can see how its easy to fade IN an object (say a small circle) that represents the touch; but how do I fade OUT that same object?
    Any help appreciated!
    Rob

    Hey Rob,
    I think you can achieve the effect you're looking for by using 'on click' interactions in conjunction with action sequences.
    I just made a simple example, here are the steps:
    1) Select the component you'd like to react on 'tap'
    2) In the Interactions panel, click 'Add Interaction', and select 'play action sequence'
    3) The timelines panel should now be given focus, and display the new 'on click' action sequence
    4) Select the "circle" you'd like to make the fade in followed by fade out effect.  If their opacity is set to 0 at this point, use the layers panel to select them.
    5) With the circle selected, in the timelines panel click 'add action', located at the bottom.
    6) Select 'fade' from the options available.
    7) In the properties panel, define the fade properties (for fade in, obviously set 'from' to be 0, and 'to' to be 100)
    8) Repeat steps 5 through 7, but choose from=100 and to=0
    9) Arrange the fade in, and fade out events on the timeline to get the timing choreography right.
    10) If you haven't done so already, set the opacity of your circles to be 0.
    Does this work for you?
    Is this what you were looking for?
    Let me know if you need clarification on any of the steps.
    Thanks for posting, great question!
    Tara

  • Fade out a video clip

    How do I fade out the last image on a video clip?

    the way I do it, or what I think you're trying to do, is go to the last frame you want to fade out, in your case the last frame, go to edit and select 'create still image' or something to that effect, and in the raw footage bank a 5second still image should apear of that frame. then click and drag it, go to the transition section and select the type of fade out you wish to use. Hope that helped.

Maybe you are looking for

  • Cannot delete email from POP account

    I have a POP mail account. Several emails keep coming in my inbox over and over. I have deleted them on the POP server. I have deleted them from my inbox & trash. I have rebuild my mail. I have unchecked store deleted messages on the server, saved, r

  • Regarding Creation of Custom IDOC

    Hi, This is Abdullah Shaik. I want to create an IDOC from the existing IDOC. Some times I need to add some segments to the existing IDOC. Can anybody plz let me know the process how to create the Customized IDOC from the Standard IDOC? Thanks & Regar

  • IPhoto library won't open

    My iPhoto library on my new Macbook Pro suddenly won't open.  When I open up iPhoto, it now takes me to a screen that says "which photo library do you want iPhoto to use".  There are no options.  I then click on "other library", and I can see my iPho

  • Does an Infinity Cabinet need a further upgrade to...

    We upgraded to Infinity (Option 1) as soon as our cabinet was upgraded late last year. We get a rock solid 37.44 Mb Down and around 1.7 Mb Up which I'm pleased with considering with ADSL, we were getting around 3Mb Down due to the distance to our exc

  • J2SE 1.4 assertion facility

    I'm trying to test drive the new assertion facility in J2SE 1.4 but can't get even a simple example to work: public class Foo      public void m1( int value )           assert 0 <= value;           System.out.println( "OK" );      public static void