App Designer auto go to one edit-field component

7 visualizaciones (últimos 30 días)
Leo Zhai
Leo Zhai el 27 de Sept. de 2021
Respondida: Sivani Pentapati el 7 de Nov. de 2021
Hi,
I open my app (developed by AppDesigner), I want it startup and auto go to (activate) one edit-field compoenent, no need to click it, so I could immediately type something.
Thanks!

Respuestas (1)

Sivani Pentapati
Sivani Pentapati el 7 de Nov. de 2021
Please refer to the below answer for a temporary workaround
In order to make it working with respect to R2021b, change the startup function to the below code, by adding a pause between the declaration of the Robot and key press function call. Adding another pause between the key press and key release would let you type into the field during the corresponding interval.
import java.awt.*;
import java.awt.event.*;
rob = Robot;
pause(1)
rob.keyPress(KeyEvent.VK_TAB)
pause(10) %duration for which the edit field is enabled
rob.keyRelease(KeyEvent.VK_TAB)
rob.keyPress(KeyEvent.VK_TAB)
rob.keyRelease(KeyEvent.VK_TAB)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by