chevell Posted November 4, 2004 Posted November 4, 2004 I have a script that runs every three minutes to check for changes in the data. I want to be able to run a specific script at 7 am everyday triggered by this script. I was using If Status(currenttime) >= "7:00:00 AM" perform script "a". Unfortunately, it does absolutely nothing. I had it checking to see if it was past 7:03 so it didn't run all day and I took that out for troubleshooting. It had no effect. Still nothing. I'm using the status(currendate) to run a script on the first of every month and on mondays. For some reason I can't do a certain time. Any help would be greatly appreciated. Thanks!
Reed Posted November 4, 2004 Posted November 4, 2004 In filemaker 6, use the TextToTime("7:00:00 AM") function. In version 7 it's been renamed GetAtTime()
chevell Posted November 4, 2004 Author Posted November 4, 2004 OK, I follow you, but where and how do I use that? Thanks!
Reed Posted November 4, 2004 Posted November 4, 2004 If Status(currenttime) >= TextToTime("7:00:00 AM")
-Queue- Posted November 4, 2004 Posted November 4, 2004 Or even better, Status(CurrentTime) >= Time( 7, 0, 0 ).
Recommended Posts
This topic is 7327 days old. Please don't post here. Open a new topic instead.
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