1
0
forked from GitHub/gf-core

thai phrase translator

This commit is contained in:
aarne
2007-03-16 16:23:39 +00:00
parent f7ce8940fa
commit 232c9cbb37
22 changed files with 1501 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
function getFlashMovieObject(movieName) {
if (window.document[movieName]) {
return window.document[movieName];
}
if (document.embeds && document.embeds[movieName]) {
return document.embeds[movieName];
} else {
return document.getElementById(movieName);
}
}
function flashPlay(movieName) {
getFlashMovieObject(movieName).Play();
}
function flashPause(movieName) {
getFlashMovieObject(movieName).StopPlay();
}