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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I get text in place of images in fw_menu

Status
Not open for further replies.

ro6er

Programmer
Jul 1, 2003
76
Hi,

This is probably quite simple but I can't figure it out. If any of you are familiar with fw_menu's? I'm editing mine in textpad and I can't seem to get an image to appear insead of text. Here's the code:

window.fw_menu_1 = new Menu("root",200,30,"Arial, Helvetica, sans-serif",11,"#ffffff","#17C4DA","#424D8F","#424D8F");
fw_menu_1.addMenuItem("text here not image","location='somewhere.html'");

Any help would be great.

Thanks,

Roger
 
hi, I haven't used a drop menu in ages, but here is code from a text one I did, hope it helps

Code:
function mmLoadMenus() {
  if (window.mm_menu_1104184009_0) return;
  window.mm_menu_1104184009_0 = new Menu("root",66,16,"Arial, Helvetica, sans-serif",10,"#ffffff","#00ff00","#000000","#000000","left","middle",3,0,1000,-5,7,true,true,true,5,true,true);
  mm_menu_1104184009_0.addMenuItem("Bookstop");
  mm_menu_1104184009_0.addMenuItem("Holidays");
  mm_menu_1104184009_0.addMenuItem("Events");
  mm_menu_1104184009_0.addMenuItem("Forum");
  mm_menu_1104184009_0.addMenuItem("Hot Issues");
  mm_menu_1104184009_0.addMenuItem("Shopping");
  mm_menu_1104184009_0.addMenuItem("Rise");
   mm_menu_1104184009_0.fontWeight="bold";
   mm_menu_1104184009_0.hideOnMouseOut=true;
   mm_menu_1104184009_0.menuBorder=0;
   mm_menu_1104184009_0.menuLiteBgColor='#ffffff';
   mm_menu_1104184009_0.menuBorderBgColor='#ffffff';
   mm_menu_1104184009_0.bgColor='#00ff00';

Sometimes, when my code just won't behave, I take it outside and make it listen to britney spears music, and when it comes back it's really well behaved. I wonder if it's suffering from post tramatic stress syndrome now..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top