0

I am building a Boxee app and would like to, in response to certain user actions, open Boxee's web browser with a given URL. Boxee's documentation is a little light here (by my eyes).

Is this possible to do and if so how?

DuckMaestro
  • 15,232
  • 11
  • 67
  • 85

1 Answers1

0

Check the API here http://developer.boxee.tv/JavaScript_API#browser

I guess navigate is the thing you re looking for: navigate(url:String):Void

browser.navigate("http://www.yourpage.com");

longi
  • 11,104
  • 10
  • 55
  • 89