ID:156068
 
So I'm browsing simple HTML files like this:

src<<output(file("Help.html"),"HelpBrowser")


Which works fine.
And in the "Help.html" is a link:

<a href="HelpSP.html">Help SP</a>


Which works in any browser, but when I'm trying it in the BYOND browser it simply refuses to redirect. I get an error saying I'm not connected to the internet.

It doesn't call client/Topic(), it simply fails in opening the new page.

Linking to an exterior web page (like http://www.byond.com) works fine, though. I'm really mindblown here.

EDIT: Yes I'm very much aware that I can simply upload the page somewhere and redirect from there, but that's honestly the last solution I want.
There's no real reason for this not to work, or am I missing something blatantly obvious?
HelpSP.html is not local to the client, as you never sent it there. So it doesn't exist on the client.
In response to Stephen001
Completely forgot about browse_rsc(), thanks Stephen, it's solved now.

Out of curiosity, though, any way to add it to the rsc without adding it to the client's cache?
In response to Emasym
May be able to bundle it in the RSC via the Package options in DreamMaker. Dunno if it'll send to client though.