Skip to content

dart-creations.com

Advertisement
Home arrow Forums
DART Creations Forums
Welcome, Guest
Please Login or Register.    Lost Password?
Drop down menu not visible over flash
(1 viewing) 1 Guest
Go to bottom
TOPIC: Drop down menu not visible over flash
#811
anoo35 ()
User Offline
Drop down menu not visible over flash 7 Months, 3 Weeks ago  
I have a drop down menu over the flash file and it is not visible on any browsers on a PC. I did read some of the forums where you have replied to use wmode=transparent. The problem is that my index.php does not have place in the tags where these parameters can be placed.

I have attached the index.php to this file. Please check and let me konw the solution.
 
Logged Logged  
  The administrator has disabled public write access.
#812
DART ()
User Offline
Re:Drop down menu not visible over flash 7 Months, 3 Weeks ago  
You'll have to edit the index.php file of the random flash module which is found in the modules/modj15randomflash
 
Logged Logged  
  The administrator has disabled public write access.
#813
anoo35 ()
User Offline
Re:Drop down menu not visible over flash 7 Months, 3 Weeks ago  
I am inserting the modified code. Please can you check to see if this is correct. Since it is php I am not sure. Modified line is in red.

<?php
/// $Id: mod_random_flash.php, v1.0 June 2007 DART Creations Exp $
/**
* Joomla 1.5 Random Flash Image
* @ package Joomla
* @ joomla Open Source is Free Software
* @ Released under GNU/GPL License : www.gnu.org/copyleft/gpl.html
* @ Author : DART Creations
* @ version $Revision: 1.0 $
**/

defined( '_JEXEC' ) or die( 'Go Away' );

$flashfiles = intval($params->get( 'flashfiles' ));
$flashbase = $params->get( 'flashbase' );
$quality = $params->get( 'quality');
$background = $params->get( 'background');
$width = $params->get( 'width' );
$height = $params->get( 'height' );
$link = $params->get( 'link','' );

$top = rand (1,$flashfiles);


$content = <<<EOD

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="fpdownload.macromedia.com/pub/shockwave/...ersion=7,0,0,0"
width="$width" height="$height" id="g1">
<param name="movie" value="$flashbase/$top.swf"/>
<param name="loop" value="true"/>
<param name="quality" value="$quality"/>
<param name="bgcolor" value="$background"/>
<param name="wmode" value="transparent"/>
<embed type="application/x-shockwave-flash" width="$width" height="$height" src="$flashbase/$top.swf"></embed>
</object>
EOD;
if ($link)
{
$content .= "<a href=\"www.dart-creations.com\" style=\"font-size:1px;display:none;\">Joomla Random Flash Module by DART Creations</a>";
}
return $content;
?>
 
Logged Logged  
  The administrator has disabled public write access.
#814
DART ()
User Offline
Re:Drop down menu not visible over flash 7 Months, 3 Weeks ago  
Looks ok
 
Logged Logged  
  The administrator has disabled public write access.
#816
anoo35 ()
User Offline
Re:Drop down menu not visible over flash 7 Months, 3 Weeks ago  
Actually I had to add wmode=transparent even in the embed code like this

<?php
/// $Id: mod_random_flash.php, v1.0 June 2007 DART Creations Exp $
/**
* Joomla 1.5 Random Flash Image
* @ package Joomla
* @ joomla Open Source is Free Software
* @ Released under GNU/GPL License : www.gnu.org/copyleft/gpl.html
* @ Author : DART Creations
* @ version $Revision: 1.0 $
**/

defined( '_JEXEC' ) or die( 'Go Away' );

$flashfiles = intval($params->get( 'flashfiles' ));
$flashbase = $params->get( 'flashbase' );
$quality = $params->get( 'quality');
$background = $params->get( 'background');
$width = $params->get( 'width' );
$height = $params->get( 'height' );
$link = $params->get( 'link','' );

$top = rand (1,$flashfiles);


$content = <<<EOD

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="fpdownload.macromedia.com/pub/shockwave/...ersion=7,0,0,0"
width="$width" height="$height" id="g1" >
<param name="movie" value="$flashbase/$top.swf"/>
<param name="loop" value="true"/>
<param name="quality" value="$quality"/>
<param name="bgcolor" value="$background"/>
<param name="wmode" value="transparent"/>
<embed type="application/x-shockwave-flash" width="$width" height="$height" src="$flashbase/$top.swf" wmode="transparent"></embed>
</object>
EOD;
if ($link)
{
$content .= "<a href=\"www.dart-creations.com\" style=\"font-size:1px;display:none;\">Joomla Random Flash Module by DART Creations</a>";
}
return $content;
?>
 
Logged Logged  
  The administrator has disabled public write access.
#818
DART ()
User Offline
Re:Drop down menu not visible over flash 7 Months, 2 Weeks ago  
Yes, I was going to suggest that too, but glad you sorted it out.
 
Logged Logged  
  The administrator has disabled public write access.
Go to top

Buy us a beer!

If we've helped you, consider buying a beer €3. It will inspire us to keep on giving! Cheers!

Sponsors

Other Resources

Registry Cleaner

Login Form






Lost Password?
No account yet? Register

Generated in 1.65683 Seconds