akurakkauaaa Posted May 7, 2009 Posted May 7, 2009 exist macro "@hour+min" ?because acctual my pro algorithm...$timeA = 1$timeB = 30 if (@HOUR & @MIN) > ( 22 & 31) and (@HOUR & @MIN) < ($timeA & $timeB)then $time1 = $timeA - @HOUR $time2 = $timeB - @MINTraySetToolTip( $time1 & $time2 ,5,5 )endif...is: my crap: myFileListToArray_AllFiles, SciTE Helper, myImageSearch
blakel Posted May 7, 2009 Posted May 7, 2009 (edited) if (@HOUR & @MIN) > ( 22 & 31) and (@HOUR & @MIN) < ($timeA & $timeB)then if ( (@hour * 60) +@min) > ( (22 * 60) + 31) and .... you may have to use (Number(@hour) * 60) + Number(@min) Note: & concatenates two strings, and will automatically convert other types, such as int, to a string. Edited May 7, 2009 by blakel
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now