Messages - BigVent [ switch to compact view ]

Pages: prev1 2 3 [4] 5 6 7 8next
16
Post New Requests Here / Re: Flood Alert (As service or tray apps)
« on: August 20, 2013, 04:04 PM »
Try this out & let me know if it was close to what you were thinking.

Note: Right click as I added everything to the tray menu

*Added the doppler radar image(s)*


17
Post New Requests Here / Re: Flood Alert (As service or tray apps)
« on: August 20, 2013, 02:09 PM »
So you want the alert plus that image?

It's possible to add the image & would just need to be worked in.  I'll add that to my list of items to address.



~BigVent

18
Post New Requests Here / Re: Flood Alert (As service or tray apps)
« on: August 20, 2013, 09:50 AM »
Did the program alert you again?   :D

I need to revisit this program & do some work on the GUI & other items.


~BigVent

19


Code: Autohotkey [Select]
  1.  
  2. ;//change hotkey to your desired key
  3. Numpad5::       ;//Number Pad 5 hotkey
  4. {
  5.                
  6.         while GetKeyState("Numpad5")    ;//while Number Pad 5 key is held
  7.         {
  8.                 Traytip, Key Is Held, Your hotkey is being held., ,1
  9.                
  10.                 IfWinExist, Date and Time Properties    ;//Windows clock & date
  11.                         Continue
  12.                 IfWinNotExist, Date and Time Properties
  13.                         run, Timedate.cpl
  14.         }
  15.         Traytip
  16.  
  17.                 WinClose, Date and Time Properties      ;//upon release close the window
  18. }
  19. Return
  20.  
  21. ESC & Numpad5:: ;//esc & Number Pad 5 will exit the script
  22.         Critical
  23.         ExitApp
  24. Return

20
Post New Requests Here / Re: IDEA: AutoMaximize Windows
« on: June 20, 2013, 02:53 PM »
Added functionality so that if your program window opens minimized it handles that as well.


~BigVent

Pages: prev1 2 3 [4] 5 6 7 8next
Go to full version