Please try the attached dll. To define the functions exported by the dll in swfkit pro, please copy the following code into the "initialize" script
Code:
Dll.registerFunction(getAdditionalFile("DisablePaste.dll"),
"DisablePaste",
"disablePaste", "stdcall", "void", "long");
Dll.registerFunction(getAdditionalFile("DisablePaste.dll"),
"DisableCopy",
"disableCopy", "stdcall", "void", "long");
Dll.registerFunction(getAdditionalFile("DisablePaste.dll"),
"DisableCut",
"disableCut", "stdcall", "void", "long");
disablePaste(true);
disableCut(true);
disableCopy(true);
These functions will disable the cut, copy or paste operations in all text fields. If these functions take a parameter "false", the operations will be enabled.