Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Wait/Pause/Delay Function???

New Here ,
Jul 28, 2006 Jul 28, 2006
We have built a screen-scrape process using CFscript (CF 5.0) calling a host emulator named HOSTFRONT (by Farabi/Seagull) and are having an issue with Coldfusion processing faster than green-screens can be transitioned. Is there a command to wait/pause/delay in CFscript to be sure that the requested screen has been returned before further execution of CFscript coding?
5.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jul 28, 2006 Jul 28, 2006
Adopted from http://www.petefreitag.com/item/85.cfm

<cfscript>
thread = CreateObject("java","java.lang.Thread");
thread.sleep(5000); // CF will now sleep for 5 seconds
</cfscript>

GAT wrote:
> We have built a screen-scrape process using CFscript (CF 5.0) calling a host
> emulator named HOSTFRONT (by Farabi/Seagull) and are having an issue with
> Coldfusion processing faster than green-screens can be transitioned. Is there
> a command to wait/pause/delay in CFscript to be sure that the requested screen
> has been returned before further execution of CFscript coding?
>
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 28, 2006 Jul 28, 2006
LATEST
Thank you.........we'll implement this.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources