Getting desperate with loops/repeats

Frank Leahy frank at backtalk.com
Fri Mar 19 12:37:19 EST 2004


On Friday, March 19, 2004, at 05:00  PM, 
use-revolution-request at lists.runrev.com wrote:

> From: Richard Gaskin <ambassador at fourthworld.com>
> Subject: Re: Getting desperate with loops/repeats
> To: How to use Revolution <use-revolution at lists.runrev.com>
> Message-ID: <405B26B7.3090803 at fourthworld.com>
> Content-Type: text/plain; charset=us-ascii; format=flowed
>
> A.C.T. wrote:
>
>> Is there ANY WAY to simply send a break signal to a running script
>> inside the IDE?
>
> Cmd-"." on Mac, or Ctrl-"." on Win
>
>

And be sure to set the cantAbort to false.

I use the following routine to set the cantAbort properly  --  I call 
this inside every stack's preOpenStack handler.

on preOpenStackCommon
   if the environment is "development" then
     set the cantAbort of this stack to false
   else
     set the cantAbort of this stack to true
   end if
end preOpenStackCommon

-- Frank



More information about the use-livecode mailing list