'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
Dim PNL_SCROLL As Panel
Dim CVSLAYER As Canvas
End Sub
Sub Activity_Create(FirstTime As Boolean)
PNL_SCROLL.Initialize( "SCROLL" )
Activity.AddView( PNL_SCROLL, 0, 0, 100%x, 100%y )
PNL_SCROLL.Color = Colors.transparent
CVSLAYER.Initialize( Activity )
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub SCROLL_Touch (Action As Int, X As Float, Y As Float)
Msgbox( "Down" ,"blabla")
End Sub