I want to simulate key strokes in j2me just as using class Robot in java, but I have no idea to do it, anyone can help me?
I want to simulate key strokes in j2me just as using class Robot in java, but I have no idea to do it, anyone can help me?
Hi,
if you need to do this on a development machine, you could try using the Robot class itself to build a separate Java application that would emulate the needed keystrokes, and so interact with the used device emulators.
About doing that on real devices, there's no ready-to-use library available to accomplish such a task, and, even if available, it would only be useful with Canvas-based applications (since high-level UI components do not offer direct access to key event handlers).
Pit