Jump to content
Search Community

learner_7n

Members
  • Posts

    131
  • Joined

  • Last visited

Everything posted by learner_7n

  1. Hi, Thanks a lot for the help. Trying to repeat the same action. Regards.
  2. Hi, I am looking for the alternate code to the following one: var K:Loader=new Loader(); addChild(K); K.load(new URLRequest("clock.swf")); K.x = 160; K.y = 200; K.contentLoaderInfo.addEventListener(Event.INIT, growLoader); function growLoader(evt:Event):void { K.width = 130; K.height = 130; } Thanks in advance for any help. Regards.
  3. Hi, How can I do the same effect using my objects ... Expanding, shrinking accordingly while bouncing/jumping or moving left and right. What is the code please? It must be some tweening code. http://www.sciencemuseum.org.uk/whoami/thingdom Thanks.
  4. Hi, How can we change the backgroundsof a webpage automatically with some time delay as in the following link: http://www.silverpistol.com/ Thanks.
  5. Hi, How can I create such rotating effect with my images like in the following link (Website) http://www.greensock.com/portfolio/361/ Regards.
  6. Hi, How can I make my movie clip like the following: 1) Move forward to x:200 2) Stop for a while 3) Move forward to x:400 Just like in the following example: http://www.snorkl.tv/2010/08/flash-cs4- ... lor-tween/ Thanks.
  7. Hi, How can I create a dropping effect on my movie clip? Please help me with this code. It is an cute effect. Thanks.
  8. Hi, What is the code to create zoom in & zoom out effect on images/movie clips? Thanks.
  9. Hi, Which software is used to create this website? Please let me know. Thanks.
  10. Hi, How can I get the "Class" for character (Alphabets) animation as it is for Club Membership holders? Please help. Thanks.
  11. Hi, What is wrong with the code? No error but yoyo effect not working. Drop shadows works just once. Not repeating the same. TweenMax.to(RAS_mc, 5, {dropShadowFilter:{color:0xff0000, alpha:1, blurX:12, blurY:12, distance:15, repeat:3, yoyo:true}}); The second probelm. When I use the following code the "RAS_mc" disappears. No any error pops up. TweenMax.to(RAS_mc, 3, {bezier:[{x:88, y:89}, {x:166, y:99}], orientToBezier:true, ease:Bounce.easeOut}); Please help.
  12. Hi, I tried but getting the following error: 1) 1046: Type was not found or was not a compile-time constant: TextTyper. 2) 1180: Call to a possibly undefined method TextTyper. Textbox property name is "myTextField". The code used is... import com.greensock.*; import com.greensock.easing.*; var typer:TextTyper = new TextTyper(myTextField); typer.progress = 0; //hides all the characters. Internally, TextRevealer would set the TextField's "text" property to "" TweenLite.to(typer, 5, {progress:1}); What is wrong?
  13. Hi, Could someone help me to understand the use of the following property? 1) "rawContent"
  14. Hi, It doesn't stops. Just keeps on repeating the action. How can I stop it? TweenMax.fromTo(Top_mc, 3, {x:0, y:0, alpha:1, scaleX:1, scaleY:1}, {x:0, y:0, alpha:1, scaleX:0, scaleY:1, ease:Strong.easeOut}); Thanks.
  15. The second one "B". I would also need something like police car flash light which looks like flashing & rotating. Regards.
  16. Thanks for the your reply. It works fine. Can we use 2 colors to tint in a single movie clip? Say, 1) Red 2) Yellow. Thanks.
  17. Hi, is it possible to make a an small object flashing to attract user's attention? Like a small flashing rectangle? Please help. I need to make something looks like flashing. Thanks.
  18. Yes. It is clear to me. How can I mark questions which are resolved. Is there a way to do it? Thanks.
  19. Hi, I want to make an image as button which should show on mouse over another image? How it is possible? What is the greensock code to achieve it? Please help. Regards.
  20. Hi, Is it only for the MEMBERS or even Free members can use the character falling/dropping effect? Thanks.
  21. Thanks. Just I am watching other users code and trying to see the effect on my demo projects. What code should be there on complete handler to get the effect which he mentioned here? I thought it might be the full working code example without adding any more code. So I tried the same and got error. Thanks.
  22. Hi, How can I create an array as given in the example (below link)? http://www.greensock.com/timelinemax/ import com.greensock.*; var timeline:TimelineMax = new TimelineMax({repeat:2, yoyo:true, repeatDelay:1.5}); timeline.append( TweenLite.from(blackBar, 0.8, {x:550}) ); timeline.insertMultiple( TweenMax.allFrom([logo, timelineWord, maxWord, byGreenSock], 0.5, {autoAlpha:0}, 0.25), 0.6); timeline.insertMultiple( TweenMax.allFrom(lettersArray, 1, {y:"-30", alpha:0, ease:Elastic.easeOut}, 0.04), 1.4); I have created other movie clips and text boxes but could not understand on how to make an lettersArray as in the above code to work with this example. Could someone help me out, please> Thanks
  23. Hi, How can I see the same effect on using onMouseOve event using the following code: TweenMax.to(mc, 1, {colorMatrixFilter:{colorize:0x33ff66, amount:1}}); Thanks.
×
×
  • Create New...