Jump to content

changing the start button text


 Share

Recommended Posts

i found the source code on the forums once, about a month ago, but i lost it, was wanting to change the text up for my personal amusement and accidentally deleted the .au3 a few weeks ago before i even considered changing the message it displays. i have the .exe file, but not the .au3 file and i refuse to upload a .exe as some people might think it's a virus and i dont wish to scare people. if anybody knows the link to the thread containing the code, i would appreciate it. or if you have the code, that would be helpful too.

Many Thanks,

Norsestar

Education: Francis Tuttle Technology Center adult full-time studentCourse of study: Network TechnologyCurrent Course: Microsoft Windows Server 2003, Enterprise EditionCompleted Courses: CompTIA A+ Hardware and Software, Windows XP Professional, Microsoft Office 2003, Desktop Support and Troubleshooting, and CompTIA Network+Remaining Courses: Linux Administration, Copper Cabling, Microsoft Windows Server 2003, Enterprise EditionAchievements: @17 years old, scored 98th percentile U.S. in Algebra 2 and Advanced Chemistry. [i.e. Ranked top 2% in the nation of High School students]

Link to comment
Share on other sites

#NoTrayIcon
AutoItSetOption("WinTitleMatchMode", 4)

HotKeySet("{ESC}", "ExitScript")

For $i = 0 To 43200
    If @HOUR <= 11 Then
        $Hour = @HOUR
    ElseIf @HOUR > 12 Then
        $Hour = String(@HOUR - 12)
    ElseIf @HOUR = 12 Then
        $Hour = String(@HOUR)
    ElseIf @HOUR = 00 Then
        $Hour = "12" 
    EndIf

    $Time = $Hour & ":" & @MIN

    ControlSetText("classname=Shell_TrayWnd", "", "Button1", $Time)
    Sleep(30 * 1000)
Next

Func ExitScript()
    Exit
EndFunc   ;==>ExitScript

Exit

8)

NEWHeader1.png

Link to comment
Share on other sites

  • Moderators

i think justinreno made one search for it.

Brilliant :P

@OP

http://www.autoitscript.com/forum/index.php?showtopic=30838

Was that it?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...