Jump to content
Search Community

TweenMax Green Pulse Effect script

RevolverC test
Moderator Tag

Recommended Posts

Hello, 

 

I'm by no means a professional at this type of script, I'm trying to teach myself Tweening to better my live-stream. That being said, I wanted to add a green pulse effect to one of my notifications when they appear, however I've tried and read everything and I can't seem to either:

 

A ) Get the correct format of the code?

B )  I'm not sure where I should write or put the code. 

 

If anyone could be of some help I would really appreciate it. I've been reading these articles all day and I can't seem to come up with the answer.

 

Thank you in advance :)

 

- RevolverC

Link to comment
Share on other sites

Hi and welcome to the GreenSock forums,

 

Not really sure where the trouble-spot is for you.

I created a very basic file that you should be able to open and export from Flash CS6 (of higher).

 

It has 3 movie clips that pulse. The code is all very similar to what can be found on our TweenMax page: http://greensock.com/tweenmax-as or in the Plugin Explorer. 

import com.greensock.*;


//scale
TweenMax.to(mc1, 1, {scaleX:1.4, scaleY:1.4, repeat:-1, yoyo:true});
//tint
TweenMax.to(mc2, 1, {scaleX:1.4, scaleY:1.4, tint:0x91e600, repeat:-1, yoyo:true});
//glowFilter
TweenMax.to(mc3, 1, {scaleX:1.4, scaleY:1.4, glowFilter:{color:0x91e600, alpha:1, blurX:50, blurY:50}, repeat:-1, yoyo:true});

Hopefully this file will work as a starting point so that you can start adding in your own code.

basics_CS6.zip

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