Share Posted July 23, 2014 Yep, you could loop through the selectedTargetObjects which are Crop instances, and tween the "target" of each. Link to post Share on other sites
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 post Share on other sites
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 post Share on other sites
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 post Share on other sites