“Specifies whether the component is included in the layout of the parent container.
If true, the object is included in its parent container’s layout.
If false, the object is positioned by its parent container as per its layout rules,
but it is ignored for the purpose of computing the position of the next child.”
[from the API of flex]
The demo application follows for the source right click and view source.
Flex
28
Jun 09
The Beauty of includeInLayout
4
Jun 09
Get Ready for Flex Builder 4 and Flex Catalyst demo
Adobe® Flash Catalyst® Beta Features
Wednesday, June 10, 2009 11:00 AM PTIn this seminar you’ll get a look at the features of Flash Catalyst Beta. See how you can convert artwork into Flex components, how to create states and transitions, and how to share a Flash Catalyst project so it can be opened inside of Flex Builder “Gumbo”.
Adobe Flash Builder 4 Beta (formerly Flex Builder) Simplifies Flex for ColdFusion Developers
Thursday, June 11, 2009 11:00 AM PTIn this seminar you’ll get a chance to see some of the productivity enhancements we’ve made for developers in the next version of Flex Builder. You’ll see how easy it is to connect your Flex application to a ColdFusion application and you’ll also discover how to take advantage of the power of ColdFusion right inside of your Flex applications.
So why late get register for the e-seminars, its free.
Adobe – Online events : Event Details
3
Jun 09
Flex 4 SDK Beta Released!
And finally Adobe announce that Flex 4 SDK beta (previously code named Gumbo) is now available on our Labs page! Go check out Labs for more details and to download the beta. Also, be sure to check out Matt Chotin’s What’s new in the Flex 4 SDK Beta and Joan Lafferty’s Differences between Flex 3 and Flex 4 articles. This beta release also coincides with the beta release of both Flash Builder and Flash Catalyst.
Adobe will be having an community Open Beta Meeting at the end of June for you to give the team feedback, stay tuned for details. In the meantime, you can discuss the beta on the Labs forums.
Enjoy the beta!
18
May 09
ObjectUtil.copy is not working as you are expected
Couple of minutes back when I tried to deep copy my object its just returning me null.
when I tried to assign it for a object its working.
I gone through the implementation its simple and effective…
public static function copy(value:Object):Object
{
var buffer:ByteArray = new ByteArray();
buffer.writeObject(value);
buffer.position = 0;
var result:Object = buffer.readObject();
return result;
}
Then why its not working… reason is simple ![]()
Copies the specified Object and returns a reference to the copy. The copy is made using a native serialization technique. Confused.
Use the [RemoteClass] metadata tag to register the class with Flex so that Flex preserves type information when a class instance is serialized by using Action Message Format (AMF).
We have two ways to add the type information to the class:
1 . using [RemoteClass]
2. registerClassAlias(“my.pkg.class”,class);
This will resolve the problem.