04-22-2018 12:31
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

04-22-2018 12:31
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
My app shows up on Versa but not on the emulator. Obviously I'm missing something simple.
This is on a Windows PC.
Answered! Go to the Best Answer.
Accepted Solutions
04-22-2018 16:35
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

04-22-2018 16:35
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
OK - solved. Not sure why I got the original message but it's working now

04-22-2018 12:57
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

04-22-2018 12:57
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
I'm also missing something about starting the app - maybe related. I used the HRM sample app as a start but don't see the display even though the app is logging and running
{Note that this is typescript - .ts}
import document from "document";
try {
const test:string = "hello";
console.log("App Started");
const myLabel = document.getElementById("hrm");
myLabel.textContent = "hello";
console.log(`myLabel contains ${myLabel.textContent}`);
let ctr = 0;
let counter = () => {
myLabel.textCOntent = `Count: ${++ctr}`;
console.log(`Counter: ${ctr}`);
};
setInterval(counter, 2*1000);
}
catch (e) {
console.error(`Error ${e}`);
}
console.log(`App ran!`);
setTimeout(() => {console.log("back again");}, 10*1000);

04-22-2018 16:35
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

04-22-2018 16:35
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
OK - solved. Not sure why I got the original message but it's working now

