nigeldude
05-25-2006, 11:24 AM
I've been reading the other post about the clipboard feature, but none of them answer my question.
Here it is; Im using several web pages in an app, I need to leave all functionality availablele for the user. However dont want anyone to be able to use anything from the app, I encrpted all the files into a single .exe using http://www.typhoonsoftware.com which works very well. I've eliminated the right click menu by using a personalize one from http://www.javascriptkit.com/script/script2/rightclickmenu.shtml
now the only vulnerability left is to highlight some text and press Ctrl + c. I've tried the following scripting on the AMS6 "On Key", but it doesnt work. Please help.
_____________On Key______________________________________
if e_Modifiers.ctrl and e_Key == 67 then
Web.SetEnabled("Web1", false);
end
Here it is; Im using several web pages in an app, I need to leave all functionality availablele for the user. However dont want anyone to be able to use anything from the app, I encrpted all the files into a single .exe using http://www.typhoonsoftware.com which works very well. I've eliminated the right click menu by using a personalize one from http://www.javascriptkit.com/script/script2/rightclickmenu.shtml
now the only vulnerability left is to highlight some text and press Ctrl + c. I've tried the following scripting on the AMS6 "On Key", but it doesnt work. Please help.
_____________On Key______________________________________
if e_Modifiers.ctrl and e_Key == 67 then
Web.SetEnabled("Web1", false);
end