Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
on mouseUp(me)
global gVisited
if gVisited then _movie.go("some frame")
end mouseUp
-- Movie Script
on startMovie
global gMustVisitFramesList
gMustVisitFramesList = ["a", "b", "c", "d"]
end startMovie
-- Behaviour Script attached to a Button
on mouseUp(me)
global gMustVisitFramesList
gMustVisitFramesList.deleteOne("c")
put(gMustVisitFramesList)
_movie.go("c")
end mouseUp