Hello Every Body
it my first post to the forum
Today i Show you how to convert Scirra Apps to Metro Apps with following steps
1) Export you scirra project to the desire path.
2)Then open Visual Studio 11 Ultimate
3) select metro style template (Html not xml)
4)copy jqurey and c2runtime files to the folder js in metro template
5) Add images from you project to the metor app by add to to the folder called images.
6)if you have media then you have to create a folder in visualstudio template and name it media and add media elements.
7)now main part doubleclick default.html
ther is something like this
!--------------Application name refference--------------!
<script src="path of file"></script>
<script src="path of file"></script>
add this script under those scripts
<script src="/js/c2runtime.js"></script>
<script src="/js/jquery-1.7.1.js"></script> (with code like this jquery-1.7.1)
8) now in the same html file search
<h1>content goes here </h1>
9)open index.html from you project direcotry with any text editor
and copy all text under
<head> form the third line
and paste in deafult .html in visual studio under the search text
10) now build project and run app you done it