OK,
I downloaded the source and got the project loaded into Intellij - I had to change the following line in Robot.as to get it to compile with Flex 4.1
focusManager.moveFocus(focusTransferDirection(KeyboardEvent(event)), uiComponent);
to
focusManager.setFocus( focusManager.getNextFocusManagerComponent() );
I have no idea whether that is the correct replacement. I then instantiated a component using the UIImpersonator, but unfortunately after running
install(component)
button("myButton").click()
I get the message that it can not find the button "myButton". This button is a skin part.
Would you have expected it to work in this case or does it require quite a bit of work to get it working in flex 4?
Conrad