Building on what @Taifun has sent you, this is one way to open the screen:
HTML
<a onclick="openScreen('SCREEN_NAME')">Click me</a>
JS
let openScreen = (screenName) => {
// any other stuff you may need to do before opening the screen.
window.AppInventor.setWebViewString(screenName);
}
Kodular blocks