Add your WebApp to Android Desktop - Forum

Forum Navigation
You need to log in to create posts and topics.

Add your WebApp to Android Desktop

Once you have published your WebApp in your own domain, it is very easy to install it on your Android device. This way you have a direct access to your App from its own icon. Just open the web browser and enter your App URL.

YASIN has reacted to this post.
YASIN

Hi @luis

You should create create a debuger engine tool like a game console game debug mode, a Mozilla developer browser addon and a user agent switcher link for neo web visual input manipulation with any browser.

So when app ready is done !

@see_half not sure if I understand you. You can use the "Console" by pressing F12 from any web browser while running and testing your apps.

@luishp

Hello dude,But I'm still confused about how to integrate a variable from neoscript into javascript and for now I'm still using the Mozilla devtool addon and there is no debug process that is stated in the visualneoweb program release.

An example :

Setvar [js] 'init'

BeginJS

Var = $AppScope.js;

EndJs

The > [js] is Variable $AppScope.js on javascript API

At moment i can't see where the "[js]" on addon devtool ?

Yeah,Maybe my browser has something like anti advertising mobile or something.

Hi @see_half, to get a NeoScript variable into JavaScript it should be like this:

Setvar [neovar] 'init'
BeginJS
  jsvar = $App.neovar;
  alert(jsvar);
EndJs

To get a JavaScript variable into NeoScript:

BeginJS 
   jsvar = "init";
   $App.neovar= jsvar;
EndJS
jsAlert "[neovar]"

Regards.

@luishp

Can I replace "$App.' with other ?

Thanks,

Can I replace "$App.' with other ?

@see_half don't know why you want this, but yes it's possible:

SetVar [myvar] "Hello"
BeginJS
  $whatever = $App;
  alert($whatever.myvar);
  $whatever.myvar2 = "Bye";
EndJS
jsAlert "[myvar2]"

Regards

@luishp

How with this :

BeginJS
%mask_ = $App.;

alert(%mask_myvar);

%mask_myvar = "Come";
EndJS

jsAlert "[myvar]"

i love underline light my eyes better than TAB.

On my neopaper,

Thanks,