Page 1 of 3
.
Posted: 05 Jun 2018 11:16
by farshadmo368
.
Re: init variable app list
Posted: 05 Jun 2018 18:27
by Desmanto
Use Action Launch App. You can creat a list of the apps you want in the script and loop it almost like previous flow.
Thunder VPN seems doesn't support plugin integration. For other alternative VPN, you can check at my index, VPN section
Re: init variable app list
Posted: 05 Jun 2018 19:13
by farshadmo368
Thanks desmanto but i am not familiar with the script code please send the code
Re: init variable app list
Posted: 06 Jun 2018 13:06
by farshadmo368
?????????
Re: init variable app list
Posted: 06 Jun 2018 14:23
by Desmanto
Just find the app packagename and use it in the list. The easiest way is to use Trigger App Package Event, choose all the app you want, OK. Copy the whole Package name field, and create a list something like this
Code: Select all
applist = newList("com.adobe.reader", "com.android.browser", "com.android.camera");
Use this as the replacement of the txt or pdf list that you have use before. Something like
Code: Select all
applist = newList("com.adobe.reader", "com.android.browser", "com.android.camera");
index = 0;
len = length(applist);
Then change the main action to Launch app and use {applist[index]} as the package name. Class name usually can be left blank.
Re: init variable app list
Posted: 06 Jun 2018 16:22
by farshadmo368
tnx
Re: init variable app list
Posted: 10 Jun 2018 20:49
by farshadmo368
Hi, sorry I have a question.
I put five programs in the list. I want to start the first app after running the latest app, and never stop there, how?
Re: init variable app list
Posted: 10 Jun 2018 20:51
by farshadmo368
I want to repeat and never stop.
like this
Run app 1
Run app 2
Run app 3
Run app 4
Repead
Run app 1
Run app 2
Run app 3
Run app 4
Repead
Run app 1
Run app 2
Run app 3
Run app 4
Repeat until ∞
Re: init variable app list
Posted: 10 Jun 2018 22:22
by digitalstone
You could just loop the whole thing at flow-level.
Maybe put a "stop flow" action in between, coupled to a glovar to stop the flow.
Re: init variable app list
Posted: 11 Jun 2018 11:49
by farshadmo368
Tnx