Jump to content
Search Community

learner_7n

Members
  • Posts

    131
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

learner_7n's Achievements

1

Reputation

  1. Hi, Is there a way to create a 360 degree view (Panaromic view) using actionscripts 03? Please advise. Thanks.
  2. Hi, I have some 20 images (Image-01, Image-02, ..............Image-20) on my stage laying each on ohte. I want to make each image to zero transperency with say 3 seconds. How cant I do that? Please help.
  3. Hi, How can I set my fillColor_mc height equal to heightValue.text? Please help. TweenLite.to(fillColor_mc, 1, {height:????}); Thanks.
  4. Hi, I am getting the following error: 1048: Method cannot be used as a constructor. The following is the code: var timeline1:TimelineMax = new TimelineMax(); timeline1.append(new TweenMax.fromTo(HLineTop1, 2, {x:10, y:10, alpha:.5}, {x:10, y:10, alpha:1, delay:1, ease:Strong.easeOut})); Thanks.
  5. Hi, I am resizing my .swf file according to browser size using AS3. It is working fine. But problem occurs only when an object goes x=-300 (x, or y but in negative numbers) on stage. Means when the object goes up the stage or down the stage, everything on stage shrinks and looks very bad. How to overcome this problem? Actually I am having problem only when my flash movie clips move out of flash stage area. Say, my swf movie width & heights are 600x400 and my flash movie clip (MC-1) animation area is set to animate from x:-100 to y:650 or x:100 to y:-450. Any help, please. I tried several forums to overcome thim problem but in vain. Regards. Example.zip
  6. Hi, How to load external SWF files in a specific movie clip based on a button clicked. Say, I have 4 SWF files like ... 1) Main.swf 2) Services.swf 3) AboutUs.swr 4) ContactUs.swf And I have the buttons with same name like (Main, Services, AboutUs & ContactUs) and when I cllick on Services button the Services.swf to be loaded.... so on... Actually I have several external SWF files to load in this way. The following code is okay but I need to write code for each button seperately. How can I modify the code to resolve my problem? var mySwf1:SWFLoader = new SWFLoader("Main.swf", {width:600, height:400, container:SWFContainer_mc, onComplete:completeHandler1}); mySwf1.load(); function completeHandler1(event:LoaderEvent):void { TweenLite.to(event.target.content, 0,{alpha:0}); TweenMax.fromTo(event.target.content, 3, {x:0, y:0, width:600, height:400, alpha:.5}, {x:0, y:0, width:600, height:400, alpha:1, delay:1}); } Thanks in advance for any help. Regards.
  7. Hi, I have the following code which is working fine: var mySwf1:SWFLoader = new SWFLoader("HandBook.swf", {width:600, height:400, container:this, onComplete:completeHandler1}); mySwf1.load(); function completeHandler1(event:LoaderEvent):void { TweenLite.to(event.target.content, 0,{alpha:0}); TweenMax.fromTo(event.target.content, 3, {x:0, y:0, width:600, height:400, alpha:.5}, {x:0, y:0, width:600, height:400, alpha:1, delay:1}); } The question is, how can I modify the below line of code to load this "HandBook.swf" external file into specific movie clip? Say, I have mc1, mc2, mc3 movie clips and I want to load this "HandBook.swf into mc2 movie clip. Thanks in advance for any help.
  8. Hi, Is the following website created in Flash? If yes, which tools are required to give a 3D effect? Please reply. http://forcoloredgirlsgallery.com/ Thanks.
  9. Hi, How can I add delay time to the following code? TweenMax.to(PLogo, 2, {glowFilter:{color:0xffff00, alpha:1, blurX:30, blurY:30, strength:2, quality:3}}); Thanks.
  10. Hi, How to modify the following code to move horizontally? The following is the code for moving verically: TweenMax.fromTo(SideHeader1, 12, {y:600}, {y:-50, repeat:-1, ease:Linear.easeNone}); Thanks.
  11. Hi, Thanks a lot to both of you for the help. My problem is resolved now. Regards.
×
×
  • Create New...