Feathers - Open Source UI Controls for Starling Framework. Mad-components - User Interface components and framework for Adobe AIR Mobile. Suitable for iPhone or Android, etc. IMPORTANT NOTICE DOWNLOAD .swc LIBRARIES FROM Google Code have changed their policy for downloadable files. It is no longer possible to supply .swc downloads here. Although source code will still be maintained on this Google Code site. Please join the Facebook Group - and obtain the .swc library files from there. User Interface components for Adobe AIR Mobile. The model feature enables connection of lists and forms to remote data services. You can download or check-out a code example from here. Full asdoc class documentation:- Flex (Flash Builder) users can check out examples from the subversion repository:- Or you can just view code examples at:- Michael Martinez' tutorials:- Flex Charting Components. Features Powerful data-viz Advanced serial charts We made it easy to display complex data visualizations.
Combine various graph types on a single chart. Superior time-based scales When displaying flat series just doesn’t cut it, amCharts comes in with true date/time scale support. Micro-charts and sparklines Reduce the charts to complete minimal configuration to produce tiny but usable micro charts by disabling a few components like axes, legends and margins. Functional Interactive Zoom or pan serial charts, drill-down to other data levels, select slices, toggle graphs using legend, display HTML-rich contextual info, or draw trend lines directly on chart.
Export options Annotate and export charts dynamically to various formats including static images, SVG, PDF, Excel, and CSV. Load external data Easily setup and load external data sources in JSON or CSV formats. Extendable Enhance charting capabilities with a range of plugins built by amCharts team. Adaptive Responsive Mobile-friendly Accessible Dynamic. Kap Lab: Flex data visualization components and development optimization tools. Flex and air advanced datagrid export excel dynamic column. Home » Flex 11 March 20113 Comments Flexspreadsheet is a DataGrid Component for FLEX and Air project with many custom features added. Problem: Display unstructured data in Datagrid and Export to excel. To display unstructured data to datagrid, means creating columns and row dynamically and adding the unstructured data to the datagrid; Export the flex datagrid to excel file format.
The excel file exported from Flexspreadsheet is well formatted and wordwrap supported than as3xls. Solution: We are going to use flexspreadsheet datagrid component to add dynamic rows and column, and the same component to export as Excel format file. Download the sample Excel file created Application with dynamic row and column. First download MecGrid and MecExporter Create a new project in flex or download the source below to add below files to libs folder MecExporter.swcMecGridLib.swc Create an MecGrid instance as below with an ArrayCollection DataProvider “dpHierarchy”. Add the below code in init handler: 68 Small but Useful Open Source ActionScript Libraries(misc) help Flex/Flash Developers Improve Work Efficiency. We prepared a list of Misc Class in pervious article 8 Useful Misc ActionScript Class.
There are more and more open source projects floating around all over the place, it’s real beauty for all Flex/Flash developers. Here is a new list open source ActionScript 3 MISC libraries – all of them are small but very useful. Please don’t stint your time to try, these libraries can help you to improve your develop efficiency faster. Please left you comment to help consummate this list if you feel I missed anything. 1. appcorelib Open Source Flex Application Core Library, AppCoreLib is a collection of useful classes that facilitate easy RIA development with regards to XML based data being pulled in. AppCoreLib provides simple XMLDataBroker classes with convenience methods that allows easy traversal of the XML data using simple IDs. 2. as3awss3lib as3awss3lib is an AS3 library for accessing Amazon’s S3 service. 3. as3barcodelib 4. as3bloggerlib 5. as3cannonball 6. as3csslib 7. as3corelib 8. as3crypto 56. AlivePDF - ActionScript 3 Open-Source PDF Library – 100% client side PDF generation which makes you and your server happy ;)
ActiveTuts+ “Using AS3XLS with the Flex Framework” Series | VectorCollection. Adobe Alchemy: a comparative example (Comtaste Consulting | Enterprise RIA consulting and development) In my last post I introduced the Alchemy Project and I explained how to install/set up the Alchemy environment on a Window machine to compile a very simple "c" file in a swc. Today I'll go deeper and talk about Alchemy through a comparative example: Alchemy aimes to allow users to take advantage of efficient C/C++ (existing or not) designed to accomplish very cpu-intensive tasks. The performance improvements of flex applications can be very significant e I'll try to give you a sample, with a simple test: I've implemented an inefficient and decidedly didactic ordering algorithm, the BubbleSort , either in Actionscript and in C/Alchemy.
Then I've tested both implementation to order an actionscript reverse ordered array of integers with 20,000 elements(the worst case for the bubblesort algorithms). Here is the Actionscript implementation: public function bubbleSort(array: Array ): void var alto: int = array.length; for ( var i: int = 0 ; i if (array[i] > array[i+ 1 ]) array[i] = array[i+ 1 ];
FlashPad » Blog Archive » Photoshop file format importer / parser in flash AS3. For a recent Flex CMS project I needed PSD importer so I went googling in a hope for a decent PSD parser. I found only one somewhat usable project which was essenialy a Java port of this parser that imported psd files into flash.. The problem with this parser was in supported only very, basic, plain psd files, and adding anything (like a folder group for example ) would break it. So I decided to write my own one instead. As you might have heard psd isn’t exactly the easiest format to parse, so rather then starting from the scratch I based a portion of the code on the Munegon’s parser, also referenced Yet another PSD parser by Jonas Beckeman written in java. Quite helfull was this Python PSD parser and of course an official PSd file format specifications document from Adobe.It was still lot of trial and error, as even official CS format specification docs aren’t complete and contains errors.
But at the end I got this : and this is the same file in Photoshop : What is currently supported : Protect Your Flash Files From Decompilers by Using Encryption | Twice a month, we revisit some of our readers’ favorite posts from throughout the history of Activetuts+. This tutorial was first published in February, 2010. In this tutorial I will demonstrate a technique I use to protect code and assets from theft. Decompilers are a real worry for people who create Flash content. You can put a lot of effort into creating the best game out there, then someone can steal it, replace the logo and put it on their site without asking you. How? Before We Begin I used a small project of mine to demonstrate how vulnerable SWFs are to decompilation. What Can We do About it? I came up with a technique for protecting SWFs from decompilers and I'm going to demonstrate it in this tutorial.
The code that is decompiled is actually the code for decrypting the content and has nothing to do with your main code. Before we get going, I want to point out that this tutorial is not suitable for beginners and you should have solid knowledge of AS3 if you want to follow along.