Hi John. I see what happened. OverlapMonitor was removed from the init. I'll have to ask Moses about that.<br><br>I made a change to HydroTween which I am attaching. I tested it with this code and it's good to go:<br><br>over.addEventListener(MouseEvent.MOUSE_OVER, onInteraction);<br>over.addEventListener(MouseEvent.MOUSE_OUT, onInteraction);<br><br>function onInteraction(event:MouseEvent):void {<br> switch (event.type) {<br> case MouseEvent.MOUSE_OVER :<br> HydroTween.go(event.currentTarget, {color:0xFF0000}, 1, 0, Quartic.easeOut);<br> //<br> break;<br> case MouseEvent.MOUSE_OUT :<br> HydroTween.go(event.currentTarget, {color:HydroTween.RESET}, 1, 0, Quartic.easeOut);<br> //<br> break;<br> }<br>}<br><br>I will upload the downloads and blog now.<br><br>Thanks for catching that!<br><br><font face="Tahoma, Arial, Sans-Serif" size="2"><hr align="center" size="2" width="100%">Return-Path: <golist-bounces@goasap.org><br>Received: from procyon.lunarpages.com [209.200.229.10] by mail29.safesecureweb.com with SMTP;<br> Thu, 15 May 2008 13:23:07 -0400<br>Received: from localhost ([127.0.0.1] helo=procyon.lunarpages.com)<br>        by procyon.lunarpages.com with esmtp (Exim 4.68)<br>        (envelope-from <golist-bounces@goasap.org>)<br>        id 1Jwh8s-0000Mg-Jq; Thu, 15 May 2008 10:21:22 -0700<br>Received: from hs-out-0708.google.com ([64.233.178.240])<br>        by procyon.lunarpages.com with esmtp (Exim 4.68)<br>        (envelope-from <johnsarracco@gmail.com>) id 1Jwh8P-0000I0-1u<br>        for golist@goasap.org; Thu, 15 May 2008 10:21:18 -0700<br>Received: by hs-out-0708.google.com with SMTP id j58so385891hsj.6<br>        for <golist@goasap.org>; Thu, 15 May 2008 10:20:51 -0700 (PDT)<br>Received: by 10.90.35.9 with SMTP id i9mr3485972agi.114.1210872051210;<br>        Thu, 15 May 2008 10:20:51 -0700 (PDT)<br>Received: by 10.90.97.16 with HTTP; Thu, 15 May 2008 10:20:51 -0700 (PDT)<br>Message-ID: <afead580805151020i45b3b734u5a74311156cff59e@mail.gmail.com><br>Date: Thu, 15 May 2008 12:20:51 -0500<br>From: "John Sarracco" <johnsarracco@gmail.com><br>To: golist@goasap.org<br>MIME-Version: 1.0<br>X-Spam-Status: No, score=-2.6<br>X-Spam-Score: -25<br>X-Spam-Bar: --<br>X-Spam-Flag: NO<br>Subject: [Golist] Rollover Animations<br>X-BeenThere: golist@goasap.org<br>X-Mailman-Version: 2.1.9.cp2<br>Precedence: list<br>Reply-To: Mailing list for the Go ActionScript Animation Platform<br>        <golist@goasap.org><br>List-Id: Mailing list for the Go ActionScript Animation Platform<br>        <golist_goasap.org.goasap.org><br>List-Unsubscribe: <http://goasap.org/mailman/listinfo/golist_goasap.org>,<br>        <mailto:golist-request@goasap.org?subject=unsubscribe><br>List-Archive: <http://goasap.org/pipermail/golist_goasap.org><br>List-Post: <mailto:golist@goasap.org><br>List-Help: <mailto:golist-request@goasap.org?subject=help><br>List-Subscribe: <http://goasap.org/mailman/listinfo/golist_goasap.org>,<br>        <mailto:golist-request@goasap.org?subject=subscribe><br>Content-Type: multipart/mixed; boundary="===============0640350883=="<br>Sender: golist-bounces@goasap.org<br>Errors-To: golist-bounces@goasap.org<br>X-AntiAbuse: This header was added to track abuse, please include it with any abuse report<br>X-AntiAbuse: Primary Hostname - procyon.lunarpages.com<br>X-AntiAbuse: Original Domain - hydrotik.com<br>X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]<br>X-AntiAbuse: Sender Address Domain - goasap.org<br>X-Source: <br>X-Source-Args: <br>X-Source-Dir: <br>X-Rcpt-To: <donovan@hydrotik.com><br>X-SmarterMail-Spam: Bayesian Filtering, SPF_None</font><br><br>I am using the new Go and HydroTween updates and the HydroTween.go() syntax for a rollover/rollout effect. and it is not functioning as expected because the animation finishes the sequence first and then completes the other effect.<br>
<br>Could someone recommend a way to listen for the events and reverse the animations for a group of buttons using Go?<br> <br>Thanks,<br>John<br>