Salvatore Bancheri wrote:
>
> I had posted the message below before but unfortunately I had no luck in
> getting a reply (or perhaps the message was never received); for this
> reason I am posting it again. Thanks in advance to those who will reply.
>
> Sal
>
> =======
> I am preparing tests for my students using metacard. When the students take
> the test, I would like to make sure that they fully concentrate on the test
> and eliminate the possibility that they click on the desktop or that they
> go and open other programs. These are the features that i would like to
> implement and for which I need your advise/help:
>
> 1) Is there a way to open the test in a full screen mode?
I get to say it:
There are usually several ways to support a given activity in MC. Here's
one: You can set the card dimensions to those of the screen:
on openStack
set the rect of this stack to the screenRect
end openStack
If you do it this way, you may find it easiest to put all the controls
into one group and recenter the group after resizing the card:
on resizeStack
set the loc of group "everything" to the screenLoc
pass resizeStack
end resizeStack
Another way would be:
on openStack
set the backdrop to the effective backColor of this stack
set the decorations of this stack to empty
set the loc of this stack to the screenLoc
end openStack
> 2) Is there a way to hide the minimize button, the "x" (closing button).
set the decorations of this stack to empty
> 3) Is there a way to disable the start button in windows while using my
> metacard test.
In the stack script, put:
on rawKeyDown pKeyValue
if pKeyValue <> 65388 then pass rawKeyDown
end rawKeyDown
>
> Many thanks,
>
> Sal
>
> Archives: http://www.mail-archive.com/metacard%40lists.best.com/
> Info: http://www.xworlds.com/metacard/mailinglist.htm
> Please send bug reports to <[EMAIL PROTECTED]>, not this list.
--
Phil Davis
--------------------
days: (503) 986-1215
eves: (503) 557-5656
Archives: http://www.mail-archive.com/metacard%40lists.best.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.