What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » testing menu script

Pages: (2): « First « 1 [ 2 ] Last »
testing menu script
Author: Message:
lopardo
Veteran Member
*****


Posts: 1395
Reputation: 33
37 / Male / Flag
Joined: Nov 2002
Status: Away
O.P. RE: testing menu script
quote:
Originally posted by WDZ
Fade effect? No, I don't see that. Everything pops up/changes immediately after I move my mouse over it, nice and fast.
Opera doesn't support transparency, so it's the correct behaviour.

quote:
Originally posted by Sean
Okay let me ask this. It sounds dodgy but. Hmm, when I hit a button on the menu like Test and move my curser off the drop down but its soposed to fade away? If so it dont. It dont fade it erm just goes away in 1 sec. not fading.
When you move the mouse over the link, the menu will just show up, when you move the pointer off of the link or the menu, then it should fade out (it's fast, though).
[Image: userbar452797dd.gif]
08-29-2004 11:39 PM
Profile PM Find Quote Report
Choli
Elite Member
*****

Avatar
Choli

Posts: 4714
Reputation: 42
42 / Male / Flag
Joined: Jan 2003
RE: testing menu script
quote:
Originally posted by lopardo
What computer do you have? I don't see that here.
Pentium II 274 MHz, 196 Mb RAM, WinXP Pro Sp1.
Yes, I know, it's slow :P
quote:
Originally posted by lopardo
Avant uses IE's engine, right?
yep.
Messenger Plus! en espaņol:
<< http://www.msgpluslive.es/ >>
<< http://foro.msgpluslive.es/ >>
:plus4:
08-30-2004 09:04 PM
Profile PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: testing menu script
I don't get the fade effect either :S
Good script though (Y)
[Image: spartaafk.png]
08-30-2004 09:20 PM
Profile PM Web Find Quote Report
lopardo
Veteran Member
*****


Posts: 1395
Reputation: 33
37 / Male / Flag
Joined: Nov 2002
Status: Away
O.P. RE: testing menu script
quote:
Originally posted by Choli
Pentium II 274 MHz, 196 Mb RAM, WinXP Pro Sp1.
Yes, I know, it's slow
Maybe that's why :) If it uses IE's engine then it should work fine.

quote:
Originally posted by raceprouk
I don't get the fade effect either
What browser are you using? You'll only see the fade effect in IE and Mozilla.
[Image: userbar452797dd.gif]
08-30-2004 11:44 PM
Profile PM Find Quote Report
RebelSean
Veteran Member
*****

Avatar
Microsoft Evangelist

Posts: 2602
Reputation: 59
33 / Male / Flag
Joined: May 2004
Status: Away
RE: testing menu script
It don't seem like it fades tbh. It's like SUPER fast, maby you can slow it down like a lil bit more then it be perfect!
I'm on: Twitter, Facebook, and Neowin
08-30-2004 11:46 PM
Profile PM Web Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: testing menu script
quote:
Originally posted by lopardo
quote:
Originally posted by raceprouk
I don't get the fade effect either
What browser are you using? You'll only see the fade effect in IE and Mozilla.
Mozilla 1.7.2
[Image: spartaafk.png]
08-31-2004 09:16 AM
Profile PM Web Find Quote Report
Yousef
Full Member
***

Avatar
(previously known as Juzzi)

Posts: 487
Reputation: 19
35 / Male / Flag
Joined: Jul 2004
RE: testing menu script
In netscape it kinda 'flickers away' just as in FF
in IE it's working nice :)
Developer of BuddyFuse: Google Talk, Twitter and Hyves in Windows Live Messenger
Ex-Microsoft intern and Windows Live Developer MVP in 2007 & 2008
08-31-2004 10:33 AM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: testing menu script
I don't see any fading either in any browser...

EDIT: correction... after closing opening many times, I indeed see some "fading", but it is extremely fast, hence it is almost just popping up/away in 1 go... This is maybe also the reason for the flickering you see? Too fast fading?

If the delay in setTimeout("fadeOutMenu()",10) is set to 100, you can see it fading. Maybe you tested it at a slow PC which can't handle 10ms and realy does it in 100ms? Experiment with higher values and see if the menu hides as fast. If it does then use the higher value rather then the lower value. As fast PC's can handle those lower values, the speed will not be the same on both PC's... If you know what I mean....

On my PC a value of 30 to 40 gives a nice result... (P4 2.66Mhz)





quote:
Originally posted by lopardo
BTW, I noticed that it flickers in Mozilla Firefox , anyone else? The weird thing is that, if I put an alert in the loop, it works fine...
yes, well, it doesn't flicker each time. Only the first time menu.style.MozOpacity is set, the menu flickers off/on once... I dunno why, but after some tests (not in the loop, but outside the loop), it seems that is has something todo with the focus I assume... I changed the script to this to test:

code:
function hideMenu(UseFade){
  if (MenuInitialized) {
    if (UseFade && (isMSIE || isMozilla)) {
      t = 1000
      setTimeout("menu.style.MozOpacity = 1",t);
      setTimeout("menu.style.MozOpacity = .9",t+100);
      setTimeout("menu.style.MozOpacity = .8",t+200);
      setTimeout("menu.style.MozOpacity = .7",t+300);
      setTimeout("menu.style.MozOpacity = .6",t+400);
      setTimeout("menu.style.MozOpacity = .5",t+500);
      setTimeout("menu.style.MozOpacity = .4",t+600);
      setTimeout("menu.style.MozOpacity = .3",t+700);
      setTimeout("menu.style.MozOpacity = .2",t+800);
      setTimeout("menu.style.MozOpacity = .1",t+900);
      setTimeout("menu.style.MozOpacity = .0",t+1000);
      // set the focus to something else, a box
      alert('boo');
      //fadeOutMenu();
    } 
    else {
      menu.hide();
    }
  }
}

now, there isn't a flicker at the start... But dodgy enough, if you set  t=2000, the flicker returns....

This post was edited on 08-31-2004 at 11:49 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
08-31-2004 10:41 AM
Profile PM Find Quote Report
Pages: (2): « First « 1 [ 2 ] Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On