function strace(value)
{
SWFKit.Global.trace(value);
}
Although this function does nothing in the output .exe file, the flash player will always pass the
"value" parameter to FFish scripting language. It will do harm to the efficiency of the output .exe
file in this case. Hence, we recommend you to modify the strace function to the following form when
you are ready to build the release version of your .exe file.
/*
function strace(value)
{
SWFKit.Global.trace(value);
}
*/
strace = trace;