Jump to content
Search Community

HH54

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Location
    Hamburg (GER)

HH54's Achievements

0

Reputation

  1. After founding a solutuion for the last problem myself, this problem could be to much for me ... Problem is that I have a mc which includes 10 pics (406px each), I Navigate inside with next button (x = "+ 406"), previouse Button (x = "-406"). But what to do if I reached the last pic, or want to use the previouse button in case of, I am on pic 1? The script must have something like a calculator which adds or subtracts the value of the clicks, or what? How to do this simply?
  2. Yeap, I found a solution. maybe not the best one, but my
  3. sorry, i´m just new in as3 and just a pure designer which is trying to understanding some basics my problem with this "preview slider" is, that if you are clicking to fast (before the first tween is completed) the + 406 starts at the point of current tweenposition and not at the end. So i need a function which says block the button, or wait with the next click until tween is finished. I don´t no what "destX" does, could that help me?
  4. ah, Ok so if the tween is not visible this function is not interesting. so I have to try the other way with function vor(event:MouseEvent):void { TweenLite.to(thumbs_only, 1, {x:"-406", ease: Back.easeOut}); }; But dont know how to define the : next Click just in case of tween complete.
  5. Hi, I tried to use the FrameLabel function in combination with nextFrame(), but it doesnt work. How can I use nextFrame here? onClick -> go to next or last frame! function vor(event:MouseEvent):void { TweenLite.to(thumbs_only, 1, {frameLabel:"nextFrame()", ease: Back.easeOut}); }; I tried to do also this function vor(event:MouseEvent):void { TweenLite.to(thumbs_only, 1, {x:"-406", ease: Back.easeOut}); }; But the problem here is that the script is not waiting for the last tweens "onComplete .... ", so if you click before the tween is finished allready, it´s not working. Can anybody help?
×
×
  • Create New...