Hello,
I did what you said using events instead of drag and drop but the effect is the same. I've noticed that with a more modern device works perfectly, but I'd like it to work reasonably well on older devices.
I tried to make a native Android application by adding a WebView and has improved a lot, but I'd still like to improve it more.
I read that with appMobi can increase the speed and am trying to use it, but I have a problem. I export the project as appMobi (experimental) from Construct 2 and when appMobi imported it into ocurres the following error:
"The appMobi JavaScript Library is missing". Puts you copy the following in all my html files:
<! - The line below is required for access to the appMobi JS library ->
<script type="text/javascript" charset="utf-8" src="http://localhost:58888/_appMobi/appmobi.js"> </ script>
<script type="text/javascript" language="javascript">
/ / This event handler is fired eleven the appMobi libraries are ready
onDeviceReady function () {
/ / use appMobi device viewport resolution to handle if you want Differences
/ / AppMobi.display.useViewport (768.1024);
/ / hide splash screen Now That our app is ready to run
AppMobi.device.hideSplashScreen ();
}
/ / initial event handler to detect when to appMobi is ready to roll
document.addEventListener ("appMobi.device.ready" onDeviceReady, false);
</ script>
I tried to do it but to upload it back again gives me the same error message.
I followed the tutorial "http://www.scirra.com/tutorials/304/how-to-export-to-appmobi-with-directcanvas/page-1" along with "http://www.appmobi.com/documentation/content/Tutorials/Tutorial_GettingStarted/index.html?r=8448 "
Does anyone have experience with appMobi?
Thank you very much.