[Mono-bugs] [Bug 365827] Jumper site fails to start after selecting a country, and clicking OK.

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon May 5 15:10:59 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=365827

User spouliot at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=365827#c3





--- Comment #3 from Sebastien Pouliot <spouliot at novell.com>  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.


More information about the mono-bugs mailing list