Had the same problem a while ago - and seem to remember it's got something to do with FP 10.1... On 20 Aug 2010, at 13:25, Brian J. Ackermann wrote:
> I've never even heard of it until I started getting this message... > > > As an update...I've since replaced all the Alert's with traces, and while > they work fine now, the problem isn't limited to Alerts in the apps > creationComplete(), but its affecting all Alert dialogs, regardless of > position. > > Brian J. Ackermann > [email protected] > 952.373.1626 > > > > > On Fri, Aug 20, 2010 at 1:10 AM, Alex Harui <[email protected]> wrote: > > Do you have IME installed on your system? > > > > > On 8/19/10 1:37 PM, "Brian J. Ackermann" <[email protected]> wrote: > > > > > > > Hi, > > I'm getting the following error message, from a simple 'Alert.show("foo")' > call, in my <mx:Application>'s creationComplete handler. > > I see other examples of this working on the web.... > > Error: Error #2063: Error attempting to execute IME command. > at flash.system::IME$/set enabled() > at > mx.managers::FocusManager/focusInHandler()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\FocusManager.as:642] > at flash.display::Stage/set focus() > at > mx.core::UIComponent/setFocus()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UIComponent.as:9544] > at > mx.controls.alertClasses::AlertForm/commitProperties()[E:\dev\4.x\frameworks\projects\framework\src\mx\controls\alertClasses\AlertForm.as:265] > at > mx.core::UIComponent/validateProperties()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UIComponent.as:7933] > at > mx.managers::LayoutManager/validateClient()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:863] > at > mx.managers::PopUpManagerImpl/addPopUp()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\PopUpManagerImpl.as:384] > at > mx.managers::PopUpManager$/addPopUp()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\PopUpManager.as:193] > at > mx.controls::Alert$/show()[E:\dev\4.x\frameworks\projects\framework\src\mx\controls\Alert.as:618] > at > adminTrak::AdminTrak/init()[C:\SVN\webstore\trunk\tmpFlex_RenameMe\Flex\AdminTrak\src\adminTrak\AdminTrak.mxml:60] > at > adminTrak::AdminTrak/___AdminTrak_Application1_creationComplete()[C:\SVN\webstore\trunk\tmpFlex_RenameMe\Flex\AdminTrak\src\adminTrak\AdminTrak.mxml:11] > at flash.events::EventDispatcher/dispatchEventFunction() > at flash.events::EventDispatcher/dispatchEvent() > at > mx.core::UIComponent/dispatchEvent()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UIComponent.as:12528] > at mx.core::UIComponent/set > initialized()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UIComponent.as:1627] > at > mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:759] > at > mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:1072] > > > in fact, this works: > > > <?xml version="1.0" encoding="utf-8"?> > <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" > xmlns:s="library://ns.adobe.com/flex/spark > <http://ns.adobe.com/flex/spark> " > xmlns:mx="library://ns.adobe.com/flex/mx <http://ns.adobe.com/flex/mx> " > minWidth="955" minHeight="600" creationComplete="init()"> > > <fx:Declarations> > <!-- Place non-visual elements (e.g., services, value objects) here --> > </fx:Declarations> > <fx:Script> > <![CDATA[ > import mx.controls.Alert; > private function init():void { > Alert.show("Starting the program"); > } > ]]> > </fx:Script> > > </s:Application> > > I read up on IME, and I don't see anything in there that I'm the least bit > familiar with. Certainly nothing that I've added to my code. > > > Any ideas? > > > > Brian J. Ackermann > [email protected] > 952.373.1626 > > > > > > > > > -- > Alex Harui > Flex SDK Team > Adobe System, Inc. > http://blogs.adobe.com/aharui > > > >

