var url = "http://byond.com/"
src << browse( url, "display=0;" )
src << link( url )
Current Remedy:
var url = "http://byond.com/"
var html = {"
<script type="text/javascript">
window.onload = function() { window.location = "[url]"; }
</script>
"}
src << browse( html, "display=0;" );
Problem description:
Browsing the variable url simply displays the link as a string... theoretically I can workaround this using JavaScript, but I was wondering if there was a way to force a user to browse a link ( so I can use HTML/JavaScript/PHP ) to run things in the background without having to bog the user with a window - similar to link() but without an external browser window at all.
To tack onto this question, I'm well aware of grabbing information from this browser (I simulated JavaScript sorting this way before as a POC), but I was wondering if there was a more efficient way to read in data from a website? Any references?
Anybody have any good resources or examples of manipulating programs with World.Export()?