Xenocode

Xenocode is a set of apps that are deadly for a few reasons, but what i’m concerned about is embedding apps (like graal) into the web browser. Pretty much, you package your project thru the program and it turns it into one portable exe. That stage worked.

Now, there’s also a way to embed it into a website, which is where my question comes in.

html embed script looks like this:

                   <div class="BlogEntry">
                        <div class="BlogApp">
                        <script type="text/javascript">
		Xenocode_AppName='TweetDeck';
		Xenocode_Surface = false;
                        </script>
                        <script type="text/javascript" src="http://start.xenocode.com/render">
                        </script>
                        </div>

I’m trying to find where exactly the Xenocode_AppName is specified? or what it refers to (.exe filename etc.)

Xenocode_Surface is if the program pops out or embeds itself into the webpage.
http://start.xenocode.com/render” points to a javascript called start.js, which is how the plugin executes. As a workaround, would I be able to butcher it to just open the specific .exe file?

That code just renders an iframe

http://start.xenocode.com/3.12/ApplicationFrame.aspx?&a=TweetDeck

Enjoy :stuck_out_tongue:

That’s a helpful start. Anymore tips for me?