Chris Speciale
Chris Speciale
There is an open source server and client side RTMFP https://github.com/MonaSolutions/librtmfp We could potentially add the Netgroup and related API to OpenFL but it will have to be a community...
`librtmfp is a multi-platform and LGPL library implementing the client part of the RTMFP protocol.` librtmfp is the client-end, by the same developers as mona. Yes, I only bring up...
Well, we could use the C++ library as a reference along with the official RTMFP docs to create a haxe implementation that works across all platforms. This would be ideal.
I'm also interested in bringing RTMFP to openfl and I'm sure Joshua would not be opposed to the idea. It's not something I would like to undertake alone though. It...
Support in this area for native is a little lacking. They should work if you embed the fonts with these gylphs, but using system fonts is a little trickier and...
I think it should work if you include the full font path, but I'm not sure about this on linux.
I'm glad that it worked out for you. I would love to work with other interested developers in improving access to device fonts across all targets.
```hx file.browseForOpen("Open", [new FileFilter("File", "ext")]); ``` Remove the `*.` from your extension string and it should work as expected. Let me know if you have any further issue with this.
> Hey @Dimensionscape , thank you, for a quick response. > > I tried by the way you suggested, but I still see targeted file-type is disabled in file-browser: `pathFile.browseForOpen("Open...
```hx @:noCompletion private function __getFilterTypes(typeFilter:Array):String { var filter:String = null; if (typeFilter != null) { var filters = []; for (type in typeFilter) { filters.push(StringTools.replace(StringTools.replace(type.extension, "*.", ""), ";", ",")); }...