Flex

 

ilan 06/01/2010 - 16:17

ELIPS Studio 3 is a plug-in for Adobe Flex Builder,  which allows Flex to go mobile!

 

Can't wait to test it...

 

Anyone knows about alternatives?

 

-Ilan

ilan 13/12/2009 - 17:46

I was asked to find a way for separating our localization resources out of the application swf, so that different locales can be loaded at runtime.
Pretty quickly I found the "Using resource modules" help subject, which explains how to create, compile and load resource modules,  which are SWF files, separated from your application SWF, that contain resources bundles for a single locale.
While trying to set up a demo application (didn't found one) using the instructions in the help files, I bumped into several issues which I will explain here in hopes that it will save you the time, and added the sample app as well.

ilan 09/12/2009 - 11:21

Hi all,

 

Our next Flex group meeting will focus on how to set up a BlazeDS connection from a Flex app to a Java server.

The meeting is not a BlazeDS lecture but rather a step by step demo.

You can bring your laptops for a hands on experience.

 

The meeting will be held at Tikal's offices (Habarzel 32A Tel-Aviv) on Tuesday, 1st of December, 09:30 , and will be presented by Yossi Shemer.

 

Cheers,

 

-Ilan

 

 

ilan 26/11/2009 - 11:03

 http://www.slideshare.net/herrodius/spring-actionscript-at-devoxx

adi 20/11/2009 - 01:41

          What is Cairngorm?

Cairngorm is fundamentally a methodology for breaking up your

application code by logical functions; by data, by user views, and by the code that

controls everything. This is routinely referred to as MVC.

 

The Pieces of Cairngorm
· Model Locator: Stores all of your application’s Value Objects (data) and
shared variables, in one place. Similar to an HTTP Session object, except that
its stored client side in the Flex interface instead of server side within a
middle tier application server.
· View: One or more Flex components (button, panel, combo box, Tile, etc)
bundled together as a named unit, bound to data in the Model Locator, and
generating custom Cairngorm Events based on user interaction (clicks,
rollovers, dragndrop.)
· Front Controller: Receives Cairngorm Events and maps them to Cairngorm
Commands.
· Command: Handles business logic, calls Cairngorm Delegates and/or other
Commands, and updates the Value Objects and variables stored in the Model
Locator
· Delegate: Created by a Command, they instantiate remote procedure calls
(HTTP, Web Services, etc) and hand the results back to that Command.
· Service: Defines the remote procedure calls (HTTP, Web Services, etc) to
connect to remote data stores.

 

Fit All the Pieces Together

Your client interface is comprised of Views. The Views use Flex binding to display data contained in the Model Locator.

The Views generate Events based on user gestures such as mouse click, button press, and drag & drop.

Those Events are “broadcast” and “heard” by the Front Controller, which is a map of Events to Commands.

Commands contain business logic, create Delegates to perform work, handle responses from Delegates,

and update the data stored in the Model Locator. Since Views are bound to the data in the Model Locator the Views
automatically update when the Model Locator data is changed.

Delegates call Services and hand results back to Commands, and are optional but recommended.
Services make remote data calls and hand the results back to Delegates.

 

 

Read more :

yossis 15/11/2009 - 15:40

In part 1 we discussed Jmeter configuration.

In this part, we'll go over EC2 configuration

 

We’ll be using Amazon’s cloud computing service (aka EC2/S3).

I’ll be assuming you already have an account with Amazon. If you don’t, create one, and save the cert-XXX.pem and pk-XXX.pem key files.

sefi 22/10/2009 - 08:10

A while back, a client needed to stress test his application.
Since I had some experience with JMeter before, and was eager to try out Amazon’s EC2 (Elastic Compute Cloud), this was the setup I offered.
Turns out it worked remarkably well.


Detailed explanation and utility files/scripts follows…
In part 1 we'll discuss Jmeter configuration in detail.
In part 2 we'll go over the configuration procedure of EC2, and how to run the test on a distributed environment.

sefi 21/10/2009 - 23:35

Hello!

Today, we are going to discuss introspection and private namespaces in AS3/Flex!

 

The motivation to use private namespaces in the context of introspection is to be able to expose API implemented in your class in a way that is not public (everyone can use it), protected (only inheriting classes can use it) or private (only the class can use it).

 

Consider this: You are implementing a framework, and one of the classes (ClassA) is used both by the framework users (external) and within the framework (internal). That means that all the functionality in ClassA that is intended for external use must be public. Unfortunately, so does the functionality intended for internal use.

 

sefi 14/10/2009 - 11:35

This is the video (Hebrew) and the presentation of the Flex group meeting of Wendsday, 22 of July 2009.

 

The meeting included a lecture regarding creating custom components in flex 3:

ilan 23/07/2009 - 15:00
Syndicate content