MessageBoxLockScreen

Something you want to see in a LiveCode product? Want a new forum set up for a specific topic? Talk about it here.

Moderator: Klaus

Post Reply
dunbarx
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 10305
Joined: Wed May 06, 2009 2:28 pm

MessageBoxLockScreen

Post by dunbarx » Fri Mar 30, 2012 3:53 pm

This came up in the Mac OS area.

In HC, locking the screen did not lock the message box. In other words, with:

Code: Select all

on mouseUp
     set lockscreen to true
      repeat with a = 1 to 100
       put a
      wait 1
      end repeat
end mouseUp
One could watch the counting in msg. In LC, however consistently it now reads, one cannot. This was a very useful feature when tracking things in a running script, especially in loops. You did not see, or waste the time, in navigating to other cards, say, but could still monitor the state of certain processes.

How about a "meesageBoxLockScreen" property?

Craig Newman

Maxiogee
Posts: 38
Joined: Thu May 05, 2011 5:45 pm

Re: MessageBoxLockScreen

Post by Maxiogee » Fri Mar 30, 2012 8:23 pm

dunbarx wrote:This came up in the Mac OS area.
As the person who brought it up, I second this request.
I like to see the progress of a process - particularly one which involves either a lot of to-ing and fro-ing between a large number of cards, or the creation of a lot of new cards.
The ability of HC's message box to report on progress was a boon which I didn't appreciate until LC showed its lack.

Tony.

Post Reply