Hi,
I am getting this error and I cannot seem to find why. I googled for it but
couldn't find anything useful to get rid of it. Has anyone encountered this?
Error #2063: Error attempting to execute IME command.
at flash.system::IME$/set enabled()
at
mx.managers::FocusManager/focusInHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\managers\FocusManager.as:642]
at flash.display::Stage/set focus()
Running flex 4, windows.
i run this code
if (Capabilities.hasIME)
{
if (IME.enabled)
{
Alert.show("IME is installed and enabled.");
}
else
{
Alert.show("IME is installed but not enabled. Please enable
your IME and try again.");
}
}
else
{
Alert.show("IME is not installed. Please install an IME and try
again.");
}
and it tells me that IME is installed but not enabled. If I try to set enabled
to true I get another error.
Error: Error #2063: Error attempting to execute IME command.
at flash.system::IME$/set enabled()
on the line that sets enabled to true
Any input is appreciated;
10x,
C