i am using fez spider kit and glide user interface. bt not using touchscreen . i am using 12 key keypad . now i want to show messagebox in my display. bt how to press ok to remove that message box.
biren,
Not sure how to answer since you just need to touch the OK (or whichever buttons you selected in code) on the screen.
Did you do GlideTouch.Initialize() in you code?
Silly question - did you connect all 4 (R,G,B & T) cables from the T35 to your Spider?
Showing your code in here would help to diagnose the issue.
(btw - there’s a forum in here dedicated to Glide, this one is for everything not FEZ related)
Based upon your question, I assume that your are using a graphics LCD which does not have a touch capability.
To dismiss the messagebox you need an external stimuli. This could be a button, or one on the keys on the keypad such as # or *.
When you get the external stimuli you want to simulate the pressing of the OK button on the messagebox.
The Button class a TriggerPressEvent() method which is used to simulate a press. I don’t know if you can
can access the button of a messagebox, but if you can you have the solution. If not, then you might have
to build your own messagebox, so you can access to the button.
I think this information should be a start.