Re: pausing a script

2005-04-15 Thread sp
Can this script be used with cfschedule? Sebastian i use it for a client, and its ROCK solid. :) tw On 4/13/05, Will Tomlinson [EMAIL PROTECTED] wrote: Would Matt's Mail trickler be another option? http://mysecretbase.com/Slowing_Down_CFMail_2004.cfm Will

Re: pausing a script

2005-04-13 Thread Will Tomlinson
Would Matt's Mail trickler be another option? http://mysecretbase.com/Slowing_Down_CFMail_2004.cfm Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: pausing a script

2005-04-13 Thread Tony Weeg
i use it for a client, and its ROCK solid. :) tw On 4/13/05, Will Tomlinson [EMAIL PROTECTED] wrote: Would Matt's Mail trickler be another option? http://mysecretbase.com/Slowing_Down_CFMail_2004.cfm Will ~| Logware

Re: pausing a script

2005-04-13 Thread Nathan Strutz
There's no need for the javacast. You can simply do Thread.sleep(1000*60); -nathan strutz Taco Fleur wrote: cfscript Thread = createObject( java, java.lang.Thread ); Thread.sleep( javaCast( long, 1000*60 )); /cfscript

pausing a script

2005-04-12 Thread sp
Is there a way of pausing a script in CF MX 6? I want to send out 200 emails, wait 60 seconds before executing another cfmail batch of 200. I have got the following code after the cfmail tag both of which are nested in an index loop which has a value from 1 to 12. cfset sec = Second(Now

RE: pausing a script

2005-04-12 Thread Taco Fleur
, 13 April 2005 1:04 PM To: CF-Talk Subject: pausing a script Is there a way of pausing a script in CF MX 6? I want to send out 200 emails, wait 60 seconds before executing another cfmail batch of 200. I have got the following code after the cfmail tag both of which are nested in an index loop

RE: pausing a script

2005-04-12 Thread Jim Davis
-Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 11:04 PM To: CF-Talk Subject: pausing a script Is there a way of pausing a script in CF MX 6? I want to send out 200 emails, wait 60 seconds before executing

Re: pausing a script

2005-04-12 Thread sp
Thanks, that is elegan! cfscript Thread = createObject( java, java.lang.Thread ); Thread.sleep( javaCast( long, 1000*60 )); /cfscript -- Taco Fleur Senior Web Systems Engineer http://www.webassociates.com ~| Find out how

RE: Pausing a script

2002-12-08 Thread Paul Kenney
To: CF-Talk Subject: Pausing a script Does CF have an equivalent of the PHP sleep function. I need to pause s script for a few seconds. Luis ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription

RE: Pausing a script

2002-12-08 Thread Matthew P. Smith
That will work, but will also cause 100% cpu utilization for the duration of the pause, IIRC. -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 4:38 PM To: CF-Talk Subject: RE: Pausing a script I found this code in Ben Forta's book. It seems

Pausing a script

2002-12-06 Thread Luis Lebron
Does CF have an equivalent of the PHP sleep function. I need to pause s script for a few seconds. Luis ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Pausing a script

2002-12-06 Thread Tony Weeg
PROTECTED]] Sent: Friday, December 06, 2002 12:58 PM To: CF-Talk Subject: Pausing a script Does CF have an equivalent of the PHP sleep function. I need to pause s script for a few seconds. Luis ~| Archives: http

Re: Pausing a script

2002-12-06 Thread Randell B Adkins
Are you speaking of a CFSCRIPT for pausing CFScript action or a PAUSE in between processign elements on a CF Page? There is a CF_Sleep or something similar in the Exchange [EMAIL PROTECTED] 12/06/02 12:58PM Does CF have an equivalent of the PHP sleep function. I need to pause s script for a

RE: Pausing a script

2002-12-06 Thread Jim Davis
, 2002 12:58 PM To: CF-Talk Subject: Pausing a script Does CF have an equivalent of the PHP sleep function. I need to pause s script for a few seconds. Luis ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm

RE: Pausing a script

2002-12-06 Thread Luis Lebron
: Pausing a script There's no function, but you can do this easily by setting a time (or using GetTickCount()) and then doing a While this time is less than whatever, keep looping Should work fine. Jim Davis -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Friday