- Create Account

Problem with Laptop

Forums > Cascading Popup Menus: Feedback > Problem with Laptop
Author
Message

1) axonator Group: Members
Posts: 2 Joined: 19 May 2006 Location: IP: 193.252.--.--
Hi

I have a problem with some laptop about the display of Cascading PopUp Menu.
The text on mouseout can't be read.

It append only with IE6, not with Firefox 1.5.0.3,1.5.0.2, or 1.5.0.1
I have tested with Windows XP SP2 only.

I don't have this problem with recent laptop.

Do you have any idea ?

Thank  you

2) Angus Turnbull Group: Moderators
Posts: 4042 Joined: 7 Dec 2003 Location: New Zealand IP: 203.173.--.--
Does this happen with the default script, or your customised implementation? If it's your copy, do you have a link to the page in question?

I have not experienced this with IE6, perhaps check if you have any unusual plugins/BHOs installed?

- Angus.

3) axonator Group: Members
Posts: 2 Joined: 19 May 2006 Location: IP: 193.252.--.--
Thanks for your answer.

We found the problem :

When  we call this function,

window.ItemStyle = function()
{
 // Like the other constructors, this passes a list of property names that correspond to the list
 // of arguments.
 var names = ['len', 'spacing', 'popInd',  'popPos', 'pad', 'outCol', 'overCol',  'outClass',
  'overClass', 'outBorder', 'overBorder',  'outAlpha', 'overAlpha', 'normCursor', 'nullCursor'];
addProps(this, arguments, names, true);
}
 
We  put "100" in parameter "outAlpha", and we modify it to "null".

BEFORE  :
var subM = new ItemStyle(2, 1, '', 2, 2, '', '#E1AF12', 'buttonText',  'buttonHover', '', '', 100, 100, 'hand', 'default');

AFTER :
var subM = new ItemStyle(2, 1, '', 2, 2, '', '#E1AF12', 'buttonText',  'buttonHover', '', '', null, 100, 'hand', 'default');

Thank you for this great work !

4) Angus Turnbull Group: Moderators
Posts: 4042 Joined: 7 Dec 2003 Location: New Zealand IP: 128.250.--.--
Glad you fixed it :).

Cheers  - Angus.

Post a Reply:

You are not logged in, and will be posting anonymously as a guest. If you want to post using an account, please login at the top of this page.