How connectivity check works?

I'mnoob

Member
Let's say it run connectivity check and gets the value of true.
Then I want it to perform some actions.
But if it's false then cancel it or other action.

I don't know how can I make a macro like this?
 

MacroDroidDev

Administrator
Staff member
Connectivity check allows you to store the connected value into a boolean variable, so create a local variable called isConnected and then set the value into that.

You can then do something like.

If (variable connected = true)
SOME ACTIONS
Else
OTHER ACITONS
EndIf
 
Top