Category | Flex Development

"Practice of Actionscript 3 online!

July 24th 2008 by Julien Lestel

You will soon buy a book on AS3 and Flash 9? Here is a beautiful book produced after months of efforts by Thibault Imbert on the flash and the practice of actionscript 3. Originally scheduled to be published by O'Reilly, it's 1093 pages are finally available under Creative Commons license and can be downloaded directly on the Internet. He finally found a publisher since the paper version will be available soon: 1093 pages in PDF to read it is a bit much!

The mini-site to open the book and the book are available at: http://pratiqueactionscript3.bytearray.org

Source: HerbiFlux

If you come for the first time on Flex-info.fr, you can subscribe to the RSS feed. Thank you for your visit!

No comment

Rich interface for Youtube in Flex

July 22 2008 by Julien Lestel

UvLayer is the new interface to Youtube that offers innovative user experience for searching videos. Indeed, it can open multiple windows of video search and at the same time either by keyword or tag.

And thanks to a social function, you can track your contacts, publish and share your discoveries and achievements.

ADOBE FLEX

Finally, UvLayer is free and developed in Adobe Flex!

No comment

Vulnerability in Adobe Flex 3

July 15th 2008 by Julien Lestel

I stumbled by chance on a page in the site of CERT (Center of Expertise Government Response and Treatment of attacks) which denounces a vulnerability in the version 3 of Flex allowing indirect code injection in your applications.

Here is the link to the page of CERTA and link to the Adobe bulletin announcing this vulnerability. Adobe considers important this update and recommandeaux users to update their software installations and web site if necessary.

The solution

Adobe recommends all Flex 3 developers who authorized the module "History Management update applications created with Flex 3 and FlexBuilder proceeding like this

  1. Users of Flex 3 (Flex 3 SDK and Flex Builder 3) should update their products with this update Flex 3.0.2 SDK.
  2. Users of Flex 3, which authorized the module "Management History" in their deployed applications in Flex 3 should update all instances of the file historyFrame.html with this updated file. The 3 versions of historyFrame.html in installing the SDK Flex 3 installation can be found in the following directories:
  • (install root) / templates / client-side-detection-with-history / history / historyFrame.html
  • (install root) / templates / express-installation-with-history / history / historyFrame.html
  • (install root) / templates / no-player-detection-with-history / history / historyFrame.html

No comment

ADC on AMP - A resource for Flex developers

09 July 2008 by Julien Lestel

You are probably already aware of the release of Adobe Media Player (AMP) which is built into AIR. Many popular TV PBS, CBS, MTV and others have signed with AMP. AMP I believe will quickly become a simple and effective way to display the content and improve the experience utilisateur.De addition, Adobe has also provided videos for AMP. One of the most interesting is the channel ADC (Adobe Developer Connection). Adobe evangelists simply show how to develop in Flex, AIR, Flash ... etc

The last interview is that of Ely Greefield, which talks about Flex 4 and the future of Flex.

You'll find the same content on tv.adobe.com, but the advantage with AMP is that you can save your content and watch it later in "offline".

Go to see AMP ADC and enjoy.

No comment

Versioning and Portals Flex 3

08 July 2008 by Julien Lestel

La plupart d’entre nous n’en auront jamais besoin, mais certains gros clients de Adobe le font… While most developers of Flex at Adobe are busy working on Flex 4, some are working on a project called "Plan Marchall." Most of us will not ever need, but some wholesale customers Adobe do ...

If you want to make a Flex Portal, or if you have an application composed of many SWF to be the latest version ... or if you just have a lot of time in front of you, the following link might be interesting for you: The Marshall Plan.

No comment

[Tutorial] Referencing of the applications Flex Adobe on the search engines

01 July 2008 by Julien Lestel

With the advent of the Internet, optimizing the engine for search engines has become a full part in the computer world. The techniques of SEO (Search Engine Optimization) are numerous and useful to know which is more or less indexable by search engines. Referencing for Rich Internet Applications is even more frustrating. Currently the "robots" search engines scour the SWF files and index only the static text.

However, it is possible to obtain a very good reference ...

Read more ...

No comment

API documentation of Flash Player 10

June 02, 2008 by Julien Lestel

You can find the complete documentation of the API for Astro on the Adobe website: click here to download.

No comment

MugSho

May 23 2008 by Julien Lestel

The company NEOIA just upload a widget made in Flex, which integrates with your website, your MySpace or your facebook page. Mugsho - it is called - will allow your visitors to take photos or distorted filtered directly through their webcam right in line with PhotoBooth.




You can then choose the photos displayed on your site among the contributions of your visitors through a space hotel. For more information this is where it happens: www.mugsho.com.
It promises great things for the V2, and the use of new opportunities filters (moisture) of the player 10.

To add to Facebook vote counts: http://apps.facebook.com/_mugsho/

No comment

Strongly-typed object SOAP with Flex 3

May 19 2008 by Mickael Ruellan

Following the post Matsiya on the use of SchemaTypeRegistry to allow the conversion of objects from a SOAP Web Service in AS3 classes, I started a few experiments. The use is very simple and allows for mapping SOAP Objects complexType type classes to AS3 objects of his choice, just stating his name and namespace of the object as described in the WSDL file of Web service.

For example, imagine that we Web service returns a list of users and we want to retrieve the list in a class named "UserArray" which is actually an array of objects of type "User". Suffice it to say the association before calling the Web service by

SchemaTypeRegistry.getInstance (). RegisterClass (new QName ( "http://www.flex-info.fr/", "userArray"), UserArray);
SchemaTypeRegistry.getInstance (). RegisterClass (new QName ( "http://www.flex-info.fr/", "user"), User);

The result returned by the ResultEvent then contains a class containing classes UserArray User.

The image below illustrates the process:

SchemaTypeRegistry

As highlighted Matsiya, pity there is not more communication on this aspect of the mapping of data between Web service SOAP and Flex (Flex 3 only). I hope this post is involved ...

Update: To be more complete, the classes in AS3 objects must be written with a minimum properties as simple and may include functions to objects. Example of the User class:

package (
public class User
(
public var IDUS: Number;
public var login: String;
public var mail: String;
public var name: String;
public var password: String;
)
)

UserArray class in the example is actually an extension of the ArrayCollection class, but is not necessary if a simple ArrayCollection is sufficient.

When a system of mapping and synchronization classes Java, PHP or other classes to AS3? Il ne manque plus que ça ... non?

Addition: it seems that the mapping does not work well with Web services of type "document / literal" generated by Axis 1. The passage in "RPC / encoded" solves the problem ...

No comment

Creating custom tooltip

April 11 2008 by Mickael Ruellan

How to create your own tooltips? We know that this is possible with Flex! one says that it should be easy, but now we know how to do it ...

The small example below will probably be a bit more clear ...

- Creation of the tooltip with a custom skin
- Adjustment of the tooltip in height as in width (9-scale)
- Global positioning tooltip

This movie requires Flash Player 9

The sources here

No comment

Subscriptions

  • Add to My AOL
  • Add to Google
  • Add to Zune
  • Add to Netvibes
  • Add to Technorati
  • Add to My Yahoo
  • Add to Zune

Survey

How do you find the new Flex-info.fr?

View Results

Loading ... Loading ...

Mugsho