TELNET MIDLET HELP This program was written in 8 days and still is under hard development. THANKS Thanks to Matthias L. Jugel, Marcus Meißner. This program is based on their java telnet client. Everything from them works perfectly *thanks*. UI User interface is written to be somehow customisable. It's based on binding (assotiating) keys with functions. This can save you some time with typing most common commands etc. FUNCTIONS I defined many useful functions for you. Every function can take parameters that you specify. Example functions follow: - input dialog function: takes no parameters - scroll up: takes one parameter and scrolls screen by number of lines you passed as parameter - connect: takes two parameters - host and port - back color: takes 3 parameters red, green and blue used as back color BINDING KEY Now we have these functions and you can bind (assotiate) them with any key you want. You just press key that's not binded (assotiated) and binding dialog shows up. You can select function, enter function parameters and press key that you want to bind. It's quite easy. MODES If you run out of unbinded keys you can switch between 3 modes. In each you can bind keys to functions differently. The last mode (it's mode 2) is specific, because all functions binded in this mode proceed after midlet loads. In this mode is useful to bind fucntions like background color, sleep time, scollback buffer size etc. Switching between modes handle functins prev and next mode. FUNCTIONS DETAILS input dialog This action allows you to write text that will be typed after you press OK command. You can use it also for pressing special key sequences like ctrl+x, alt+v, shift+a etc... Just type ctrl+x or simply ctrlx and press OK. key pressed Used for raising key pressed event. You have to specify 3 arguments. Example of parameters follow: - keycode=37, keychar=65535 modifiers=8 stands for pressing left arrow - keycode=38, keychar=65535 modifiers=8 stands for pressing up arrow - keycode=39, keychar=65535 modifiers=8 stands for pressing right arrow - keycode=40, keychar=65535 modifiers=8 stands for pressing down arrow