; Auto hotkey script Trackingnumber.AHK ; Written by Rob van den Akker ; http://www.robsprotips.com ; http://robsprotips.blogspot.com ; http://www.youtube.com/robsprotips ; The use of this script is illustrated in the YouTube episode 3 ; (Episode one gives the background of using tracking numbers) #f8:: ; Windows + F8 Copies selected text and runs search { Send, ^c Run, search-ms:query=%clipboard%& return } :*:tn:: ; Generates the tracking number based on date and time { FormatTime, CurrentDateTime,, yMdhm Send %CurrentDateTime% return }