Adobe Released AIR 3.6 beta, Flash Player 11.6 beta,AIR SDK with ASC 2.0

Categories: Flex; Tagged with: ; @ January 17th, 2013 11:25

Updates to AIR 3.6 beta, Flash Player 11.6 beta, and AIR SDK with ASC 2.0 have been released to Adobe Labs for download:

AIR 3.6 beta – Deliver games, content and apps to multiple platforms using a common codebase. This update adds packaging and loading for multiple SWFs.

Flash Player 11.6 beta – This update includes graphics data query and full screen permission dialog UI improvements. Access a preview of the Stage3D extended profile

AIR SDK with ASC 2.0 – Preview 5 versions of AIR 3.4 SDK with ASC 2.0, AIR 3.5 SDK with ASC 2.0, and a pre-release version of AIR 3.6 SDK with ASC 2.0 Preview 5 are now available. These previews contain bug fixes as outlined in the updated release notes.

Here is a good post about ASC 2.0 : Introducing ASC 2.0

Apache Flex 4.9.0 Released! Apache 发布Flex 4.9

Categories: Flex; Tagged with: ; @ January 12th, 2013 9:46

The Apache Flex community is pleased to announce the release of Apache Flex 4.9.0!

Apache Flex is a highly productive, open source application framework for building and maintaining expressive applications that deploy consistently on all major browsers, desktops and devices (including smartphones, tablets and tv).

This is the first release since Apache Flex has been made a top level Apache Software Foundation project.

Apache Flex is available in source and binary form from the following download page: http://flex.apache.org/download.html

It’s recommended you install Apache Flex by using the Apache Flex IDE installer.

When downloading from a mirror site, please remember to verify the downloads using signatures or MD5 hashes.

For more information on Apache Flex, visit the project home page.

Thank you for using Apache Flex,
The Apache Flex Community

https://blogs.apache.org/flex/entry/apache_flex_4_9_0

Apache Flex度过孵化期,成为Apache正式成员 Apache Flex now an official Apache project

Categories: Flex December 24th, 2012 13:58

On 12/19/2012 the Apache Software Foundation Board has voted this project in as a TLP (Top-Level Project). We will now be known as the Apache Flex project. More updates to come!
http://incubator.apache.org/flex/

The Official Flex Team BlogApache Flex now an official Apache project!

As you may recall, Flex was donated to the Apache Software Foundation at the end of 2011.  According to Apache rules, we had to spend some time in “incubation” to ensure that an active community could carry Flex forward independent from Adobe, and learn the “Apache way” of making release, building community and resolving conflict.

I am pleased to announce that in a recent Apache board meeting, they approved a resolution to “graduate” Apache Flex and make it a full-fledged top-level project at Apache!

The Apache Flex community is working on new releases as we speak with new locales and bug fixes, and exploring ways of cross-compiling ActionScript to JavaScript.

The Apache Flex URLs will be changing as part of the graduation process, but for now you can find us via this handy-dandy redirect: http://www.adobe.com/go/apacheflex

Adobe Flash builder 4.7 Released

Categories: Flex; Tagged with: ; @ December 17th, 2012 10:14

Adobe released Flash builder 4.7 last week,  got several new features. 

 

Release features

       For more information, see Quick Assist.

http://helpx.adobe.com/flash-builder/release-note/flash-builder-4-7-release-notes.html

在Flex中使用JSON新手入门: 读取豆瓣API

Categories: Flex; Tagged with: ; @ December 13th, 2012 17:59

豆瓣提供了丰富的API, 在Flex中可使用WebService快速调用。

读取指定用户收藏过的图书:

image

 

在Flex中使用JSON

FlashPlayer 11开始原生支持JSON:

Native JSON (JavaScript Object Notation) Support — Allows ActionScript developers to take advantage of high performance native parsing and generation of JSON-formatted data.

http://helpx.adobe.com/x-productkb/multi/release-notes-flash-player-11.html

在Flex SDK 4.6中已有顶级类: JSON。

如果使用旧的SDK, 则可以as3corelib:

An ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript? 3. These include classes for MD5 and SHA 1 hashing, Image encoders, and JSON serialization as well as general String, Number and Date APIs.

不过看起来已经有两年多没有更新了。 swc下载地址:  https://github.com/mikechambers/as3corelib/downloads

SDK4.6与As3CoreLib中JSON Class的method name略有不同。

代码:

			private function onJSONLoad(event:ResultEvent):void
			{
				var rawData:String = String(event.result);
				var rawResult:Object = JSON.parse(rawData);
				var books:Array = (rawResult.collections as Array);
				
				var dp:ArrayCollection = new ArrayCollection(books);
				dataGridBooks.dataProvider = dp;
			}

在GitHub上查看完整代码:https://github.com/DavidGuoliang/DoubanAnalytics/blob/master/src/DouBanJson.mxml

Newer Posts <-> Older Posts



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.