1) axonatorGroup: Members Posts: 2Joined: 19 May 2006Location: IP: 193.252.--.--
Posted:
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 TurnbullGroup: Moderators Posts: 4042Joined: 7 Dec 2003Location: New ZealandIP: 203.173.--.--
Posted:
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) axonatorGroup: Members Posts: 2Joined: 19 May 2006Location: IP: 193.252.--.--
Posted:
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 TurnbullGroup: Moderators Posts: 4042Joined: 7 Dec 2003Location: New ZealandIP: 128.250.--.--