box on top of time
#1
Posted 06 July 2012 - 02:17 PM
splashTextOn would work but again if the resolution changes this wont work. I want it always on and always on and by default on top of the time.
#2
Posted 06 July 2012 - 02:32 PM
#NoTrayIcon #include <GUIConstantsEx.au3> Opt("TrayMenuMode", 3) TrayCreateItem("Account: " & @UserName) TrayCreateItem("Hostname: " & @ComputerName) TrayCreateItem("Domain: " & @LogonDomain) TrayCreateItem("Resolution: " & @DesktopWidth & "x" & @DesktopHeight) TrayCreateItem("IP Address: " & @IPAddress1) TrayCreateItem("") $aboutItem = TrayCreateItem("About") TraySetState() TraySetToolTip("Helpdesk Utility") While 1 $msg = TrayGetMsg() Select Case $msg = 0 ContinueLoop Case $msg = $aboutItem MsgBox(64, "About", "Helpdesk Tooltip Utility") EndSelect WEnd
#3
Posted 06 July 2012 - 03:00 PM
#4
Posted 06 July 2012 - 03:15 PM
#5
Posted 06 July 2012 - 03:44 PM
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
#6
Posted 06 July 2012 - 04:52 PM
$icg = "Desktopicg.ico" $tv = RegRead("HKLMSOFTWAREWow6432NodeTeamViewerVersion7", "ClientId") #NoTrayIcon #include <GUIConstantsEx.au3> Opt("TrayMenuMode", 3) TraySetIcon($icg) TrayCreateItem("Account: " & @LogonDomain&""[email="&@UserName"]&@UserName[/email]) TrayCreateItem("Hostname: " & @ComputerName) TrayCreateItem("TeamViewer No. " & $tv) TrayCreateItem("IP Address: " & @IPAddress1) TrayCreateItem("") $aboutItem = TrayCreateItem("About") TraySetState() TraySetToolTip("ICG Support") ToolTip("Account: " & @LogonDomain&""[email="&@UserName"]&@UserName[/email] & @CRLF & "Hostname: " & @ComputerName & @CRLF & "TeamViewer No. " & $tv & @CRLF & "IP Address: " & @IPAddress1,0, 0,"Support Info:") Sleep(1000) While 1 $msg = TrayGetMsg() Select Case $msg = 0 ContinueLoop Case $msg = $aboutItem MsgBox(64, "About", "For Support Please contact 888-823-5975") EndSelect WEnd
I would like for the icon $icg to show up instead of the autoit icon. Also the tooltip does not close.
#7
Posted 06 July 2012 - 05:01 PM
^------>Help File
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
#8
Posted 06 July 2012 - 05:04 PM
$icg = "Desktopicg.ico"
to this:
$icg = @DesktopDir & "icg.ico"
#9
Posted 06 July 2012 - 05:16 PM
#10
Posted 06 July 2012 - 05:30 PM
#11
Posted 06 July 2012 - 05:41 PM
#12
Posted 06 July 2012 - 05:56 PM
thx
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users





