


Launch any of your custom apps from one convenient window. Choose from apps to manage assets, contacts, content, inventory, meetings, and tasks. Add more functionality by connecting an Add-on Table to the app. Get started more quickly by choosing one of the 6 new Starter apps. Eliminate the need to create self-join relationships and additional scripts. Leverage the new portal enhancements to create common design patterns like master-detail layouts. Plus, you’ll get robust analysis capabilities, powerful diagnostic tools, and much more. Or even quickly build a new app from the beginning.įileMaker Pro Advanced includes a set of advanced tools to help you design and develop custom apps faster and easier. Start by importing data from a spreadsheet or using a built-in Starter app to manage contacts, inventory, meetings, and more. You also use FileMaker Pro Advanced to access your app on a Windows or Mac computer. Please contact the individual developer with any questions or problems.FileMaker Pro Advanced is the tool you use to create a custom app. Note: these functions are not guaranteed or supported by. Line, which serves absolutely no purpose whatever. Sh = "if then mkdir " & pathVar & " open " & pathVar & " else open " & pathVar & " fi" Ĭmd = "path='" & mypath & "' " & sh // RAW SHELL SCRIPT CODEĪpplescript = "do shell script \"" & cmd & "\"" // APPLESCRIPT FORMATTED PATH This should do the trick… at least it does for me -) The quoted forms are unnecessary, and you need single quotes on the path, rather than double ones. My above comment is true, but won't work here. You have to unescape everything, including the unescape character ! No-one has a solution to the error message given above? The following: "\"" in the function produces an error: List usage is not allowed in this calculation. To use just make a script with Perform AppleScript and point to the calculation. It may not work with ~ designations so supply a full absolute path. Simply supply a proper POSIX path and the name of the folder you want. This function can be used to generate the AppleScript code needed to create and open a folder on Mac OS X. Sh = "if then mkdir " & qpath & " open " & qpath & " else open " & qpath & " fi" Ĭmd = "path=" & Quote ( mypath ) & " " & sh // RAW SHELL SCRIPT CODEĪpplescript = "do shell script " & """ & Substitute ( cmd """ "\"" ) & """ // APPLESCRIPT FORMATTED PATH Qpath = Quote ( "$path" ) // QUOTED SHELL VARIABLE

"if then mkdir $path open $path else open $path fi"

Function definition: (Copy & paste into FileMaker's Edit Custom Function window) // This calculation contains the shell code needed to make a folder on OS X
