Call_hx demo doesn't work in external project

The issue as you can see on the left arm is not defined. I followed the directions on this page and copied the contents of html5 folder into my project. Any ideas on how to fix this?

Thanks!

Figured out that arm is attached to the global exports object so you can do the following to fix this issue.

   const instance = new exports.arm.Plugin();
   console.log(instance.hello());
1 Like