as3hx icon indicating copy to clipboard operation
as3hx copied to clipboard

Convert AS3 sources to their Haxe equivalent

Results 56 as3hx issues
Sort by recently updated
recently updated
newest added
trafficstars

as3 code for example: ```actionscript package { public class Issue { public function Issue() { var myVar:Srting="foo" //comment } } } ``` expected result ```haxe class Issue { public function...

as3 code for example: ```actionscript package { public class Issue { public function Issue() { if (true) { //broken comment{ doIt(); } } } } ``` expected result ```haxe class...

bug

Xml for example: ```xml ``` FastXml.hx fix: ```haxe public static function parse(s:String) : FastXML { var x = Xml.parse(s); if(x != null) for(node in x) { if( node.nodeType == Xml.Document...

// Note for later before I forget this case.

bug

Do not write the result to disk

enhancement

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html#search()

enhancement

http://help.adobe.com/ru_RU/FlashPlatform/reference/actionscript/3/String.html#match()

enhancement

as3 code for example: ```actionscript package { public class Issue313 { public function Issue313() { loop: for(var i:int = 0; i < 10; i++) { for(var j:int = 0; j...

enhancement

``` source AS3 file scripts/sortBtn_Cont.as target HX file: scripts_hx/SortBtnCont.hx source AS3 file: scripts/sortBtnCont.as target HX file: scripts_hx/SortBtnCont.hx ``` This collision should produce an error. Possibly add a `sys.FileSystem.exists()` check on...

bug