topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 11:12 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


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]