|
|
![]() |
|
|
Top | #1 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
This script can completly replace the current tray clock on the right hand side of your start menu bar by replacing the 'start' text with the current time. To access the date/time menu press CTRL+ALT+D, to exit the script press CTRL+ALT+X. The source is included. - BUGS - * Some sizing issues regarding tool bars, and menu resizing still exist * Button does not refresh as fast as it could, CPU load goes through the roof otherwise (any help on these would be great!) |
|
|
|
|
|
Top | #2 |
|
I may actually be insane.
Joined: March 2002
Location: Midlands, England
Posts: 15,800
Reputation: 2877
Power: 307 |
Very nice
|
|
|
|
|
|
Top | #3 |
|
Debiant by way of Ubuntu
Joined: August 2002
Location: London, UK
Posts: 3,763
Blog Entries: 5
Reputation: 1390
Power: 166 |
Originally Posted by chaos945
Errrr looked at the source - seems to be CTRL+ALT+X in the version you shipped!
Works though, I am using it at the moment.... but I have to say this should be a beta - it uses too much resource for what it is doing and also seems to send Explorer on a mission to use your CPU more than it ought. Needs reworking, but still - does what you wanted, so well done! [EDIT] Although I left it running for a while it dropped out a minute or so ago without any CTR+ALT keystrokes not sure what may have caused it - guess this is something that needs implementing a slightly different way ideally, like the guy did it in AlphaV - that did not take resource and seemed to do the job OK, don't suppose he got back to you from your email?[/EDIT]
|
|
|
|
|
|
Top | #4 |
|
Debiant by way of Ubuntu
Joined: August 2002
Location: London, UK
Posts: 3,763
Blog Entries: 5
Reputation: 1390
Power: 166 |
oh and one other thing I noticed - you don't check if more than one copy of the script is running... this is not hard to do, in fact technique is covered in FAQs on AutoIt and goes a bit like this:-
; Place at the top of your script $g_szVersion = "My Script 1.1" If WinExists($g_szVersion) Then Exit ; It's already running AutoItWinSetTitle($g_szVersion) ; Rest of your script goes here And if you want to reduce the script to manageable resource hogging and only need to have the time updated once a minute - just add a sleep(6000) to the main function.... That's what I did
|
|
|
|
|
|
Top | #5 |
|
OSNN Senior Addict
Joined: October 2002
Posts: 413
Reputation: 20
Power: 118 |
is it compatiable with things like visual styles bcoz i dont use stand windows theme
|
|
|
|
|
|
Top | #6 |
|
Debiant by way of Ubuntu
Joined: August 2002
Location: London, UK
Posts: 3,763
Blog Entries: 5
Reputation: 1390
Power: 166 |
Originally Posted by forcer
it is readily adaptable - here's the version I adapted to not hog resources, show only hh:mm (not secs) and to only run one copy - If you want to I do not thnk you'd have trouble running it, main thing is do you change size/placement of your start button I guess? Why not try it and see?
|
|
|
|
|
|
Top | #7 |
|
ho3 ho3 ho3
Joined: March 2004
Location: Scotland
Posts: 1,111
Reputation: 1032
Power: 118 |
Seems cool.
Got any ideas for other features besides that. How about having a pin-menu item that renames itsself to be the time. Not sure but it might be less on the CPU. No real clue just thinking aloud LOL
|
|
|
|
|
|
Top | #8 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
Originally Posted by Mainframeguy
Nice job, this is definitely beta yes, revision version we were sitting at was 0.52.
|
|
|
|
|
|
Top | #9 |
|
OSNN Proxy
Joined: January 2004
Location: Kings Hill, West Malling, Kent, England.
Posts: 3,330
Reputation: 1020
Power: 141 |
odd it is 5 minutes incorrect. Notification clock shows 17:48 Start clock shows 5:43
|
|
|
|
|
|
Top | #10 |
|
Debiant by way of Ubuntu
Joined: August 2002
Location: London, UK
Posts: 3,763
Blog Entries: 5
Reputation: 1390
Power: 166 |
Originally Posted by Lee
OOOPpps - forgot to compile after testing something - let me revisit my attachment (assuming I can edit)!!! If you look at the source you will see it exactly....
(Just testing really - to see if anyone used it.... )[EDIT] upload edit worked - should be right now if you wanted it without compiling source etc. [/EDIT] |
|
|
|
|
|
Top | #11 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
Need a few more pixels for the text, some gets cut off.
Also why the AdLibEnable("ResizBtn", 10000) when it is sleeping for a long time anyways. Check out this new source, the pixels are fixed to show all hours properly as well as a tad bit faster refresh without hogging too much memory. Changes: Code:
AdLibEnable("ResizBtn", 0)
Sleep(6000)
ControlMove("classname=Shell_TrayWnd", "", "Button1", -1, -1, 140)
ControlMove("classname=Shell_TrayWnd", "", "ReBarWindow321", 141, 0)
|
|
|
|
|
|
Top | #12 |
|
The Last High
Joined: December 2001
Location: London
Posts: 18,506
Blog Entries: 51
Reputation: 3652
Power: 346 |
Give it a version number and I can post it (lol)
Also can you do a slightly larger screenshot, quarter of the desktop style
|
|
|
|
|
|
Top | #13 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
Okay then lets agree on the naming convensions, how about 1.01a for my last build, the second revision after the official one.
For anyone making their own builds 1.xxX being xx is the build revision and X a letter of your choice. |
|
|
|
|
|
Top | #14 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
My latest revision 1.02, it is in the source, everyone making revisions just change it there please.
Code:
; Revision 1.02
|
|
|
|
|
|
Top | #15 |
|
OSNN One Post Wonder
Joined: January 2004
Posts: 1
Reputation: 0
Power: 0 |
I wanted to restore the start button when exiting.
here is my au3 file with the changes. If you like it then I will let you compile to release it. |
|
|
|
|
|
Top | #16 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
- Revision 1.03 -
* restores 'start' button on exit |
|
|
|
|
|
Top | #17 |
|
Chamone M*tha Fu*ka
Joined: May 2002
Posts: 288
Reputation: 10
Power: 121 |
Wicked!!! Best Clock I've seen! Am using it now and going to tell everyone to use it!!!
|
|
|
|
|
|
Top | #18 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
There are some pretty significant revisions this time round. I am quite pleased with myself for getting the time delay stuff all fixed up!
- CHANGES - * fixed refresh when starting the script * fixed refresh issues when adjusting the menu bar * cleaned up the code * minor graphical changes * fixed time delay issues!!! * resolves memory issues * time consistency * added dialog for running more than one instance of the script - BUGS - * taskbar is not adjusting properly near the end http://www.geocities.com/chaos945/Fi...Clock_1.04.zip |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| CPU-Z 1.32.1 released | lkyng | Windows Desktop Systems | 0 | March 4th, 2006 10:12pm |
| StartClock | chaos945 | Windows Desktop Systems | 59 | December 1st, 2005 7:56am |
| MSN Plus v3.20.100 Released !! | PseudoKiller | Windows Desktop Systems | 13 | September 21st, 2004 11:21pm |
| New Far-Cry map released | Sazar | PC Gaming | 9 | March 5th, 2004 7:54pm |