In Pages I want to partially dim the screen (Dim PH As Phone / PH.SetScreenBrightness) then later brighten it (PH.SetScreenBrightness(1)) when the user touches/ taps the screen, whatever page is being shown and wherever they touch/ tap.
Possibly I'm missing something obvious but is there a way to do that?
Thanks
Public Sub User_Interaction
Log("interaction")
End Sub
#if Java
@Override
public void onUserInteraction() {
processBA.raiseEventFromUI(null, "user_interaction");
}
#End If