How to display space Key in MATLAB App Designer
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
NAVNEET NAYAN
el 23 de Ag. de 2023
Comentada: NAVNEET NAYAN
el 24 de Ag. de 2023
I have made a basic GUI that displays videos of alphabets. It's basic look is attached here named as GUI_MATLAB. I am facing a problem. Videos corresponding to the alphabets are getting displayed properly. But, when I provide two alphabets with a space bar between them, only video of the 1st alphabet gets displayed. I know this is happening because it is not getting any input video or input image for space bar.
Can any one suggest me something how to solve this problem or, how to provide image/video input for space bar?
2 comentarios
Kevin Holly
el 23 de Ag. de 2023
How are you dusplaying videos that correspond to alphabets?
Are you reading from
InputTextEditField.Value
and then reading and displaying the appropriate video file that you have stored on your computer?
Did you want to play a video based on each character within the edit field?
Respuesta aceptada
Walter Roberson
el 23 de Ag. de 2023
v = char(InputTextEditField.Value);
v(isspace(v)) = [];
Now use the characters in v.
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!