Language: ChineseGermanSpanishFrenchDutchItalianRussian
123 Flash Chat Forums

Go Back   TOPCMM Community > SWFKit > SWFKit Support

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-23-2004, 05:10 AM
Junior Member
 
Join Date: Aug 2004
Posts: 5
Default Add Reg Key help...

I want to disable windows key, and ctrl,alt, del keys at application startup (since Swfkit dosn't support this for xp) .. I found the reg file that will do this.. how can I make swfKit do it for me at startup?

------
REGEDIT4

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,09,00,00,00,00,00 ,5b,e0,00,00,5c,e0,00,00,5d,e0,00,00,
44,00,00,00,1d,00,00,00,38,00,00,00,1d,e0,00,00,38 ,e0,00,00,00,00
-----------

Thanks
Reply With Quote
  #2 (permalink)  
Old 08-23-2004, 02:22 PM
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re:Add Reg Key help...

Code:
var hexCode = [0x00, 0x00, 0x00000009, 0xe05b0000,
0xe05c0000, 0xe05d0000, 0x00440000, 0x001d0000, 
0x00380000, 0xe01d0000, 0xe0380000, 0x00];


var regKey = RegKey.create("HKLM\\SYSTEM\\CurrentControlSet\\Control\\Keyboard Layout");
trace(regKey);
var regValue = new RegValue;
regValue.name = "Scancode Map";
regValue.type = 3;//BINARY
regValue.data = hexCode;

regKey.write(regValue);
Reply With Quote
Reply

Was this information helpful?    Yes No



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 10:36 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.