Hey guys, I wanted to see if someone could help me out with a problem I am having. I am attempting to pass a message from my page code to an HTML element. I have successfully tried a similar version where I passed a message containing a value to an HTML element that was set up to display text when I pressed a button. I got all of that from the Corvid documentation and it went well. My ultimate goal, and what I am having issues with, is sending a message to an HTML element that is intentionally not set up to display text. I’ve attached a JS Bin link below, but essentially the HTML element is holding a three-dimensional model that updates automatically when different parameters are changed. Commands can then be called in the console to change the parameters (api.parameters.updateAsync({name:“Floor to Floor”,value:15}) (you can clear the console and then add that in as an example). My thought was to send those commands as messages but while that has so far been unsuccessful, I am not sure if it is because the message is not getting there or if it just doesn’t work like that. I used a console.log on the example postMessage I did and I got a response and the message went through, but I have not yet received a notice that the message went through vie console.log for this recent attempt. Thanks for any help you can provide!
Jake