- Your Locale:
- English (United States)
- Your Time Zone:
- Coordinated Universal Time
- Scott Janousek's Flash Mobile Blog (1 hour)
- Yahoo! Flash Blog (1 hour)
- Engin Yöyen - Stay Updated On Web (English) (1 hour)
- justGREAT! (1 hour)
- Biskero (1 hour)
- Cristalab (1 hour)
- CodFusion (1 hour)
- CFgears (1 hour)
- O'Reilly Radar (2 hours)
- www.shanky.org (3 hours)
ComboCheck 1.2.3: bug fixed
Fixed bug with checkbox checked at dropdown in component ComboCheck. Thank you giorgio for the comment! (translate)
Alegria 0.8, easy flex gallery of images
Alegria is a Flex component to show easily a gallery of images. You can configure following properties: numItems to apply the number of images per page Click with the right button to obtain source code. (translate)
MyEventCalendar 0.9, Joomla component to display events
MyEventCalendar is a component to manage events in Joomla. This componente provide a simple way to display events created and managed by the user and events generated by the administrator of the system that are shared by all registered users. Set up it with Joomla installation and you must install component and module to display events.. Version [...] (translate)
ComboBox doesn’t accept paged collections
Using paged collections (in GraniteDS) as data source in a flex comboBoxcomo we get following error: Error: Items pending from 0 to 20 for index 10 at org.granite.tide.collections::PagedCollection/getItemAt()[C:\workspace\graniteds\as3\framework\org\granite\tide\collections\PagedCollection.as:507] at ListCollectionViewCursor/moveNext() at mx.controls::ComboBox/calculatePreferredSizeFromData() at mx.controls::ComboBase/measure() at mx.controls::ComboBox/measure() at mx.core::UIComponent/measureSizes() at mx.core::UIComponent/validateSize() at mx.managers::LayoutManager/validateSize() at mx.managers::LayoutManager/doPhasedInstantiation() at Function/http://adobe.com/AS3/2006/builtin::apply() at mx.core::UIComponent/callLaterDispatcher2() at mx.core::UIComponent/callLaterDispatcher() SOLUTION: In spite of using big amount of data in the component we can use the complete list (without [...] (translate)
BlazeDS application example
Flex project example with BlazeDS and Eclipse. There are many tutorials on Internet very simple: Create a Flex project with J2EE nature Import BlazeDS war to recreate project structure Configure flex remoting config files Create java services and register them in the config files Create RemoteObject components in Flex client pointing to these services Download BlazeDSHelloWorld example (translate)
Object serialization with Amf3Output of BlazeDS
Amf3Output class included in BlazeDS libraries allow us a simple way to serialize objects from server to client in AMF3 format. Download complete example as flex J2EE project (translate)
ComboCheck: bug fixed
Fixed bug with checkbox checked at dropdown in component ComboCheck. (translate)
Select item by value in a ComboBox
Flex ComboBox extended to implements a select by value feature: package com.arcadiocarballares { import mx.controls.ComboBox; public class ComboBoxByValue extends ComboBox { private var _selectedValue:int; public function SelectByValueCombo() { super(); } public function get selectedValue():int { return _selectedValue; [...] (translate)
Data encryption with Flex and Java
Applications which need extra security in Flex can use data encrypting. This system must encrypt data in server (Java) and transmit it encrypted so only client system (Flex) could decrypt them. In the inverse process, client encrypts data to send it to the server. Thus we guarantee secure data transfer. There are few system of asymmetric [...] (translate)
ComboCheck: CheckBox inside of a ComboBox
ComboCheck is a Flex component which extends ComboBox class and display CheckBox as itemRenderer with multiple selection. It provide selectedItems property to store provided object in the ComboBox dataProvider and selected by the CheckBox. Click with the right button to obtain source code. (translate)