-
1. Re: BuddyAPI baGetFilename not opening in correct location in OSX Mavericks
SeanWilson Jul 17, 2014 11:56 PM (in response to fazstp)Post the Lingo for the file-select dialogue.
Have you tried passing it a POSIX path?
-
2. Re: BuddyAPI baGetFilename not opening in correct location in OSX Mavericks
fazstp Jul 18, 2014 12:15 AM (in response to SeanWilson)Hi Sean, nice to see you're still active.
Dialogue is something like this
fi = baGetFilename( "open", baSysFolder( "personal" ), EMPTY, ".txt", 0, "Select a file...", 0, -1, 0 )
I tried the posix path you suggested but it didn't work unfortunately.
-
3. Re: BuddyAPI baGetFilename not opening in correct location in OSX Mavericks
SeanWilson Jul 18, 2014 9:33 PM (in response to fazstp)So, just to be clear, you tried something like:
tPath = baSysFolder( "personal" )
tPath = baUnixName(tPath)
fi = baGetFilename( "open", tPath, EMPTY, ".txt", 0, "Select a file...", 0, -1, 0 )
Or perhaps:
OK = baReturnUnixNames(TRUE)
fi = baGetFilename( "open", baSysFolder( "personal" ), EMPTY, ".txt", 0, "Select a file...", 0, -1, 0 )
-
4. Re: BuddyAPI baGetFilename not opening in correct location in OSX Mavericks
fazstp Jul 22, 2014 8:08 PM (in response to SeanWilson)Yes I tried the first method using baUnixName to get the posix path. I will try the second method and see if that helps.
Thankyou.


