Page 1 of 1

Tab as Web Browser ?

Posted: 18 Jun 2014 06:27
by CookieMonster
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 ?

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 06:49
by binocular222
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")

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 07:10
by CookieMonster
binocular222 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")
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, atleast :) Thanks :)

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 07:56
by Filehero
CookieMonster wrote:XY only has an option to pass local files though a web server?
Where can I fand that option? :veryconfused:


Cheers,
Filehero

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 07:59
by highend
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);
    }

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 19:31
by CookieMonster
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);
    }
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 ?

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 19:55
by bdeshi
Perhaps wait for some time? :idea:

Re: Tab as Web Browser ?

Posted: 18 Jun 2014 23:04
by highend
Without _real_ urls? oO