Author: max
Date: 2007-06-19 20:04:43 -0700 (Tue, 19 Jun 2007)
New Revision: 5472

Modified:
   openlaszlo/branches/legals/WEB-INF/lps/lfc/kernel/swf/LzSprite.as
Log:
Change 20070619-maxcarlson-p by [EMAIL PROTECTED] on 2007-06-19 18:52:10 PDT
    in /Users/maxcarlson/openlaszlo/legals-clean/WEB-INF/lps/lfc
    for http://svn.openlaszlo.org/openlaszlo/branches/legals/WEB-INF/lps/lfc

Summary: Fix onframe events for non-proxied mp3 audio

New Features:

Bugs Fixed: LPP-4168 - onframe event not being sent

Technical Reviewer: promanik
QA Reviewer: jcrowley
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details: LzSprite.as was dereferencing the wrong thing - doe!


Tests: See LPP-4168

Files:
M      kernel/swf/LzSprite.as

Changeset: 
http://svn.openlaszlo.org/openlaszlo/patches/20070619-maxcarlson-p.tar


Modified: openlaszlo/branches/legals/WEB-INF/lps/lfc/kernel/swf/LzSprite.as
===================================================================
--- openlaszlo/branches/legals/WEB-INF/lps/lfc/kernel/swf/LzSprite.as   
2007-06-20 01:56:18 UTC (rev 5471)
+++ openlaszlo/branches/legals/WEB-INF/lps/lfc/kernel/swf/LzSprite.as   
2007-06-20 03:04:43 UTC (rev 5472)
@@ -1340,7 +1340,7 @@
     this.__lzskipplaycheck = 0;
     this.__lzskipplaychecklimit = 4;
     // skip more frames for mp3 audio resources to allow tracking to work 
correctly
-     if (('isaudio' in this.getMCRef()) && (this.getMCRef().isaudio == true)) 
this.__lzskipplaychecklimit = __lzskipplaychecklimitmax;
+     if (('isaudio' in this.getMCRef()) && (this.getMCRef().isaudio == true)) 
this.__lzskipplaychecklimit = LzSprite.prototype.__lzskipplaychecklimitmax;
     
     //Debug.warn('checkPlayStatus %w %w %w %w', this.__lzcheckframe, 
this.frame, this.totalframes, this.__lzskipplaychecklimit);
     LzIdle.callOnIdle( this.checkPlayStatusDel );


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to