Tagged Questions

5
votes
4answers
3k views

Syntax Highlighting library in ActionScript

I let user enter some code in my Flex3 (Flash 10) app and I want to do syntax highlighting. Is there any open-source library that would help me? I'll need a Lua syntax support, but I can add it ...
3
votes
2answers
152 views

Using Actionscript (MovieClip) class in flex

I have a piece of Actionscript code that Implements MovieClip. I don't seem to be able to get it to display in my application. What I've tried: 1) Using the class directly in my code via UIObject ...
3
votes
4answers
750 views

Unit Testing Flex/Flash Libraries in FlashBuilder

For a normal Flash/Flex application I would include my Unit Tests in my application project (perhaps in a tests source folder alongside my main src folder). I'd then have two application entry points: ...
3
votes
3answers
806 views

Best Tools for 2D Constructive Area Geometry

What are the best tools/libraries (in any language) for working with 2D constructive area geometry? That is, a library working with more or less arbitrary two dimensional shapes and supplying ...
2
votes
2answers
441 views

How can I make FlashBuilder use a custom namespace prefix

I have a component library. It has a manifest file that looks like this: <?xml version="1.0"?> <componentPackage> <component id="AutoComplete" ...
2
votes
1answer
225 views

flex imap library

I'm looking for an imap library to use in flex but can't find any. I know that can be done from scratch, but thought i should ask before reinventing the wheel. Thanks in advance for any pointers.
2
votes
4answers
473 views

Best Practices for how to include unit tests in a library

I'm working on a general code library for ActionScript 3.0 called as3lib which includes several extensions to the core API and some useful functions. I've written several unit tests (using FlexUnit) ...
2
votes
3answers
1k views

What is the best way to share assets - icons/images - across multiple Flex applications?

I am in the process of creating a new - "lite" - version of a Flex application I created a while ago. I have been porting over many of the Classes and Components to a Flex Library Project that ...
2
votes
1answer
1k views

Flex JSon socket messaging

What is the best way to implement async json socket communication between Flex client and custom server? Is there a library that can listen to socket and fire event when complete json message/object ...
1
vote
2answers
791 views

Use embedded images in FlexLib Project in Actionscript Project

I have a FlexLib Project with a embed class: package { public class EmbedAssets { [Embed( source="image.png" )] public static var IMAGE:Class; } } At the same project, ...
1
vote
3answers
111 views

(My)SQL in Flex - any good libraries?

I need to develop a small Flex application that needs to access a MySQL database. Since I have little experience in server-side Java, PHP programming I would prefer to use a library/framework that ...
1
vote
2answers
222 views

Flex - objects floating at the top of a canvas?

I want to have a canvas with some "floating" property. Basically when I add child to it, the child should float at the top. When I add the second child, it should float above the previous one. For ...
1
vote
2answers
133 views

Is there an easy way to find orphan classes in a Flex/ActionScript project?

I have been in the process of creating a "lite" version of an existing Flex application, and thereby porting many of the classes that are used by both into a library project. As such, I want to easily ...
0
votes
0answers
47 views

How to include Parsley once in library for project propogation?

I'm trying to set up a rather extensive set of Flex library projects so that I can build all functionality as modular components. Each individual library can be included in a test project at any given ...
0
votes
1answer
131 views

Embed Adobe Air/Flex application inside a standard iOS application

I have a native (Obj-C, standard Xcode project) application and I'd like to integrate a partners iOS application (or specifically, it's functionality) into it as just another view in my application. ...
0
votes
0answers
185 views

How to use flex library project in flex mobile project?

I am quite new in flash. I made a Flex Library project and in that library I have MXML module inside. How can I use it in flex mobile project? I want to create a library that covers specific module ...
0
votes
2answers
108 views

Facebook Flex SDK will not import, any ideas?

I'm trying to setup the Facebook sdk for Flex for the first time. I simply copied the Graph API 1.6 web into my lib folder. And when i try and import it, it even shows up as you type, as you can see ...
0
votes
1answer
48 views

Communicating between Flex Project and Customed Library

Can we access the variables of main project in the customized library or vice-versa ?
0
votes
0answers
151 views

How to validate a SWC library's manifest.xml?

I have an Ant build for a library, and the library has a manifest.xml (to specify the namespace). How do I validate that the manifest.xml has all the classes that I'm building in the library? ...
0
votes
1answer
215 views

How To Access a SOAP WebService From a Flex Library Project

I would like to access a soap webservice from a class in a Flex (AIR) Library Project. How can I instantiate a WebService and get data from a SOAP WebService.
0
votes
1answer
132 views

Flex compile problem with as3httpclient

I am having trouble getting a Flex application (with as3httpclient) to work. I compiled it (compc -load-config=build-swc.xml), put the as3httpclientlib-1_0_6.swc in my libs dir, and ran mxmlc ...
0
votes
3answers
611 views

Flex Open Source Calendar / Enhanced DateChoose

I currently use iLog Elixir calendar component, and I am not entirely happy. It is buggy, support sucks and I can't play around with the source. Does anybody know of a good, well maintain flex ...
0
votes
1answer
124 views

CSS in a Flex 3 Library

I've made a library in flex with different components and my CSS I want to use in different projects (the goal of a library....). BUT even if I can use my components, I can't use my CSS file which is ...
0
votes
1answer
64 views

Linear gradients library

Is there a place online where I can find like 16 linear gradients that match good with each other? I need them for a chart of mine and the ones generated (by Flex) aren't good enough. So, I'm kind ...
0
votes
1answer
456 views

What is a good 3D library for Adobe Flex?

I need a 3D library that works well with Flex... NOT Flex Builder - the free Flex SDK.
0
votes
1answer
126 views

Do you know of any Flex Point and Click game Libraries?

I'm looking for a game library for Flex that supports such features as: Movement Inventory Items Does anyone know of any libraries that might be suitable?
0
votes
1answer
375 views

How to use RaVis Library? Some ideas?

I'va been monkeing with this lib : Ravis. It a librari on .swc, someone know how to use or configure this library on NetBeans 6.5? I use Windows XP and Vista! Thanks to all
0
votes
2answers
661 views

Circular dependencies in flex libraries

I have two Flex libraries that reference each other. Both use link type "External", and I manually load then with the Loader class. I'm getting the error "A cycle was detected in the build path of ...
0
votes
1answer
41 views

Mixing different version of the same library in flex

How can I use two version of a library in the same project in Flex (using Eclipse). (in my case the library is papervision3d , and I have written some code using the older version, but due to big ...
0
votes
1answer
1k views

Where should I store reused static string constants in Flex application?

I have two Cairngorm MVC Flex applications (a full version and lite version of the same app) that share many Classes. I have put these Classes into a Flex Library Project that compiles as an SWC. Both ...