Jump to content
Search Community

Oscar Rottink

Premium
  • Posts

    53
  • Joined

  • Last visited

Everything posted by Oscar Rottink

  1. I'm no real programmer but I created this: http://fizion.maakt.nu/gstest/ Not sure why but there's something wrong with the 3D transform. If you look (in Chrome) at the developer tools you see that it will be something like this after one (or a few) clicks -webkit-transform: matrix3d(0.99992, 0, -0.01243, 0, 0, 1, 0, 0, 0.01243, 0, 0.99992, 0, 0, 0, 0, 1); I removed the perspective from the wrapper but still the same. I tried to do something with roundProps but no luck so far. As far as I could see the first click is always working like it's supposed to be working. Since I rotate with 90 degrees I'm not sure why it behaves like this. If you click more often the difference will get bigger and bigger which is not really my intention. Hope someone can help me out.
  2. Think a very simple question but searching like crazy and can't seem to find it. Above my AS2 there's var removeIntroAnim:TimelineLite = new TimelineLite({onComplete:blueScreen}); Then I got a function which will append the tweens to that timeline. function removeIntro() { removeIntroAnim.append(new TweenLite(yArrow_mc, 0.5, {_y:920})); removeIntroAnim.append(new TweenLite(rArrow_mc, 0.5, {_y:920, delay:-0.5})); removeIntroAnim.append(new TweenLite(vidPlayer_mc, 0.5, {_alpha:0})); } But I don't want the animation to be started right away. Just don't figure out how I can 'prepare' the animation and start it on a certain moment. Like I said, think it's simple but can't find a solution.
×
×
  • Create New...