The Flash and PHP Bible has been released! The book can be found on Amazon or wherever fine books are sold in your area. This book explains the process of working with PHP in Flash, while creating real world examples that you can actually learn something from.
The Flash and PHP Bible has a dedicated forum for support and comments.
A javascript popup that reuses the popup window once it is opened.
<script type="text/javascript">
<!--
function myOpenWindow(winURL, winName, winFeatures, winObj)
{
var theWin;
if (winObj != null)
{
if (!winObj.closed)
{
winObj.focus();
return winObj;
}
}
theWin = window.open(winURL, winName, winFeatures);
return theWin;
}
var myWin = null;
//-->
</script>
This is a code snippet that creates a popup and reuses the window once it is opened
<a href="http://www.google.com" onclick="myWin=myOpenWindow(this, 'Window Name','height=400,width=300,scrollbars=no',myWin); return false">Example Link</a>
Here is an example use of the code
©2004 - 2008 scriptplayground | Privacy Policy | Legal
Validate Site: XHTML CSS | Designed by: mkeefeDESIGN |