Help with Setup / Create a new project tutorial
-
I've got a problem with the tutorial: when I enter
flixel tpl -n "FlixelTut"
in the command prompt it creates a
FlixelTut.sublime-project
file by default and not aFlixelTut.hxproj
as it should; hence when i open the file with FlashDevelop all i have is the code stored in a tab and no resource tree.
How i have to setup in order to get.hxproj
files created by default?Don't know if this makes any sense at all but i tried to change the extension of the
.sublime-project
file into.hxproj
but still i have an error when i try to open it:Could not open the requested project: "exception generated by call destination"
(I have roughly translated the quoted part)
-
There's two options:
-
re-run
flixel setup
and be sure to select FlashDevelop as your preferred IDE (you must have selected Sublime by accident here before) -
explicitly specify what IDE you want to generate project files for in the
flixel tpl
command (the available options are documented inflixel help tpl
):flixel tpl -n "FlixelTut" -ide fd
Don't know if this makes any sense at all but i tried to change the extension of the .sublime-project file into .hxproj
No, this won't work. They're completely different file formats.
-
-
@Gama11 Thanks!