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!

FWMX Popups not displaying in DWMX

Status
Not open for further replies.

thebear98

Programmer
Sep 12, 2002
1
US
Hi,
I just upgraded to Studio MX and am not able to display my FW4->FWMX modified popups in DWMX.
I have confirmed that the mm_menus.js file is in the same directory as the htm file exported by FWMX.
The htm file displays the static graphics for the nav bar but doesn't display the popups.
What am I doing wrong?
Thx in Advance,
Barry Prentiss



Referring URL 1:
 
When running your page, I got the following JavaScirpt Error: "icontainer not defined".

Looking at Lines: 105 and 321 in mm_menu.js....

105: for (var i=0; icontainer.menus.length; i++, countMenus++) {

It should *probably* read like this:
105: for (var i=0; i<container.menus.length; i++, countMenus++) {

Same probelm with Line 321.

Don't know if this will fix the whole thing or not, but it's a step in the right direction. Hope this helps.
Ciao, K----------------
&quot;If you were supposed to understand it, we wouldn't call it code&quot; - FedEx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top