Skip to content

Instantly share code, notes, and snippets.

@s5bug
Created November 5, 2018 18:17
Show Gist options
  • Save s5bug/f2457d8b088344a694ccec30885601b2 to your computer and use it in GitHub Desktop.
Save s5bug/f2457d8b088344a694ccec30885601b2 to your computer and use it in GitHub Desktop.
Go To URL for Snap
<?xml version="1.0" encoding="UTF-8"?>
<blocks app="Snap! 4.2, http://snap.berkeley.edu" version="1">
<block-definition s="go to %'url'" type="command" category="sensing">
<header />
<code />
<translations />
<inputs>
<input type="%txt" />
</inputs>
<script>
<block s="doThink">
<block s="evaluate">
<block s="reportJSFunction">
<list>
<l>e</l>
</list>
<l>window.location.replace(e);</l>
</block>
<list>
<block var="url" />
</list>
</block>
</block>
</script>
</block-definition>
</blocks>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment