Project Description:
I need the following code (<a href="http://ontheseairwaves.com/mp3Player.html" onClick="return popupnr(this, 'music',true)">) embedded into my flash file.
The Flash source file is here http://ontheseairwaves.com/header.zip
I already have this working in html format at the url http://ontheseairwaves.com/ but we are converting the header into flash and need this to work within flash. (This is for the "Listen" link)
First person to show me a working test will get the job and immediate payment.
I already have the following in the head tag and you will need it for testing:
<SCRIPT TYPE="text/javascript">
function popupnr(mylink, windowname, refocus)
{
var mywin, href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
mywin = window.open('', windowname, 'width=640,height=360,scrollbars=no');
// if we just opened the window
if (
mywin.closed ||
(! mywin.document.URL) ||
(mywin.document.URL.indexOf("about") == 0)
)
mywin.location=href;
else if (refocus)
mywin.focus();
return false;
}
//
</SCRIPT>