Minecraft – Is it possible to run the new Minecraft launcher v1.6.1 in the browser

minecraft-java-edition

I have constantly run into the problem of being unable to run the Minecraft launcher, and the new launcher is no exception. I have tried a number of things including restarting my computer and updating java, but the one thing I've found odd about it is that I run into no problems when using http://www.minecraft.net/play and its web interface. Even when I use the java console version of the launcher I run into the problem. So I've been trying to figure out how the web version works in order to apply the same method to open the new launcher. Here is what launches the old version of the Minecraft launcher:

<html>
    <applet code="net.minecraft.Launcher" archive="https://s3.amazonaws.com/MinecraftDownload/launcher/MinecraftLauncher.jar?v=1367502965000" codebase="/game/" width="854" height="480">
        <param name="separate_jvm" value="true">
        <param name="java_arguments" value="-Xmx1024M -Xms1024M -Dsun.java2d.noddraw=true -Dsun.awt.noerasebackground=true -Dsun.java2d.d3d=false -Dsun.java2d.opengl=false -Dsun.java2d.pmoffscreen=false">
        <param name="userName" value="(your username)">
        <param name="latestVersion" value="1367502965000">
        <param name="sessionId" value="(your sessonId)">
        <param name="downloadTicket" value="(your downloadTicket)">
    </applet>
</html>

And here is my attempt to create something that launches the new version:

<html>
    <applet code="net.minecraft.bootstrap.Bootstrap" archive="http://www.minecraft.net/download/minecraft.jar" codebase="/game/" width="854" height="480">
        <param name="separate_jvm" value="true">
        <param name="java_arguments" value="-Xmx1024M -Xms1024M -Dsun.java2d.noddraw=true -Dsun.awt.noerasebackground=true -Dsun.java2d.d3d=false -Dsun.java2d.opengl=false -Dsun.java2d.pmoffscreen=false">
        <param name="userName" value="(your username)">
        <param name="latestVersion" value="1367502965000">
        <param name="sessionId" value="(your sessonId)">
        <param name="downloadTicket" value="(your downloadTicket)">
    </applet>
</html>

This clearly doesn't work, and I'm hoping someone can find a way that does, so I can manage to play the new version on this computer.

Best Answer

I was finally able to determine with the help of some of my forum friends that Minecraft's source code has been updated so as to not allow it from being played in an applet to prevent some inconspicuous bug whereby people who hadn't payed for the game were able to play it in an applet. This fortunately reinvigorated my efforts to determine what was wrong with playing the regular launcher. I was eventually told by the IRC chat for Minecraft that it was my ESET NOD32 antivirus which was causing the problem, and that I was forced to uninstall it in order to play Minecraft and install a different antivirus. I have elaborated on this in the comment I made below, but my problem is unfortunately not yet resolved. Here is where I posted the bug on the official Mojira bug posting site. https://mojang.atlassian.net/browse/MCL-887 However as the original problem has been solved I'll simply leave this as the answer.