Hi, i have a game created on contruct2 and i have use the plugin browser, with the action open URL in a new window.
it works good on android, but on iOS it doesn't work.
I cold create a plugin only for calling a external url, but I see that construct do this on the browser plugin function.l
Acts.prototype.GoToURLWindow = function (url, tag)
{
if (this.runtime.isCocoonJs)
CocoonJS["App"]["openURL"](url);
else if (!this.is_arcade && !this.runtime.isDomFree)
window.open(url, tag);
};
so this use cocoonjs app for calling a url, what can i do to solve this?
Thanks for your time