Mat
Mat

Reputation: 567

How to Open this file structure as Flex project?

I received a Flex project but don't know how to open it in Flash builder. It doesn't contain a project.mxml or .actionScriptProperties, .flexProperties and .project files.

the file structure looks like this:

(rootFolder)
    -(com)
        ...subfoldrestructure containing only folders and .as files
    -(src)
        -(_embed)
            -assets.fla
            -assets.swf
            -assets.swc
        -Main-app.xml
        -Main.as
        -icon-16.png
        ...
        -icon-128.png

how do I make a compilable Flex project out of this?

Upvotes: 0

Views: 612

Answers (1)

J_A_X
J_A_X

Reputation: 12847

That is not a Flex project, that's a Flash project. Just create a new Actionscript project and point the location of it at the same location as this one. It will add the necessary project files to compile. It will try to create another Main actionscript file, but you can delete the one that it made and select the one already there as the default application.

Upvotes: 1

Related Questions