Question
Adding text to javascript pop up window
I am opening a pop up windows with javascript from my Flash
movie that works fine. Each opening window has a video in it. Now
what I'd like to do is add text under/above the quick time movie
inside the pop up windows. I'm not very savvy with programming and
I've tried to look all over but can't find a simple direct answer,
so any help would be greatly appreciated.
Thanks!
Here's the code I have inside the Flash movie:
btn_rebecca.onRelease = function() {
getURL("javascript:openNewWindow('Videos/rebecca.mov','thewin','width=500,height=400,toolbar=no,scrollbars=no')");
}
And here's the code I have in the html:
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script>
Thanks!
Here's the code I have inside the Flash movie:
btn_rebecca.onRelease = function() {
getURL("javascript:openNewWindow('Videos/rebecca.mov','thewin','width=500,height=400,toolbar=no,scrollbars=no')");
}
And here's the code I have in the html:
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script>