Announcement

Collapse
No announcement yet.

Want to make external VBScript to display a HS3 value

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Want to make external VBScript to display a HS3 value

    I ask this before and the conversation lead to getting and displaying values via a HS3-hosted webpage. But to the original question: How can I build a stand alone VBScript that I can launch from the command line? In HS2, it was easy. Basically want to do (foo.vbs):

    Dim hs
    Set hs = CreateObject("Homeseer.Application")
    msgbox hs.version

    This is just an example. Super simple; no worky. It doesn't complain on the CreateObject but crashes on the msgbox. I need to be able to interact with HS3 from the command line and avoid using the HS3 webserver since it has a bug. Thoughts?

    Thanks!

    #2
    No, this is not supported in HS3. You would need to make a small .NET application which communicates with HS3 similar to a remote plugin.

    As I stated on your other post, take a look at the JSON interface.
    Jon

    Comment

    Working...
    X