I'm developing an ActionScript 3.0 project for Blackberry Playbook, Android and iOS.

I have some custom UI classes, like buttons, that I want to use it in another projects.

How can I make an actionscript mobile library project?

I'm using Flash Builder 4.5, and I'm not using Flex in my code.

link|improve this question

1  
I'm not entirely sure what you're asking for. Do you want to create a swc with assets that you can reuse? Or are you looking for information about how to setup a project in Flash Builder? – Bakapii Aug 2 '11 at 14:05
I want a project with some classes that I can reuse in another projects. – VansFannel Aug 2 '11 at 16:18
Be careful with shared resources (assets/libraries/projects...) — they could be changed one day, and therefore some of the old projects could be broken. – Pavel fljōt Aug 2 '11 at 21:55
feedback

2 Answers

up vote 1 down vote accepted

You can create ActionScript project, then add it to your mobile project's references (as a source.) Or create Flex library and link it with mobile project.

link|improve this answer
feedback

Using Flash Builder 4.5:

  • choose File > Project > New

  • choose "library project"

  • check the "include AIR features" box.

This will compile a .swc, a binary file you can distribute easily.

Including AIR in this .swc ensures that all the mobile-oriented features will be compiled as well, i.e. TouchEvent.

Flex classes, that you're not using, won't be included.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.