четверг, 29 мая 2008 г.

Организация метаданных класса

Информация для статьи Хороший стиль Flex-программирования. Структура файла.

//--------------------------------------
// Events
//--------------------------------------
/
**
* ASDoc comment.
*/
[Event
/**
* ASDoc comment.
*/
[Event
//--------------------------------------
// Styles
//--------------------------------------
/**
* ASDoc comment.
*/
[Style
/**
* ASDoc comment.
*/
[Style]
//--------------------------------------
// Effects
//--------------------------------------
/**
* ASDoc comment.
*/
[Effect
/**
* ASDoc comment.
*/
[Effect]
//--------------------------------------
// Excluded APIs
//--------------------------------------
[Exclude(name="horizontalAlign", kind="style")]
[Exclude(name="verticalAlign", kind="style")]
//--------------------------------------
// Other metadata
//--------------------------------------
[DefaultBindingProperty(source="text", destination="text")]
[IconFile("Text.png")]

среда, 28 мая 2008 г.

Блок Copyright

Информация для статьи Хороший стиль Flex-программирования. Структура файла.


////////////////////////////////////////////////////////////////////////////////
//
// ADOBE SYSTEMS INCORPORATED
// Copyright 2008 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////

среда, 14 мая 2008 г.

Стиль без скина. MXML

.styleName {
skin: ClassReference(null);
}

HandCursor над кнопкой. MXML

<mx:Button label="Button" useHandCursor="true" buttonMode="true" mouseChildren="false" id="button_name" />