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

source AS3 file: C:/Users/User/Desktop/com/google/analytics/debug /AlertAction.as target HX file: C:/Users/User/Desktop/out/com/google/analytics/debug /AlertAction.hx Called from ? line 1 Called from Run.hx line 100 Called from Run.hx line 71 Called from Run.hx line 71...

as3 code for example: ```actionscript package { public class CollisionList { public function CollisionList(target, ...objs):void //code here... } } } ``` Just saw that this produced an endless loop in...

bug

If a brace is followed by a comment on the next line, the brace is removed and added the end of the comment and now the code is missing a...

as3 code for example: ```actionscript package { public class Issue { public function Issue() { var string:String/*test*/ = ""; var o:Object = [1, 2, 3]; var a:Array = o as...

Looks like missed ";" after break cause converting error ``` package { public class Test { private function func():int { switch( platform ) { case 1: return 1; break case...

bug

My project uses standard adobe libraries: ``` com/adobe/fileformats/vcard/Address.as com/adobe/utils/ArrayUtil.as com/adobe/images/BitString.as com/adobe/protocols/dict/util/CompleteResponseEvent.as com/adobe/protocols/dict/events/ConnectedEvent.as com/adobe/protocols/dict/Database.as com/adobe/protocols/dict/events/DatabaseEvent.as com/adobe/utils/DateUtil.as com/adobe/protocols/dict/Definition.as com/adobe/protocols/dict/events/DefinitionEvent.as com/adobe/protocols/dict/events/DefinitionHeaderEvent.as com/adobe/protocols/dict/Dict.as com/adobe/protocols/dict/DictionaryServer.as com/adobe/protocols/dict/events/DictionaryServerEvent.as com/adobe/utils/DictionaryUtil.as com/adobe/protocols/dict/events/DisconnectedEvent.as com/adobe/net/DynamicURLLoader.as com/adobe/fileformats/vcard/Email.as com/adobe/air/crypto/EncryptionKeyGenerator.as com/adobe/protocols/dict/events/ErrorEvent.as com/adobe/air/filesystem/FileMonitor.as com/adobe/air/filesystem/events/FileMonitorEvent.as com/adobe/air/logging/FileTarget.as...

Build for cpp target (windows / android) using MS Visual Studio 2017 produce errors: float_of_string / constant too big, caused by FLOAT_MAX ``` #elseif cpp return 1.79769313486232e+308; #elseif python ```...

Fix for https://github.com/HaxeFoundation/as3hx/issues/339