Tab as Web Browser ?
Posted: 18 Jun 2014 06:27
XY only has an option to pass local files though a web server, is it possible to view a web page online though a XY tab ?
Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
Code: Select all
html("http://www.xyplorer.com/xyfc/search.php?search_id=active_topics")The code works, I'll have to look up how to run a script in a tab. The only thing with the script is it's hard coded for a specific site, instead of a range of sites, atleastbinocular222 wrote:No, but possible via a separate dialog window. Try this script:Code: Select all
html("http://www.xyplorer.com/xyfc/search.php?search_id=active_topics")
Where can I fand that option?CookieMonster wrote:XY only has an option to pass local files though a web server?
Code: Select all
$sites = "<url 1>|<url 2>|<url x>";
foreach($site, $sites, "|") {
html($site);
}I assigned the script to a button, ran the script a popup window loops three times, only after clicking close for each window. No web site loads in the window, what am I doing wrong ?highend wrote:There is no "script in a tab" (at least not for displaying other content than the list).
Code: Select all
$sites = "<url 1>|<url 2>|<url x>"; foreach($site, $sites, "|") { html($site); }