Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java applet covering my pop-up menu??

Status
Not open for further replies.

sknyppy

Programmer
Joined
May 14, 1999
Messages
137
Location
US
Are there any solutions to prevent java applets from showing on top of Fireworks pop-up menus?

Thanks,
Dave
 
i need to see the code or a url so i can understand what your are asking

[afro] yup im a star whore
 
try giving the java applet a z-index of 0 and the popup for information give it a z-indx of 1 other then that just move the applet down a bit I didnt see anything wrong with the code.
[afro] yup im a star whore
 
Where do I insert the z-index parameter?

----

<APPLET CODE=RiadaHeadline.class ARCHIVE=RiadaHeadline.jar WIDTH=250 HEIGHT=139 >
<PARAM NAME=cabbase VALUE=&quot;RiadaHeadline.cab&quot;>
<PARAM NAME=name VALUE=&quot;MBCC Headline&quot;>
<PARAM NAME=Copyright VALUE=&quot;RiadaHeadline Copyright (c) 1997-99, Riada International Pty. Ltd. (<PARAM NAME=SerialNumber VALUE=&quot;0051-1301-0723-KING&quot;>
<PARAM NAME=GenVersion VALUE=&quot;1.13.5&quot;>
<PARAM NAME=Reg VALUE=245236>
<PARAM NAME=Script0 VALUE=&quot;+7 highlightColor 0x800000 ;7 bgColor 0x000000 ;7 bgImage 0 ;7 borderStyle 1 ;7 borderSize 1 ;7 borderTopColor 0xC8C8C8 ;7 borderMidColor 0x000000 ;7 frameSize 1 ;7 scrollButtons 1 ;7 scrollColor 0x8+&quot;>
<PARAM NAME=Script1 VALUE=&quot;+00000 ;7 scrollSize 6 ;7 scrollUpX 234 ;7 scrollUpY 119 ;7 scrollDownX 234 ;7 scrollDownY 128 ;50 0 0 15 '/press.txt' 12 {1 '/pressreleases/pressreleases.cfm' '+&quot;>
<PARAM NAME=Script2 VALUE=&quot;+_self'; } 13 {5 0 'Read More'; } ; 51;+&quot;>
<PARAM NAME=Images0 VALUE=&quot;+/images/tale.jpg+&quot;>
<BLOCKQUOTE>
<HR>
Your browser is not Java capable or Java has been disabled.
<HR>
</BLOCKQUOTE>
</APPLET>

--

Thanks Again,
Dave
 
make 2 css for it and under z index give the applet a z index of 0 then apply it to the applet...then make one for the popup and make it a zindex of 1 and apply it to the menu

[afro] yup im a star whore
 
Can u give me an example of how to do that?
Here is my menu code and my applet code....

Thanks Again! Dave

<style>
#MEN {z-index: 1;}
#APP {z-index: 0;}
</style>
<script>
function mmLoadMenus() {
window.mm_menu_0718092521_4 = new Menu(&quot;root&quot;,152,30,&quot;Verdana, Arial, Helvetica, sans-serif&quot;,20,&quot;#ffffff&quot;,&quot;#ffffcc&quot;,&quot;#454b3f&quot;,&quot;#454b3f&quot;,&quot;left&quot;,&quot;middle&quot;,0,0,1000,-5,7,true,true,true,4,false,false);
mm_menu_0718092521_4.id='MEN';
mm_menu_0718092521_4.addMenuItem(&quot;Area&nbsp;Links&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Driving&nbsp;Directions&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Hotel&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Location&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Newsletter&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Policies&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Press&nbsp;Releases&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Transportation&quot;);
mm_menu_0718092521_4.addMenuItem(&quot;Whaling&nbsp;Wall&quot;);
mm_menu_0718092521_4.fontWeight=&quot;bold&quot;;
mm_menu_0718092521_4.hideOnMouseOut=true;
mm_menu_0718092521_4.menuBorder=0;
mm_menu_0718092521_4.menuLiteBgColor='#454b3f';
mm_menu_0718092521_4.menuBorderBgColor='#454b3f';
mm_menu_0718092521_4.bgColor='#454b3f';
mm_menu_0718092521_4.writeMenus();
} // mmLoadMenus()
</script>

<APPLET CODE=RiadaHeadline.class ARCHIVE=RiadaHeadline.jar WIDTH=250 HEIGHT=139 id=&quot;APP&quot;>
<PARAM NAME=cabbase VALUE=&quot;RiadaHeadline.cab&quot;>
<PARAM NAME=name VALUE=&quot;MBCC Headline&quot;>
<PARAM NAME=Copyright VALUE=&quot;RiadaHeadline Copyright (c) 1997-99, Riada International Pty. Ltd. (<PARAM NAME=SerialNumber VALUE=&quot;0051-1301-0723-KING&quot;>
<PARAM NAME=GenVersion VALUE=&quot;1.13.5&quot;>
<PARAM NAME=Reg VALUE=245236>
<PARAM NAME=Script0 VALUE=&quot;+7 highlightColor 0x800000 ;7 bgColor 0x000000 ;7 bgImage 0 ;7 borderStyle 1 ;7 borderSize 1 ;7 borderTopColor 0xC8C8C8 ;7 borderMidColor 0x000000 ;7 frameSize 1 ;7 scrollButtons 1 ;7 scrollColor 0x8+&quot;>
<PARAM NAME=Script1 VALUE=&quot;+00000 ;7 scrollSize 6 ;7 scrollUpX 234 ;7 scrollUpY 119 ;7 scrollDownX 234 ;7 scrollDownY 128 ;50 0 0 15 '/press.txt' 12 {1 '/pressreleases/pressreleases.cfm' '+&quot;>
<PARAM NAME=Script2 VALUE=&quot;+_self'; } 13 {5 0 'Read More'; } ; 51;+&quot;>
<PARAM NAME=Images0 VALUE=&quot;+/images/tale.jpg+&quot;>
</APPLET>
 
sknyppy,

hi,i got the same problem as well.how u fix it? seems that your website is working fine now.awaiting for your reply.thanks.

Best regards,
cK
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top