Questions tagged [tween]

Animation technique of frame interpolation between keyframes.

A tween could be understood as a synonym of animation. Given two keyframes with a number of properties a tween gives intermediate values per keyframe between the two keyframes. Usually this task is achieved by using specific libraries.

http://en.wikipedia.org/wiki/Inbetweening

624 questions
0
votes
2 answers

group rollover effects with actionscript3

I've got the following issue with a actionscript3 project. I have a group of buttons setup via a class sitting in a holder sprite. When I rollover one of these buttons I loop through all the buttons in the holder and run tweenlite to tween the alpha…
Josh
  • 6,256
  • 2
  • 37
  • 56
0
votes
1 answer

Flash AS3: TweenMax stopped working after enlarging main movieclip and adding new elements

I have a serious issue owing to a 6 month gap between creating the problem and recognizing the problem. Back at the beginning of the year, I was asked to add some graphics and change some text in a flash only website. The site was quite complex…
mrmacross
  • 15
  • 5
0
votes
1 answer

Tweener fade with alpha

I'm having troubles with getting my textfield to fade from alpha 0 to alpha 1 with Tweener. Everything else works fine, so I suspect it has something to do with applying my textformats on the textfield? This is my code private function…
Poppe76
0
votes
5 answers

Tween animation not working for Android

I'm trying to do something very basic. I'm just trying to run an simple tween animation from a xml resource file for an Android application when a button is clicked. The animation will not start when I run the app. I'm going nuts trying to figure…
rocklandcitizen
  • 979
  • 4
  • 17
  • 27
0
votes
2 answers

Tweening effect on the child of a movieclip in Flash

i've got a movieclip with several movieclips inside. If i create a "tweening" effect on the big movieclip, it works. But if i double click on this big movieclip (that contains the others) and try to move one of these movieclips (the children) with…
Paul
  • 6,108
  • 14
  • 72
  • 128
0
votes
2 answers

AS3: How to use GTween?

I'm working with the latest version of the SDKs and FlashDevelop. So far, everything about my setup works fine, including external libraries. But when I use GTween, nothing happens. At all. I've tried several of the included samples and some of…
Tricky Widget
  • 117
  • 1
  • 2
  • 11
0
votes
1 answer

Flex 4 - Jerky animation issue

I have created my first animation effect in flex 4. Its a very simple animation within my custom component which moves a label component left to right to left 3-5 times and then fades out gradually. Every thing works fine but the problem is that…
dejjub-AIS
  • 1,501
  • 2
  • 24
  • 50
0
votes
1 answer

tweenlite as2 oncomplete

I seem to be having trouble with TweenLite in AS2. I've created a class which I call on the main timeline. Within the class I've loaded images and once they are loaded I want to fade between them. I am calling (inside my class) the following code…
Josh
  • 6,256
  • 2
  • 37
  • 56
0
votes
1 answer

Pause after loop in TweenJS

I'm hoping that some of you have worked with tween.js (part of the create.js suite of libs). I have a JS Fiddle to show you my issue: http://jsfiddle.net/qyp8Y/1/ I'm seeing a pause after each 8 step loop, which shouldn't be there. Can someone have…
rdrey
  • 9,379
  • 4
  • 40
  • 52
0
votes
1 answer

AS3 scale x and y using tween to give movieclip bounce effect

I am trying to give my "buttons" a bounce in effect using the tween class. I am also trying to make my code more efficent by using a function to handle this effect for all my buttons. var MusicClip:MovieClip = new music_mc(); var…
Denoteone
  • 4,043
  • 21
  • 96
  • 150
0
votes
1 answer

AS3 MotionTween Name

I'm trying to get the name of a motiontween in AS3. I have many tweens that call a generic function on MOTION_FINISH. mainContent3X = new Tween(MainContent3, "x", Strong.easeOut, MainContent3.x, 1750, 1, true); I need to get the number/name to know…
Nebula
  • 679
  • 2
  • 17
  • 37
0
votes
1 answer

Actionscript 3.0 - Tween a Movie Clip randomly and change it's font family over time

I have a Movie Clip which consists of a text-box with some text in it. I am trying to tween this movie clip so it either moves randomly throughout the animation or have the movie clip bounce off the edges similar to a standard screen saver you might…
deepseapanda
  • 3,717
  • 8
  • 32
  • 39
-1
votes
1 answer

Animated text effect with tweenjs

Please help me figure it out. There is a text animation effect on click on the screen, it is written in "tween.js". Does anyone know how to create such an effect on "tween.js"? Here is the link: https://michalzalobny.com/orbit-gallery I tried to…
Trismer
  • 1
  • 1
  • 1
-1
votes
1 answer

Navigate to section by clicking dot Indicator, gsap Observer&javascript

thanks for reading. i want to navigate to section by clicking dot Indicator. dot indicator is showing which section is now but i also want to click the dot to navigate. please Give Me your guidance. thank you very much. this is my codepen code. code…
s.Jay
  • 13
  • 3
-1
votes
1 answer

Tween Bounce Derivation process

This is the source code of Tween.Bounce.easeOut, I don't understand the constant 2.75, 7.5625, 0.75 and others... What is the derivation process? if (k < (1 / 2.75)) { return 7.5625 * k * k; } else if (k < (2 / 2.75)) { return 7.5625 *…
Jackie Lee
  • 19
  • 4
1 2 3
41
42