| OpenURL? From docs 
 
 Import mojo
Class MyApp Extends App
	Method OnCreate()
	
		SetUpdateRate 60
	End
	
	Method OnUpdate()
	
		If MouseHit(0)
			If MouseY()<DeviceHeight/2
				OpenUrl "http://www.monkeycoder.co.nz"
			Else
				OpenUrl "mailto:blitzmuntergmail.com"
			Endif
		Endif
	End
	
	Method OnRender()
	
		Cls
		DrawText "Click above to visit Monkeycoder, below to email Mark!",DeviceWidth/2,DeviceHeight/2,.5,.5
	End
	
End
Function Main()
	New MyApp
End 
 And if the link to a google play store entry (e.g. https://play.google.com/store/apps/details?id=com.colourfy.yaty&feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5jb2xvdXJmeS55YXR5Il0. ) it will ask if you want to open it in the play store
 
 
 |