Tab as Web Browser ?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
CookieMonster

Tab as Web Browser ?

Post 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 ?

binocular222
Posts: 1423
Joined: 04 Nov 2008 05:35
Location: Win11, Win10, 100% Scaling

Re: Tab as Web Browser ?

Post 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")
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

CookieMonster

Re: Tab as Web Browser ?

Post 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 :)

Filehero
Posts: 2731
Joined: 27 Feb 2012 18:50
Location: Windows 11@100%

Re: Tab as Web Browser ?

Post 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

highend
Posts: 14954
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Tab as Web Browser ?

Post 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);
    }
One of my scripts helped you out? Please donate via Paypal

CookieMonster

Re: Tab as Web Browser ?

Post 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 ?

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: Tab as Web Browser ?

Post by bdeshi »

Perhaps wait for some time? :idea:
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

highend
Posts: 14954
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Tab as Web Browser ?

Post by highend »

Without _real_ urls? oO
One of my scripts helped you out? Please donate via Paypal

Post Reply