Working nicely so far. I'm just having an issue with creating non-paramertized HydroSequence instances.<br><i>this gives me implicit coercion errors</i><br><span style="font-family: courier new,monospace;">var seq1:HydroSequence;</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">seq1 = new HydroSequence();</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">seq1.addStep( { target:topBanner, scaleX:1, duration:.5, easing:Back.easeOut } );</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">seq1.addStep( { target:topBanner, x:"10" } );</span><br><br>1118: Implicit coercion of a value with static type Object to a possibly unrelated type org.goasap.interfaces:IPlayable.<br>
<br>But this works,<br><span style="font-family: courier new,monospace;">var seq1:HydroSequence;</span><br><span style="font-family: courier new,monospace;">seq1 = new HydroSequence({ target:topBanner, scaleX:1, duration:.5, easing:Back.easeOut }, { target:topBanner, x:"10" });</span><br>
<br>Not a huge deal, just wondering if theres a way to get the first method to work.<br><br>--Joel Stransky<br><a href="http://stranskydesign.com">stranskydesign.com</a><br>