Flex 4 is build around TLF and to embed fonts you need to add "embedAsCFF:true" to the Embed statement which is a Flex 4 (or greater) option.
photography by Kristel van Beek
posted by: martijn, at 6 April 2011 22:42 GMT+1, 6 April 2011 22:52 GMT+1
Flex 4 is build around TLF and to embed fonts you need to add "embedAsCFF:true" to the Embed statement which is a Flex 4 (or greater) option.
Please note: This is a dump of a test project and is absolutely explained etc.
posted by: martijn, at 26 November 2010 12:16 GMT+1, 26 November 2010 12:25 GMT+1
override public function addEventListener(
type:String, listener:Function,
useCapture:Boolean = false,
priority:int = 0,
useWeakReference:Boolean = false):void
{
if ( !
(
type == MouseEvent.CLICK ||
type == MouseEvent.DOUBLE_CLICK ||
type == MouseEvent.MOUSE_DOWN ||
type == MouseEvent.MOUSE_MOVE ||
type == MouseEvent.MOUSE_OVER ||
type == MouseEvent.MOUSE_OUT ||
type == MouseEvent.MOUSE_UP ||
//type == MouseEvent.MOUSE_WHEEL||
type == KeyboardEvent.KEY_DOWN ||
type == KeyboardEvent.KEY_UP
)
)
{
super.addEventListener(type, listener, useCapture,
priority, useWeakReference);
}
};
Ugly but works!
posted by: martijn, at 24 August 2010 12:49 GMT+1, 25 August 2010 22:35 GMT+1
The application can test XPath 1.0 style queries and for good error reporting you need the Flash Debug Player. The project heavily depends on the as3xpathlib written by Andrew Lewisohn (alewisohn).