Page 1 of 1

Kiosk Mode

Posted: Thu Apr 15, 2010 3:26 pm
by jwbuzz
I've searched through the forums and can't find much on this. I'm demo'ing revolution as a dev environment for quick projects. Specifically, I'm building a kiosk. I need to be able to do the following for kiosk behavior and can't figure out how to do it in revolution.

I'm on Mac OS 10.6

1. Make the window full screen with no application frame around it. I don't want the grey bar with the maximize, minimize, etc.
2. Make it where the user can't access anything else on the system. I need to keep this app always on top.

Any help or pointers to the right documentation would be much appreciated.

Re: Kiosk Mode

Posted: Thu Apr 15, 2010 4:18 pm
by Klaus
Hi jwbuzz,

do you also have a real name that I can use to address you?
jwbuzz wrote:...
1. Make the window full screen with no application frame around it. I don't want the grey bar with the maximize, minimize, etc.
This is an easy one :)

Code: Select all

on propenstack
  ## No titlebar and close tec. buttons!
  set decorations of this stack to empty

  ## Make the stack/card as big as the monitor
  set the rect of this stack to the screenrect
  ...
end preopenstack
jwbuzz wrote:...
2. Make it where the user can't access anything else on the system...
This is not be possible without an external, sorry.


Best

Klaus

Re: Kiosk Mode

Posted: Thu Apr 15, 2010 4:21 pm
by Klaus
I memorized that there IS indeed such an external and even free! Check this:
http://www.andregarzia.com/libKiosk.html


Best from germany

Klaus

Re: Kiosk Mode

Posted: Thu Apr 15, 2010 4:56 pm
by jwbuzz
Klaus.. thank you very much for the reply. My name is Justin.

I will try out your suggestions.

Re: Kiosk Mode

Posted: Thu Apr 15, 2010 5:08 pm
by jwbuzz
Klaus... where does "on propenstack" go? In the script of my first card?

Re: Kiosk Mode

Posted: Thu Apr 15, 2010 5:16 pm
by Klaus
Hi Justin,
jwbuzz wrote:Klaus... where does "on propenstack" go? In the script of my first card?
Yep (or in the stackscript).

But I always prefer to put it into the script of the first card, since this way substacks do NOT execute this script
if they do not have their own "preopenstack" handler!


Best

Klaus

Re: Kiosk Mode

Posted: Thu Apr 15, 2010 8:18 pm
by jwbuzz
Klaus.. I tested this external and it works great. How do you include (or bundle) it when building a standalone application?

Re: Kiosk Mode

Posted: Fri Apr 16, 2010 3:22 pm
by trevordevore