Hi all,
I have a problem that might have a simple solution, so i am all ears to any help i can get.
Problem is i have a flash chatroom that i am running in an Iframe that works in Firefox but fails to load in IE 9
this is the iframe i am using:
// jimport('joomla.environment.browser');
// $doc =& JFactory::getDocument();
$browser = &JBrowser::getInstance();
$browserType = $browser->getBrowser();
$browserVersion = $browser->getMajor();
// Build the window
echo '<iframe class="youtube-player" type="text/html" src="http://www.camamba.com/webcam_window_v4e.php?'
.'user='.$name.'&lang='.$language.'&setage='.$setage.'&setgender='.$setgender
.'&setroom='.$setroom.'&bgImage='.$bgImage.'&backgroundColor='.$backgroundColor
.'&camImage='.$camImage.'&logoImage='.$logoImage.'&profileUrl='.$profileUrl
.'&fontColor='.$fontColor.'&onlineUrl='.$onlineUrl . ($setModerator == 'Yes' ? '&adm=zeplace2b': '')
.'"'.' width="100%" height="700px" scrolling="no"></iframe>';
// would like to know what the correct params to use the code below
echo ‘’.
'.
‘’.
‘’.
'<embed src=""
type=“application/x-shockwave-flash” ‘.
.’ allowscriptaccess=“always” allowfullscreen=“true” width=“100%” height=“700”> ';
Thanks in advance