HTML/CSS Service

Showcase

5 comments0 views
1 Star2 Stars

Flex Cairngorm Console

Category: Resources, flex tutorials    |    1,942 views    |    5 Comments

This application is intended to help development and maintenance of Cairngorm-based applications, by providing a monitor able to log internal Cairngorm operations and events, and to inspect internal Cairngorm objects, such as the ModelLocator, Commands, Events and even services.
It uses a “monkey-patched” version of Cairngorm 2.2.1 for Flex 3, and needs only a few lines of code to be integrated into your application.

Features

  • Monitor internal event flow of Cairngorm framework
  • Inspect the ModelLocator
  • Monitor all bindings and collection change events on the ModelLocator (recursively)
  • Display all commands and monitor command execution
  • Display and monitor HTTP Services
  • Shows stack traces (needs Flash Player Debug)
  • Monitor WebService and RemoteObject operationsNEW
  • Command and Notification historyNEW

Application cases

  • Check your command flow
  • Pinpoint source line where a command started
  • Check parameters and results of HTTP services
  • Check service execution times
  • Understand how your application works
  • Check data flow and values
  • Observe how Cairngorm works Read more…

    Share/Save/Bookmark

    • No Related Post

     

RIAs with Adobe Flex 3.0

Category: Flex Components, Resources    |    144 views    |    Add a Comment

Create engaging, cross-platform rich Internet applications

Flex is a highly productive, free open source framework for building and maintaining expressive web applications that deploy consistently on all major browsers, desktops, and operating systems. While Flex applications can be built using only the free open source framework, developers can use Adobe® Flex® Builder™ software to dramatically accelerate development.

Read more…

Share/Save/Bookmark

  • No Related Post

 

How to skin a combobox from Flash

Category: Learn Flex, Resources, flex tutorials    |    3,382 views    |    2 Comments

 

PROBLEM SUMMARY

You want to use a SWF file with a set of own symbols in order to customize Combobox states.

SOLUTION SUMMARY

Use the upSkin, overSkin, downSkin, and disabledSkin style properties of the ComboBox class to apply custom symbols to any combobox. These attributes can be set directly on a ComboBox instance or as part of a CSS style definition.

EXPLANATION

The first thing to do is create a file in Flash and ComboBoxSkins.swf within it to create 4 symbols of type MovieClip with different states of the ComboBox. These symbols should be named: ComboBox_upSkin, ComboBox_downSkin, ComboBox_overSkin, ComboBox_disabledSkin

 If we want to put the CSS inline style do the following:

<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
<mx:ComboBox x=”196″ y=”135″ 
upSkin=”@Embed(source=’ComboBoxSkins.swf’, symbol=’ComboBox_upSkin’)”
overSkin=”@Embed(source=’ComboBoxSkins.swf’, symbol=’ComboBox_overSkin’)”
downSkin=”@Embed(source=’ComboBoxSkins.swf’, symbol=’ComboBox_downSkin’)”
disabledSkin=”@Embed(source=’ComboBoxSkins.swf’, symbol=’ComboBox_disabledSkin’)”>
<!– PUT HERE THE OPTIONS OF COMBOBOX –>
</mx:ComboBox>
</mx:Application>

Read more…

Share/Save/Bookmark