Sorry, I'm very new in OPL, and currently working on this very simple app as my first release project for the nokia 90 series. What I am trying to do is get it to input this string -> *#746025625# <- into the phone without the characters being displayed on the screen (because if they saw the characters, then they wouldn't need my app). So if anyone can help me with this, I'd greatly appreciate it. Thanks for your time and I hope to hear from someone soon.
need help
Right then, easiest way is through a dialog box. Try this...
GLOBAL SecretWord$(255)
...
PROC GetSecretWord:
dINIT "Enter Password"
dXINPUT SecretWord$,"Password"
LOCK ON
DIALOG
LOCK OFF
ENDIF
That should do it. http://www.allaboutopl.com/wiki has a full command list that might help you.