OpenFL app that runs in the background

I have some Haxe+OpenFL code to convert OGG files to WAV files and want to write a program that just does that in the background. It doesn’t need to display a window and will exit itself once all the files are finished.

Is there a way to do this or should I just make my app window settings very small?

Yea certainly. In your project xml, under window, set hidden to true. eg

<window hidden="true"/>

2 Likes

Excellent! Thank you very much!

Not sure how I missed this before but thanks very much, it helps me immensely.