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
3
votes
2 answers

Flash AS3 error when importing 3D-tweened movieclip

I've been working on an AS3 application and it's nearing completion. At the same time, one of the designers I work with has been building a movieclip in a separate .fla that acts as an intro animation to the application. The intro uses the 3D…
justinbach
  • 1,945
  • 26
  • 44
3
votes
2 answers

Pyramid: Tween or WSGI middleware for custom logger and external entitlement system?

I would like to get a clear understanding of what would be the most pythonic and cleaner way to implement: a custom logger. a piece of code which connects via REST to a third-party entitlement system to be combined with the internal Pyramid ACLs…
DevLounge
  • 8,313
  • 3
  • 31
  • 44
3
votes
2 answers

how to understand the syntax of kineticjs?

This is the first time around that I am using some js,otherwise I always rely on hardcoding.Probably this is the reason why I am facing some issues in understanding the syntax of kineticjs. I saw some 1. Tween 2. layer(add) 3. stage(add) 4. var…
user2412575
3
votes
2 answers

Tween.registerAccessor NoClassDefFoundError

i 'm a newbie for LibGDX and Android. Btw sorry for my bad English. Here is my problem. I just want to make a splash screen with libgdx and i watched Dustin Riley 's libGDX tutorial on youtube. But my codes doesn 't work and here is LogCat about…
Utku
  • 145
  • 1
  • 13
3
votes
0 answers

Cool Animations on Android 2.3

How would I go about doing some reasonably cool animations on Android 2.3? I realize I'm asking what may sound like a silly question but I'm not able to use enough Bing-Fu (or enough Google-Fu) to find good info/examples on what types of animation…
Cliff
  • 10,586
  • 7
  • 61
  • 102
3
votes
1 answer

d3js how to scroll or tween properties

I have a div, #scrollable, with a scrollbar and I want to scroll to the end. I can do it by setting the div's "scrollTop" property to the value of the div's "scrollHeight" property thus: var scrollable =…
Arif
  • 31
  • 1
  • 5
3
votes
5 answers

Animating Color with Tweenjs

I've recently switched to EaselJs and would like to animate the color of a circle. The code I've got so far is this: var shape = new createjs.Shape(); shape.graphics.beginFill(createjs.Graphics.getRGB(255, 0, 0)); shape.graphics.drawCircle(0, 0,…
lhk
  • 27,458
  • 30
  • 122
  • 201
2
votes
2 answers

Does setting properties in AS3 prevent timeline tweens?

If I have a movieclip that has a class assigned to it and I change a property of that movieclip in code, it seems that the property can no longer be tweened on the timeline. For example, if my class sets this.x = 100, and later on the timeline I…
elmonty
  • 2,395
  • 3
  • 20
  • 28
2
votes
1 answer

how to correctly use touch listener/event and ease function in andEngine

this touch event never fires. Ive been going through the examples and source codes and now am slightly confused on the best method of doing what i want. I draw a sprite to the scene. I want that sprite to move with an EaseFunction to the…
joacampb
  • 177
  • 1
  • 18
2
votes
2 answers

AS3 remove tween before MOTION_FINISH via the movieclip

I've been fumbling with this issue for a bit. I've got a lovely little tooltip movieclip that follows the user's mouse for a few seconds before it removes itself. My problem is that if there is one already there I remove it, however, I cannot seem…
jc.021286
  • 220
  • 1
  • 4
  • 15
2
votes
1 answer

Can I control motion tween speed according to timer?

I want to make simple motion tween of analog timer seconds arrow. Can i sync it with specified defined timer on AS3? I know that the regular speed of animation can variate according to system specs. Any suggestions? Thanx in advance!
Andrew Rumm
  • 1,268
  • 4
  • 16
  • 39
2
votes
1 answer

Possible to make tweens happen at the same time with Greensock Timelinelite?

Is it possible to make tweens happen at the same time with Greensock Timelinelite? I know it could be possible to fake it by putting a negative delay in but that's not very accurate. Any ideas would be greatly appreciated.
eb_Dev
  • 873
  • 2
  • 13
  • 25
2
votes
1 answer

tweening two properties in Flash

I use this to tween many parameters var tween:Tween = new Tween(imageObject, "x", Regular.easeIn, imageObject.x,nextImageObject.x-imageStep, 1, true); var tween1:Tween = new Tween(imageObject, "rotationY" , Regular.easeIn,…
takayoshi
  • 2,789
  • 5
  • 36
  • 56
2
votes
1 answer

Constant rotation tween in Godot 4

Godot's built-in Tween doesn't meet my requirements: It transitions a property's value given a required duration. The tween I want is constant; i.e., it increases with a constant speed. The linear transition doesn't fulfill my requirement. It…
Hydroper
  • 344
  • 2
  • 9
2
votes
0 answers

Scrollmagic timeline fade-in-out text not working as expected

I've created a syncronized horizontal timeline slider which should also fade-in-out some text on top of another. Unfortunately I am unable to understand how I could fade out the last slide's text when the new one appears in a timeline logic - with…
user3615851
  • 999
  • 1
  • 15
  • 40