When I try to open the file dialog it crashes with this error
Could not find primitive dialogs_open_file__4.
Null Function Pointer
var files = Dialogs.openFile
( "Select a file please, or type name"
, "This additional message will only be shown on OSX"
,{ count: 1
, descriptions: [filetype]
, extensions: [extension]
}
);
trace(files);
if (files==null) return "";
return files[0];
When I try to open the file dialog it crashes with this error