Problem
Problem
(OP)
I have two movie , one is name intro.dir, and one has name text.dir. How Can I conect this two movie, i want that when I finish with movie intro.dir that i am going to movie text.dir when i click on the button go.
Thank you
Thank you
RE: Problem
CODE
on exitFrame me
_movie.go(1, "text.dir")
end exitFrame
Kenneth Kawamoto
www.materiaprima.co.uk
RE: Problem
RE: Problem
Put this at the end of your intro.dir so that the playhead stays there:
CODE
on exitFrame me
_movie.go(_movie.frame)
end exitFrame
Attach this to your button:
CODE
on mouseUp me
_movie.go(1, "text.dir")
end mouseUp
Kenneth Kawamoto
www.materiaprima.co.uk
RE: Problem
-- Frame script
on exitFrame me
_movie.go(_movie.frame)
end exitFrame
and on the button go i Attached behavior script :
on rightMouseDown me
play movie "Text.dir"
end
and it is working with right click of mousse but I cannot to put something that is working with both key of mouse.
RE: Problem