event click

  1. Lucas Siqueira

    Wish Event Click in BBCodeView

    Please modify Sub TouchPanel_Touch Private Sub TouchPanel_Touch (Action As Int, X As Float, Y As Float) Dim run As BCTextRun = Null If URLToLines.Size > 0 Or Action = TouchPanel.TOUCH_ACTION_UP Then run = FindTouchedRun(X, Y) End If If run <> Null And...
  2. stanlyonhack

    Android Question invoke an event from another event

    I wish I could invoke an event from another event, example: To remove an element from a CustomListView I use the event of this object Sub CustomListView_ItemClick (Index As Int, Value As Object) CustomListView.RemoveAt (Index) End Sub Now my question is how can I invoke this event from the...
  3. M

    Android Question problem with click event in wrapping a lib

    hi there i use to wrap a lib from a java for b4a i made almost every thing make run but i stick in click event and enevt wont rasing here is my java onclick code public void ClickListener() { CV.setOnClickListener(new View.OnClickListener() { @Override...
Top