Disciples Posted August 30, 2009 Posted August 30, 2009 (edited) Okay, well I am trying to include $time in a send() Here is what it looks like : Func _Start() $time = @hour & ":" & @MIN Send("{enter}") sleep(1000) Send("::: the current time is "$time" :::::") sleep(100) Send("{Enter}") But that doesn't seem to work? Anyone know how to do that? Edited August 30, 2009 by Disciples
aNewLyfe Posted August 30, 2009 Posted August 30, 2009 Okay, well I am trying to include $time in a send() Here is what it looks like : Func _Start() $time = @hour & ":" & @MIN Send("{enter}") sleep(1000) Send("::: the current time is "$time" :::::") sleep(100) Send("{Enter}") But that doesn't seem to work? Anyone know how to do that? Send("::: the current time is " & $time & " :::") will solve your problem. ~ Every Living Thing is a Code Snippet of World Application ~
Disciples Posted August 30, 2009 Author Posted August 30, 2009 Send("::: the current time is " & $time & " :::") will solve your problem.Thankks!It works
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