Code: Select all
app.launchURL("http://www.example.com/", true);
But I want to use it with "dynamic created content", e.g. I have a form where I can select the strings "help / products / shop", and as result I create the address like this:
Code: Select all
var newaddress = "http://www.example.com/" + this.getfield("my_list")
Code: Select all
newaddress = "http://www.example.com/products"
Code: Select all
Console:Exec:18: TypeError: app.launchurl is not a function