History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: LPP-715
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: -- --
Assignee: Unassigned
Reporter: Bret Simister
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
OpenLaszlo

onlastframe event does not work in mac browsers

Created: 21/Sep/05 04:03 PM   Updated: 01/Feb/08 04:32 PM
Component/s: Laszlo Foundation Classes (LFC)
Affects Version/s: 3.1 (aka Denver)
Fix Version/s: 3.1 (aka Denver)

Time Tracking:
Not Specified

File Attachments: 1. Zip Archive test onlastframe.zip (8 kb)


Severity: Minor
Runtime: N/A
Release Note Text: Macintosh browsers catch "onlastframe" event during animations.


 Description  « Hide
The code below does not produce an "onlastframe" event for the view whose resource is loaded at runtime ( id="pv" ).


<canvas>
<button text="load swf" onclick="pv.setSource('test_movie_stop.swf')" />

<view id="pv" x="50" y="50" play="true">
<method event="onload" args="v" >
Debug.write("onload v",v);
</method>
<method event="onlastframe" args="v" >
Debug.write("onlastframe",v);
</method>
</view>

<view id="pv2" x="50" y="200" resource="test_movie_stop.swf" play="true">
<method event="onload" args="v" >
Debug.write("onload",v);
</method>
<method event="onlastframe" args="v" >
Debug.write("onlastframe",v);
</method>
</view>
</canvas>

 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Amy Muntz - 23/Sep/05 12:06 PM
Max believes this may have been addressed in his last changesets.

Max Carlson - 28/Sep/05 03:23 PM
Still not working in the lzmail case. Need to increase timing window.

Max Carlson - 29/Sep/05 10:36 PM
Fixed with change 33078