Private Sub Button1_Click
DocumentPicker.InitializeImport("picker", Array("public.text"))
DocumentPicker.Show(<Your Page Object>, Sender)
Wait For Picker_Complete (Success As Boolean, URLs As List)
If Success Then
Log(File.ReadString(URLs.Get(0), ""))
End If
End Sub