Advertisement
peacestorm

goToURL

Jun 2nd, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ModPE.goToURL = function(url) {
  2.     var ctx = com.mojang.minecraftpe.MainActivity.currentMainActivity.get();
  3.     var uri = android.net.Uri.parse(url);
  4.     var intent = new android.content.Intent(android.content.Intent.ACTION_VIEW, uri);
  5.     ctx.startActivity(intent);
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement