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
-1
votes
1 answer

Unable to animate sprite in Libgdx using Tween

I am working on a game like Candy Crush and I have been facing issues with making a pop up while user Levels Up. I recently posted a question to display pop up in font and got it solved : Unable to Draw Sprite after Camera.Update in LibGDX But now I…
Nir Patel
  • 357
  • 4
  • 17
-1
votes
1 answer

How to show object when another object pass over it

I'm creating an animation with 5 objects using createjs and tween. The first object is a car that cross horizontally the screen and the other 4 objects are 4 buildings that I want to show once at a time every time the car pass over the object (that…
Kerby82
  • 4,934
  • 14
  • 48
  • 74
-1
votes
2 answers

addchild with animate cc by Actionscript 3 language

How to with "addchild(page2)" animate showing with Tweening! This is my simple class of actionscript to make that,MovieClip did not play animation when using addChild(), do you have any suggestions? my page1..3 are MovieClips! package { import…
S At
  • 422
  • 5
  • 15
-1
votes
2 answers

What does the variable "k" stand for?

I use the tween.js library, it contains some built in easing functions such as this one: Quadratic: { In: function (k) { return k * k; } }; The user guide describes the variable k as: k: the easing progress, or how far along the…
Drahcir
  • 11,772
  • 24
  • 86
  • 128
-1
votes
1 answer

Flash Caurina Tween to MOV or MPG4

I have to create a video for a company by projecting via usb on a 1920x1080 monitor. For the animation I have to use flash, and for convenience I wanted to use Caurina Tween. How can you export a file to quicktime mpg4 or using animations via…
rnd
  • 61
  • 1
  • 3
-1
votes
1 answer

Trying to code random bezier curve motion of multiple movieclip instances in AS3

Completely new to AS3, still learning to ropes, so please bear with me! I am trying to make a game using ActionScript 3.0 that will display 5 grasshoppers jumping around on the stage in random positions. I have tried using TweenLite and TweenMax…
-1
votes
2 answers

Clip staying on screen while not in timeline anymore

I have a particular problem : I have a fla with 2 frames, with a clip of instance name "my_clip" on frame 1 and no clip en frame 2. If i move by code (like a tween) "my_clip", when I go to frame 2, the clip is still on screen, whereas frame 2 is…
Th4n4to
  • 49
  • 2
  • 6
-2
votes
1 answer

Run a function on every element of an array

I'm new to JavaScript and I would like to run a function on every element of an array. To be more specific, in my code, I have an onclick function. When I click on an element, I want 3 other elements to move. The problem is that only 1 element is…
ThomasSzy
  • 3
  • 1
  • 3
-2
votes
1 answer

Add child + hittest?

AS3 Flash - Hey, I made a game like "Flappy Bird". Can someone help me how to check "character" hitted a wall? This game generate every 2.5 seconds two walls. (Wall and Wall2) How to check that character hitted it? function newWall():void { var…
1 2 3
41
42