https://bugzilla.novell.com/show_bug.cgi?id=365827
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=365827#c3 --- Comment #3 from Sebastien Pouliot <[EMAIL PROTECTED]> 2008-05-05 13:10:58 MST --- Animation/media does not seems to complete (until the very end) and we never get to the next step. E.g. clicking on the "Director Comments" button (bottom bar) shows the "JumpScar" transition. However it never completes, in fact each click restarts it but it never ends at the same place. <Canvas x:Name="cnvDirectorComments" Cursor="Hand" Canvas.Left="175" MouseLeftButtonDown="showCompleteDirectors"> <Rectangle Fill="#01000000" Width="159" Height="65" RadiusX="4" RadiusY="4" Stroke="#3F46A6D8"/> <Image x:Name="imgDirectorComments" Width="153" Height="58" Canvas.Left="3" Canvas.Top="3" Source="" /> </Canvas> function showCompleteDirectors() -> NavigateToSlideshow("complete") -> startJump() function startJump() { rootCanvas.findName("JumpScarAnimation").Visibility = "Visible"; rootCanvas.findName("JumpScarAnimation").Stop(); rootCanvas.findName("JumpScarAnimation").Play(); } Definition: <MediaElement Name="JumpScarAnimation" AutoPlay="False" Source="" CurrentStateChanged="videoChanged" Visibility="Collapsed" Canvas.Left="85" Canvas.Top="-8" /> function videoChanged() { var currentState = rootCanvas.findName("JumpScarAnimation").CurrentState; if (currentState == "Paused") { if (!isAsset) { jumpToLocation(); if (currentLocation != mapAnimation) { updateThumbnails(); } } rootCanvas.findName("JumpScarAnimation").Visibility = "Collapsed"; isAsset = false; rootCanvas.findName("JumpScarAnimation").Stop(); } } The original problem is also related to this same function. The "right" background is removed when jumpToLocation() is called. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
