Returning to PB on the Mac after a few years of Windows use.
I'm hitting some teething problems and I was hoping that somebody could help me.
1) I have the following code that just keeps failing. I select the file then it fails to open:
Code: Select all
FilePath.s = OpenFileRequester("Open File", "", "", 0)
If ReadFile(0, FilePath) > 0
Line.s = ReadString(0)
Debug(HeaderLine)
CloseFile(0)
Else
Debug "Could not open " + FilePath
EndIf
2) If I create an excecutable and then try to open it in finder nothing happens.
I appreciate any help you can give me.


