2

I went through many links like this,this and this, but not getting good direction to move with. I need to implement some flash content in my iPhone app. Can anybody help me with some good tutorials to move on with the conversion process. Thanks in advance.

Suppose I am having a flash air iOS app and I need to convert the whole app in objective c for say adding some features like APNS then I have to do some needful. I want to convert the air iOS based app in objective c for same thing and hence need a tool like Haxe. Kindly help me with some tutorial or any other tool available. Thank you.

Community
  • 1
  • 1
Yama
  • 2,649
  • 3
  • 31
  • 63

2 Answers2

4

I would recommend to check out http://www.haxenme.org/ to support iOS

3

Basically, Haxe is a new language (by new, I mean different than others, not recently developed). It's compiler can compile Haxe code to target different platforms like C++ / C#, Flash, NekoVM, PHP and JavaScript. That said, its syntax is similar to Flash ActionScript.

To conclude, Haxe does not convert one language to another. It is a language in itself, which can be compiled targetting different platforms. So if you can port your {insert language name here} code to Haxe, then you can compile it to any of the languages mentioned in http://haxe.org/doc/intro

Gama11
  • 31,714
  • 9
  • 78
  • 100
Pranav Hosangadi
  • 23,755
  • 7
  • 44
  • 70
  • Thanks Pranav. But I already went through that link. What I need is provide me link of some good tutorials if you have some.thanks. – Yama Dec 15 '11 at 08:55
  • ya but i could not find any iPhone specific. – Yama Dec 15 '11 at 08:58
  • If you want to compile ActionScript and run it on iPhone, check out http://www.adobe.com/products/air.html – Pranav Hosangadi Dec 15 '11 at 09:10
  • Suppose I am having a flash air iOS app and I need to convert the whole app in objective c for say adding some features like APNS then I have to do some needful. I want to convert the air iOS based app in objective c for same thing. – Yama Dec 15 '11 at 09:15
  • oh.. Then you need to rewrite the code in iOS. I don't think there is any tool available to convert AS3 to Obj-C – Pranav Hosangadi Dec 15 '11 at 09:19
  • What if the app is already launched in store. I hope you can get idea that you can not get exact look with objective c like flash app. For the same reason I was finding some tool. – Yama Dec 15 '11 at 09:23
  • Well in that case you will have to (a) Find a workaround in AIR or (b) not mind if the look is different. – Pranav Hosangadi Dec 15 '11 at 09:32
  • If APNS = "Apple Push Notification Service", you don't need to convert it to ObjC, you could use an ANE extension for Adobe AIR, someone even already wrote one for that: http://flashsimulations.com/2011/12/16/apple-push-notification-service-native-extension-for-adobe-air/ – wildpeaks May 04 '12 at 02:27