
WhiteDesign
Members-
Posts
25 -
Joined
-
Last visited
Contact Methods
- Personal Website
Profile Information
-
Location
Melbourne, Australia
-
Interests
Marathon running and learning Actionscript.
WhiteDesign's Achievements
0
Reputation
-
Hello!!! When I add a simple swf to my Shortstack facebook widget everything works brilliantly! I now want to include a LoaderMax swf to load other swf's (obviously) although all I get is a blank widget!?! My code... import com.greensock.*; import com.greensock.loading.*; import com.greensock.events.LoaderEvent; import com.greensock.loading.display.ContentDisplay; progressBar_mc.bar_mc.scaleX = 0; var myImage:SWFLoader = new SWFLoader("22smushyLane.swf", {container:this, alpha:0, onProgress:progressHandler, onComplete:completeHandler}); function progressHandler(event:LoaderEvent):void { progressBar_mc.bar_mc.scaleX = myImage.progress; } function completeHandler(event:LoaderEvent):void { trace(event.target.content); //get a reference to the content of the loader that fired the complete event var loadedImage:ContentDisplay = event.target.content; TweenLite.to(loadedImage, .5, {alpha:1}); TweenLite.to(progressBar_mc.bar_mc, .5, {alpha:0}); } myImage.load(); Thanks!!!
-
WOW!!! Haven't tried it yet but it looks brilliant!!!!! Thanks!!!!!
-
Hello! This is such a basic question but for the life of me I just can't work out how to do it!!!!!!! How do I tween a movieclip to move from var ls:LiquidStage = new LiquidStage(this.stage, 550, 555, 550, 555); ls.attach(mc, ls.LEFT_CENTER); to var ls:LiquidStage = new LiquidStage(this.stage, 550, 555, 550, 555); ls.attach(mc, ls.RIGHT_CENTER); ? Thanks!!!!!
-
Your work is absolutely amazing!!!! The RoughEase looks like it could be perfect for the effect I want. Thanks Jack!!!!
-
Hello! I have a movieclip which drops down and bounces to a stop half way down the page using the ease:Bounce.easeOut function, but is it at all possible to create an unsteady bounce? By that I mean to have it rotate ever so slightly left and right in time with each bounce? Thanks!!! Louisa
-
BRILLIANT Great updates and great website!!!! With all the fantastic benefits of being a Greensock member you would have to be crazy not to be one! Louisa
-
That would be brilliant!!!
-
Hello Craig! I use Pixelfumes to create my reflections. You can download it through: http://www.adobe.com/devnet/flash/artic ... s_as3.html just click on the Sample Files a little way down the page. It's quite good and I haven't ever had any problems with it. Hope that helps. Louisa
-
Thanks Jack!!! It wasn't really a Greensock question was it... so thank you so much for helping!! I was going slightly crazy! Louisa
-
Hello!!! Another question! Sorry about the subject title! Just couldn't resist! I've created a simple button but I want to want to add a 'hit' area and I just can't fathom out how to do it. My button is 100px x 100px but expands to 200 x 200 when the mouse rolls over. I want the button to tween back to it's original size when the mouse moves away from the 100 x 100 area, not wait until it leaves the roll over 200 x 200 area! mc.addEventListener(MouseEvent.ROLL_OVER, overThree); mc.addEventListener(MouseEvent.ROLL_OUT, outThree); TweenLite.to(mc, 0, {autoAlpha:0.5}); function overThree(evt:MouseEvent):void { TweenLite.to(mc, 1, {setSize:{width:200, height:200}, autoAlpha:1}); trace("button THREE works"); } function outThree(evt:MouseEvent):void { TweenLite.to(mc, 1, {setSize:{width:100, height:100}, autoAlpha:0.5}); trace("button THREE works"); } Thanks!!!!
-
Thanks Jack!!! I suspected might have been the way to achieve such a shadow.Oh, and sorry for the delayed thank you especially when you got back to me so quickly!!! Louisa
-
Hello!!! This probably isn't at all possible but there's no harm in asking!!! Is there a way to make the TweenLite/TweenMax drop shadow look more like a shadow? An example of the effect I'm after is attached! Louisa
-
Thanks!!!! I use the tween examples as reference but I take them far too literally! I feel like I have to use the tweens as shown in the example (be it TweenLite or TweenMax) otherwise my Mac will explode!! Louisa
-
Hello again!!!! Still being a bit of a novice I just wanted to run this code past you to make sure I'm not making a complete dogs breakfast of how I'm structuring my code or that I'm making things slow and clunky because of excess 'stuff'. The whole thing works brilliantly, I just to be sure I'm doing things properly! Thanks!!! Louisa /////////////// Main Menu TweenLite.to(info.myMenu_btn.myMenuButtons, 0, {autoAlpha:0}); info.myMenu_btn.addEventListener(MouseEvent.ROLL_OVER, mouseOverHandler); info.myMenu_btn.addEventListener(MouseEvent.ROLL_OUT, mouseOutHandler); function mouseOverHandler(e:Event):void { TweenLite.to(info.myMenu_btn.myMenuButtons, 0.5, {autoAlpha:1}); } function mouseOutHandler(e:Event):void { TweenLite.to(info.myMenu_btn.myMenuButtons, 1, {autoAlpha:0}); } ////////////////////// Menu Buttons TweenMax.from(info.profile, 1, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); TweenMax.to(info.otherInfo, 0, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); TweenLite.to(info.panel, 0, {scrollRect:{left:0, right:913, top:0, bottom:516}}); TweenMax.to(pageMenu, 0, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); info.myMenu_btn.myMenuButtons.profile_btn.addEventListener(MouseEvent.CLICK,playProfileInfo); function playProfileInfo(e:Event) { TweenMax.to(info.profile, 1, {autoAlpha:1, blurFilter:{blurX:0, blurY:0}}); TweenMax.to(info.otherInfo, 1, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); TweenLite.to(info.panel, 1, {scrollRect:{left:0, right:913, top:0, bottom:516}}); } info.myMenu_btn.myMenuButtons.more_btn.addEventListener(MouseEvent.CLICK,playMoreInfo); function playMoreInfo(e:Event) { TweenMax.to(info.profile, 1, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); TweenMax.to(info.otherInfo, 1, {autoAlpha:1, blurFilter:{blurX:0, blurY:0}}); TweenLite.to(info.panel, 1, {scrollRect:{left:0, right:913, top:0, bottom:430}}); } ////////////// Close Panel info.myMenu_btn.myMenuButtons.gallery_btn.addEventListener(MouseEvent.CLICK,closeProfile); function closeProfile(e:Event) { TweenMax.to(info, 1, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); TweenMax.to(pageMenu, 1, {autoAlpha:1, blurFilter:{blurX:0, blurY:0}}); } info.close.addEventListener(MouseEvent.CLICK,closeBtnProfile); function closeBtnProfile(e:Event) { TweenMax.to(info, 1, {autoAlpha:0, blurFilter:{blurX:20, blurY:20}}); TweenMax.to(pageMenu, 1, {autoAlpha:1, blurFilter:{blurX:0, blurY:0}}); }
-
Hello Jack! I just wanted to say how brilliant your Tween Proxy 3D is! I find using your 3D rotation cleaner and more reliable than using the 3D tool in flash! For example, when applying a reflection effect with the Tween Proxy I didn't have any dramas as all but when I used the 3D flash tool I had a terrible time trying to get the refection distance to work properly. Thanks for such a brilliant product!!! Louisa