Messages - gmoises [ switch to compact view ]

Pages: [1]
1
N.A.N.Y. 2014 / Sugestion
« on: May 21, 2018, 06:02 PM »
 Great app, I have it running for about a month and It works great.

I would like to make suggestion:
A way of having an image folder for some time period and another for the rest of the 24 hours
It would be useful for day time and another for night. Or one for home and another for work, or school.

Thank you for this app.

2
AutoHotKey code:

Code: Autohotkey [Select]
  1. SetWorkingDir %A_ScriptDir%
  2.  
  3. Thread, interrupt, 0
  4. SetTimer, Reloj, 60000
  5.  
  6. Reloj:
  7.         If ConnectedToInternet()
  8.         {
  9.                 Menu, Tray, Icon, IEframe.dll, 40
  10.                 Menu, tray, tip, Connected
  11.         }
  12.         Else
  13.         {
  14.                 Menu, Tray, Icon, IEframe.dll, 41
  15.                 Menu, tray, tip, Disconnected
  16.         }
  17. Return
  18.  
  19. ConnectedToInternet(flag=0x40) {
  20.    Return DllCall("Wininet.dll\InternetGetConnectedState", "Str", flag,"Int",0)
  21. }

Pages: [1]
Go to full version