Share Posted July 23, 2014 Yep, you could loop through the selectedTargetObjects which are Crop instances, and tween the "target" of each. Link to comment Share on other sites More sharing options...
Author Share Posted July 23, 2014 Sorry I'm not that advanced at as3, so this could sound really dumb, but, how would I find the target of the selected object if I don't know its name? It's added from the Camara? 1 Link to comment Share on other sites More sharing options...
Share Posted July 23, 2014 var items:Array = yourManager.selectedTargetObjects; for (var i:int = 0; i < items.length; i++) { TweenMax.to(items[i].target, 0.75, {alpha:1}); } Link to comment Share on other sites More sharing options...
Author Share Posted July 23, 2014 Good lord, you make it look so easy, I have been pulling I hair out over this one! I thank you and my hair thanks you! 1 Link to comment Share on other sites More sharing options...
Share Posted July 23, 2014 Ha ha, no problem. Cheers! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now