<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">
<div>Hi,</div><div><br class="webkit-block-placeholder"></div><div>it's very faszinating to see the developement of Go step by step :-)</div><div><br class="webkit-block-placeholder"></div><div>I've created a little "timline" using HydroTween and an own filterTween and want to share it with you. </div><div>It looks like this:</div><div><br class="webkit-block-placeholder"></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>group.addChild(new HydroTween(clip, {x:200, y:50}, 0, 1, Quadratic.easeInOut));</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>group.addChild(new HydroTween(clip, {rotation:360}, 0.5, 1, Linear.easeInOut));</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>group.addChild(new DropShadowTween(clip, endFilter(), 1, 1.3, Bounce.easeOut));</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>group.addChild(new HydroTween(clip, {x:0, y:100}, 1.5, 1, Quadratic.easeInOut));</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>group.start();</div><div><br class="webkit-block-placeholder"></div><div>the function endFilter() returns a dropshadowfilter. I hat to change the call of the start-properties in Hydrotween to make multiple manipulation of the same property possible ( here the x-value ). Overlapmanagement does not work yet. See the example attached to the mail. </div><div><br class="webkit-block-placeholder"></div><div>I'm just thinking about small tween packages like this:</div><div><br class="webkit-block-placeholder"></div><div>tweens</div><div>- dropShadow</div><div>- - DropShadowVO.as // a value object with tweenable Filterprops</div><div>- - DropShadowTween.as // Constructor: new DropShadowTween(clip, startDropShadowVO, endDropShadowVO, 1, 1.3, Bounce.easeOut));</div><div><br class="webkit-block-placeholder"></div><div>- movieClip</div><div>- - ClipVO.as // a value object with tweenable clipprops</div><div>- - ClipTween.as // Constructor: new DropShadowTween(clip, startClipVO, endClipVO, 0, 1, Linear.easeOut));</div><div><br class="webkit-block-placeholder"></div><div>- bezier</div><div>- - BezierVO.as // a value object with propertiers</div><div>- - BezierTween.as // Constructor: new DropShadowTween(clip, start BezierVO, endBezierVO, 0, 1, Linear.easeOut))</div><div><br class="webkit-block-placeholder"></div><div>etc.</div><div><br class="webkit-block-placeholder"></div><div>Just an idea for a library-structure. What do you think?</div><div><br class="webkit-block-placeholder"></div><div>Lot's of greetings</div><div><br class="webkit-block-placeholder"></div><div>k</div><div><br class="webkit-block-placeholder"></div></body></html>