greg-dove

Results 8 issues of greg-dove

Initial thoughts: There is some code in TLF/src/main/royale/org/apache/royale/textLayout/dummy but that seems to be just placeholder code. Initial thoughts: The use case for this is more general beyond TLF. This could...

Attached is both a Flex reference example (which works) and the current royale emulation of the same, which demonstrates the issues. Also see the commit discussion thread at: https://github.com/apache/royale-asjs/commit/acab343f73b939bb3b28a13f9142cba4f799104a (It...

setting htmlText does not work. (getting and setting causes errors with coercion to HTMLInputElement). Also setting innerHTML does not seem to be a viable option for native , so supporting...

Here is an example: ``` private var _config:SomeTypedObject; [Bindable] public function get config():SomeTypedObject { return this._config; } public function set config(SomeTypedObject):void { this._config = value; // Do something that causes...

-warnings=false can hide actual 'Error' level issues unless you set 'create-target-with-errors=true' switching off warnings can be helpful when working through priority issues while porting a large Flex codebase. (e.g. to...

question

Needs more investigation, but the general sense of it is in the heading. This is a reminder to try to make a minimal example to repro the issue. The issue...

A good example of this seems to be the XML swc build for SWF. It correctly generates an empty swc with no definitions other than an internal swf with the...

Support escaping curly braces to allow curly braces in string literal assignments in mxml Flex permits the following: `` where 'entry' is a local [Bindable] property and the text will...

bug