Okay this answer goes out to those polish guys working with director. (My
mother was born in Poland and while I managed to decifer what you have written
I won't dare to try to write back because I'm sure I wouldn't get any of it
right :-)

I haven't actually tried doing what you are asking but here are my suggestions.
First of all the tempo/frame rate of LDMs is tied into the stage. They are not
independant that way so I don't think a pause command will actually work. What
might work though is to have script residing through out the movie that is has
a "navigation" property on each end frame the script can check what the
navigation property is and act accordingly. You could then have the triggering
action use the tell sprite command to set the property of your navigation
script something like this (completely untested):

In an LDM residing in sprite 10 of the stage

behavior attached to sprite 1 of the LDM

property pNavigation

on exitFrame me
    if not(voidP(pNavigation)) then
        case pNavigation of
            "pause": go the frame
            "continue": go the frame + 1
                pNavigation=void
            otherwise
                pNavigation=void
        end case
    end if
end

on navigate me, aWhere
    pNavigation=aWhere
end



in the stage:

on mouseUp me
    tell sprite(10) to sprite(1).navigate("pause")
end

again this is untested and there is probably a better method but this should
get you started.

do wiedzienja,
wsztkego nylepszego ( is that spelling even close?)

Rob





Zbigniew Jasinski wrote:

> From: Szymon Drejewicz <[EMAIL PROTECTED]>
> >
> > Hello,
> >
> > I have movie working on web page named 'movieA' and to this movie is
> > externaly linked other movie named 'movieB'. Is it possible to stop
> > 'movieB' when user moves mouse onto?
> > Can I stop linked movie by somethig like 'movie("movieB.dcr").pause()' ??
> >
> > Szymek Drehyehvitch
> >
> > POZDRAWIAM: ciocie, babcie, wszystkich, ktorzy nie wiedza co tu jest
> > napisane oraz Zbyszka J. i Pawla Z. :-)
> >
> >
> ooo That's good question ...  I have same problem too ...
> so maybe someone will help us ... ????
>
> he he nie wiedzialem co napisac wiec to wymyslilem tak sobie
> ciebie tez pozdrwiam ... ;p i innych co rozumieja co ty naskrybane
> a Pawal Z. nie znam ale teaz pozdrwiam ... ;]
>
> [To remove yourself from this list, or to change to digest mode, go to
> http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
> email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to