Definitely!
Sure, here are some! I'd like to...
- be able to resize the notification window.
- be able to temporarily disable the popups (preferably with a hotkey).
- be able to customize fonts and colors.
- see what forum users are online. (*)
- know how you made the sliding transparent popup windows!
Arjen.
(*) Update: I see "Who's online" is in the context menu. Maybe changes in this page can be shown as popups somehow?
-Arjen
Great! I'm very happy that this tool is actually helping ppl. I'm def going to better it and bribe mouser into approving it as an official forum tool!
be able to resize the notification window.
Maybe a good idea to let users to have the option of displaying tiny/small/normal/huge/gigantic window?
be able to temporarily disable the popups (preferably with a hotkey).
I'll add this feature in an hour or so (assuming you dont care very much about hotkey).
Gonna explore hotkey function in the later PRO ver.
be able to customize fonts and colors.
Yes, of course, it's already planned to go into the PRO ver.
see what forum users are online. (*)
(*) Update: I see "Who's online" is in the context menu. Maybe changes in this page can be shown as popups somehow?
Guess it won't be very hard for me to add "see what forum users are online" right now since I used to work on a tiny infamous app of which the sole purpose is to monitor mouser's online/offline status.
The Pro ver might even allows you to custom a watch list of a bunch of ppl to periodically check for their online/offline status and pop up a MSN-like notification window:
"Mouser the Evil Lord is online now! Say hello to him or click here to feed his ego with some DC credits."
Maybe changes in this page can be shown as popups somehow?
I think the viewing of Who's Online area is currently restricted to privileged users only, so there may be some difficulties implementing this feature.
If successfully coded it'll allow you to monitor mouser's almost real-time activity - could be very very fun!!
"Mouser is now posting in the Official Announcements section..." <- what's he up to?
edit:
know how you made the sliding transparent popup windows!
Sure! I'd love to share my code/knowledge. (Also there are quite a few open source pop up notification controls on codeproject.com.)
basically it works like this:
1. Notification window = window placed in the bottom right corner
Window Location:
Me.Left = My.Computer.Screen.WorkingArea.Width - Me.Width
Me.Top = My.Computer.Screen.WorkingArea.Height - Me.Height
2. Slide effect
Create a timer object and let it be that when it ticks (triggers the event) every # of milliseconds, move the window up a few pixels - until it reaches the desired location, which is
Me.Top = My.Computer.Screen.WorkingArea.Height - Me.Height
3. Fade in/out effect
Use Timer + Changing window transparency/opacity
Create a timer object and whenever it ticks,
Me.Opacity +=0.01 (or equally, Me.Opacity = Me.Opacity + 0.01)
(in vb.net, opacity = 1.0 means no transparency and opacity 0 completely transparent)
so every time the timer ticks (like every 30 milliseconds), the window becomes 1% more opaque (fade-in effect)
Plz let me know if you need help with it.