Kiosk Mode
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Kiosk Mode
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.
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
Hi jwbuzz,
do you also have a real name that I can use to address you?
Best
Klaus
do you also have a real name that I can use to address you?
This is an easy onejwbuzz 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.

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
This is not be possible without an external, sorry.jwbuzz wrote:...
2. Make it where the user can't access anything else on the system...
Best
Klaus
Re: Kiosk Mode
I memorized that there IS indeed such an external and even free! Check this:
http://www.andregarzia.com/libKiosk.html
Best from germany
Klaus
http://www.andregarzia.com/libKiosk.html
Best from germany
Klaus
Re: Kiosk Mode
Klaus.. thank you very much for the reply. My name is Justin.
I will try out your suggestions.
I will try out your suggestions.
Re: Kiosk Mode
Klaus... where does "on propenstack" go? In the script of my first card?
Re: Kiosk Mode
Hi Justin,
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
Yep (or in the stackscript).jwbuzz wrote:Klaus... where does "on propenstack" go? In the script of my first card?
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
Klaus.. I tested this external and it works great. How do you include (or bundle) it when building a standalone application?
-
- VIP Livecode Opensource Backer
- Posts: 1005
- Joined: Sat Apr 08, 2006 3:06 pm
- Contact:
Re: Kiosk Mode
Trevor DeVore
ScreenSteps - https://www.screensteps.com
LiveCode Repos - https://github.com/search?q=user%3Atrevordevore+topic:livecode
LiveCode Builder Repos - https://github.com/search?q=user%3Atrevordevore+topic:livecode-builder
ScreenSteps - https://www.screensteps.com
LiveCode Repos - https://github.com/search?q=user%3Atrevordevore+topic:livecode
LiveCode Builder Repos - https://github.com/search?q=user%3Atrevordevore+topic:livecode-builder