Anyone have a better tutorial than this one?
- Thanks.
- Thanks.
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( press )
{
mcImage.loadMovie( txtImageURL.text );
}
on (rollOver) {
_root.createEmptyMovieClip("container", 2);
loadMovie("image1.jpg", "container");
container._x = 150;
container._y = 150;
}
on (rollOut) {
unloadMovie("container")
}