Jump to content
Search Community

image slideshow with buttons within the MC

chefkeifer test
Moderator Tag

Recommended Posts

I am trying to make a little ad banner with multiple ads that have buttons within each one that take them other sites.

 

since my MC are on different layers only the one MC works. its the one on the highest level. how do i make them all work..i have tried the autoAlpha, which made it unclickabe but i still the layeriing issue is what the problem is. any suggestions would be great.

 

here is my code:

import com.greensock.*; 
import com.greensock.plugins.*;
import com.greensock.easing.*;
//*****====================================================*****
image1.alpha = 0;
image2.alpha = 0;
image3.alpha = 0;
image6.alpha = 0;
//-----------------------------------------------
var picScroll:TimelineMax = new TimelineMax({repeat:-1, repeatDelay:3});
 picScroll.append(TweenMax.to(image6, 4, {alpha:1}));
 picScroll.append(TweenMax.to(image6, 4, {alpha:0}));
 picScroll.append(TweenMax.to(image6, 4, {alpha:0}));
 picScroll.append(TweenMax.to(image3, 4, {alpha:1}));
 picScroll.append(TweenMax.to(image3, 8, {y:"-206"}));
 picScroll.append(TweenMax.to(image3, 4, {alpha:0}));
 picScroll.append(TweenMax.to(image2, 4, {alpha:1}));
 picScroll.append(TweenMax.to(image2, 4, {alpha:0}));
 picScroll.append(TweenMax.to(image1, 4, {alpha:1}));
 picScroll.append(TweenMax.to(image1, 4, {alpha:0}));

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...