Re: LiveCode external/plugin question

2010-11-04 Thread J. Landman Gay

On 11/3/10 12:43 PM, William de Smet wrote:

@Matthias and Mark: Thanks for your replies!
I was looking for true kiosk mode so Marks advise using IE isn't the
right thing for me.
I need all keys to be blocked. Editing the registry seems the only way
but it needs the computer to reboot.

I need my app on startup to block these keys without rebooting the machine.
After closing the app  the keys need to function again.
Is this even possible?


Have you tried putting in a rawKeyDown handler that doesn't pass the 
message? That should block all keystrokes, and won't affect any other 
apps. You probably will need to add a way to enable the keyboard again 
while you are working on the stack, otherwise you won't be able to type 
anything. Something like this:


on rawKeyDown pKey
  if the environment is development then pass rawKeyDown
end rawKeyDown

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode external/plugin question

2010-11-04 Thread Henk van der Velden
Hi William,

last year I've done a museum project where I had to put pc's into kiosk mode. 
Unfortunately the rawKeyDown approach didn't work since you can't capture key 
combinations like CTRL-ALT-DEL etc. The only way I could find was changing the 
registry. 
On the other hand, I seem to remember that Director offers an option to run 
applications in true kiosk mode. So what you are looking for should be possible 
in some way or another.

Kind regards,
Henk

On Nov 4, 2010, at 18:00 , use-revolution-requ...@lists.runrev.com wrote:

 I was looking for true kiosk mode so Marks advise using IE isn't the
 right thing for me.
 I need all keys to be blocked. Editing the registry seems the only way
 but it needs the computer to reboot.
 
 I need my app on startup to block these keys without rebooting the machine.
 After closing the app  the keys need to function again.
 Is this even possible?
 
 Have you tried putting in a rawKeyDown handler that doesn't pass the 
 message? That should block all keystrokes, and won't affect any other 
 apps. You probably will need to add a way to enable the keyboard again 
 while you are working on the stack, otherwise you won't be able to type 
 anything. Something like this:
 
 on rawKeyDown pKey
   if the environment is development then pass rawKeyDown
 end rawKeyDown

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode external/plugin question

2010-11-04 Thread J. Landman Gay

On 11/4/10 2:57 PM, Henk van der Velden wrote:

Hi William,

last year I've done a museum project where I had to put pc's into
kiosk mode. Unfortunately the rawKeyDown approach didn't work since
you can't capture key combinations like CTRL-ALT-DEL etc.


Yes, you're right, some key combinations fail on Macs too. So rawKeyDown 
won't work.



--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


LiveCode external/plugin question

2010-11-03 Thread William de Smet
Hi there,

I wonder if there is a external/plugin for LiveCode that gives Apps on
Windows a kiosk style/mode?
And I mean true kiosk so ALTF4, CTRLALTDEL and the Windows
Keys are disabled.
Any advise is welcome.

(maybe an idea for a developer and make is a paid external?)

greetings,

William
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode external/plugin question

2010-11-03 Thread Matthias Rebbe
William,

at

http://www.northcode.com/blog.php/2007/07/25/Securing-Windows-For-Use-As-A-Kiosk

you find information how to solve this by modifying the registry. 
I used that for XP some time ago. But i do not know, if this works with Windows 
Vista/7 also.

Maybe this helps.

Regards,

Matthias


Am 03.11.2010 um 13:54 schrieb William de Smet:

 Hi there,
 
 I wonder if there is a external/plugin for LiveCode that gives Apps on
 Windows a kiosk style/mode?
 And I mean true kiosk so ALTF4, CTRLALTDEL and the Windows
 Keys are disabled.
 Any advise is welcome.
 
 (maybe an idea for a developer and make is a paid external?)
 
 greetings,
 
 William
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode external/plugin question

2010-11-03 Thread Mark Schonewille
Hi William,

As an easy alternative to Matthias' solution, you could run your stack as a 
revlet in Internet Explorer and start IE in kiosk mode
http://support.microsoft.com/kb/154780

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce 
Create installers for Mac and Windows on *every* Rev-compatible platform. No 
additional software needed.

On 3 nov 2010, at 14:10, Matthias Rebbe wrote:

 William,
 
 at
 
 http://www.northcode.com/blog.php/2007/07/25/Securing-Windows-For-Use-As-A-Kiosk
 
 you find information how to solve this by modifying the registry. 
 I used that for XP some time ago. But i do not know, if this works with 
 Windows Vista/7 also.
 
 Maybe this helps.
 
 Regards,
 
 Matthias
 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode external/plugin question

2010-11-03 Thread William de Smet
@Matthias and Mark: Thanks for your replies!
I was looking for true kiosk mode so Marks advise using IE isn't the
right thing for me.
I need all keys to be blocked. Editing the registry seems the only way
but it needs the computer to reboot.

I need my app on startup to block these keys without rebooting the machine.
After closing the app  the keys need to function again.
Is this even possible?

Greetings,

William



2010/11/3 Mark Schonewille m.schonewi...@economy-x-talk.com:
 Hi William,

 As an easy alternative to Matthias' solution, you could run your stack as a 
 revlet in Internet Explorer and start IE in kiosk mode
 http://support.microsoft.com/kb/154780

 --
 Best regards,

 Mark Schonewille

 Economy-x-Talk Consulting and Software Engineering
 Homepage: http://economy-x-talk.com
 Twitter: http://twitter.com/xtalkprogrammer
 KvK: 50277553

 Download the Installer Maker plugin for Runtime Revolution at 
 http://qurl.tk/ce Create installers for Mac and Windows on *every* 
 Rev-compatible platform. No additional software needed.

 On 3 nov 2010, at 14:10, Matthias Rebbe wrote:

 William,

 at

 http://www.northcode.com/blog.php/2007/07/25/Securing-Windows-For-Use-As-A-Kiosk

 you find information how to solve this by modifying the registry.
 I used that for XP some time ago. But i do not know, if this works with 
 Windows Vista/7 also.

 Maybe this helps.

 Regards,

 Matthias


 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution