Using Flash Builder to Create an AS3 Class Collection

How do I set up a project in Flash Builder to create a collection of classes that is not an application in itself? When you create an ActionScript project, it forces you to have the main application file, and also installs the entire bin-debug folder, etc.

For example, if you want to start coding for something like Tweener, Papervision, or another set of classes that are not published in the application, how would you create a project in Flash Builder?

+3
source share
4 answers

In the File menu:

New → FlexLibraryProject

Then New -> ActionScriptClass :)

+1
source

Flex 3, , Flash Builder. Flex Navigator, New > Project, . .

0

, , ActionScript / .

:

  • (, ​​ - ) " "

  • ""

  • " ActionScript" ( , )

  • "" ( )

  • /s

  • OK

  • OK

ActionScript: -)

0

The fact that FlashBuilder creates an entire project doesn't really matter. I usually create an Actionscript project and use the main class as the entry point to the set of classes I want to create.

In the project properties, I add a folder to my source path, and inside this folder I create packages that I want to work with

source directory //added to the source path 
    com/  // the set of classes i'm working on
      mydomain/
          mainpackage /

Thus, my classes are completely independent of my project.

0
source

Source: https://habr.com/ru/post/1759173/


All Articles