Is there a way to open another .fig file (ex. an onscreen keyboard) when clicking into an edit text box?

2 views (last 30 days)
-I am doing a project using matlab GUI and it has to be 100% touchscreen. In order to edit the textbox's throughout the UI i need a way to open the keyboard i made in matlab when the user clicks into the edit text box.
-Thanks

Accepted Answer

Walter Roberson
Walter Roberson on 29 Jan 2016
Yes, if the uicontrol('style', 'edit') has a ButtonDownFcn and the user right clicks on the control then that callback will be invoked. Alternately, if the 'Enable' property of the uicontrol is set to 'off' or 'disable' then the callback will be invoked for any click. You could probably then enable to control from the callback.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!