In Visual Basic for Application it is very simple to send keys from code.
Example:
Sub send_key_enter()
SendKeys "{ENTER}"
End Sub
Sub send_key_end()
SendKeys "{END}"
End Sub
Sub send_key_home()
SendKeys "{HOME}"
End Sub
Sub send_key_shift_end()
SendKeys "+{END}"
End Sub
How It is possible in Flash?
Best regards!
Start Free Trial