So, i understand you want to start a popup window containing a flash movie.
This can be done like this:
1. insert this script:
Code:
function popUpWindow(location,left,top,width,height)
{
window.open(location, "popUpWin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbar=no, resizable=no, copyhistory=yes, width="+ width + ", height=" + height + ", left=" + left + ", top=" + top);
}
2. the link should look like this:
Code:
<a href="javascript:popUpWindow('mypage.htm','10','10','200','300')">My bio</a>
the first two numerical values determine the padding of the popup window, and the next to are the width and the height respectively, of the popup window.
3. In "mypage.htm" or whatever, insert your flash movie.
Last edited by danburzo; 05-23-2005 at 10:39 AM..
|