Private Sub tmrCheckClipboard_Tick
Dim clipboard As Clipboard
If AppActive = False Then
If clipboard.StringItem.Length > 0 Then
If clipboard.StringItem.IndexOf("example.com") > -1 Then
txturl.Text = clipboard.StringItem
Dim notify As Notification
notify.Initialize(DateTime.Now)
notify.AlertBody = "Download and save file easily"
notify.PlaySound = True
notify.Tag = clipboard.StringItem
notify.Register
clipboard.StringItem = ""
Private NativeMe As NativeObject
NativeMe = Me
NativeMe.RunMethod("setAudioSession", Null)
media.Initialize("vv")
media.LoadVideo(File.DirAssets,"Gamma.mp3")
media.Play
NativeMe.RunMethod("register", Null)
End If
End If
End If
End Sub