There is no excerpt because this is a protected post. Read More
We release something new every couple of weeks.
Want to know when the next free ANE is out?
There is no excerpt because this is a protected post. Read More
There is no excerpt because this is a protected post. Read More
Hello, fellow Flash developer! Did you find this page while looking for “the #Swift equivalent of this #ActionScript piece of code”? Or are you looking to transfer your #Flash skills into native #iOS development? In either case, you are in the right place. If you have spent some time making Flash apps and coding in ActionScript, you are well on your way to knowing your way around Swift and won’t need to start from scratch. We have collected some resources that can help on your learning journey: they have been created with your experience in mind and by developers who speak your language – after Read More
We have a brand new book for Flash and ActionScript developers who want to make iOS apps with with Swift, called Migrating to Swift from Flash and ActionScript. You can get the electronic edition (Kindle, PDF, EPUB) from Amazon or Apress or you can pre-order the print edition, which is coming out on November 13th 2016. You can also download a free sample here.. Is Flash dead? Not quite yet. And neither are your Flash and ActionScript skills. But we can all feel the wind of change that Swift – Apple’s latest programming language – is bringing. This might be sad news for Read More
In this instalment of our Translating between ActionScript and Objective-C we add the mirror function of the one you implemented for writing properties of ActionScript object: now you will see how to read ActionScript object properties in your native Objective-C code. Share on: WhatsApp Read More
We continue with our Translating between ActionScript and Objective-C series by adding a couple of mirror functions for reading and writing properties of ActionScript objects in your native Objective-C code. Share on: WhatsApp Read More
Welcome to another short tutorial from our Translating between ActionScript and Objective-C series. I’ve lined up an exceptional article for you. … which is mostly to say that today we will be dealing with exceptions. Share on: WhatsApp Read More
We continue our Translating between ActionScript and Objective-C series with another auxiliary function that turns lengthy Objective-C code into one-liner you can reuse in all of your iOS ANEs. Share on: WhatsApp Read More
This is the third post of our Translating between ActionScript and Objective-C series and the first one in which you will get your hands dirty with code. Share on: WhatsApp Read More
We often get asked “what’s with all those assert statements in your code”? This concept was hammered in my head when I was a junior programmer, so I feel kind of old every time I am asked to explain it. But hey… An assert is usually defined as a “debug-only macro that aborts execution if its argument is false”. (See Steve Maguire’s Writing Solid Code) In other languages, like ActionScript, where you don’t have macros, you can use other techniques to achieve the same effect. The idea is that you use an assert as a diagnostic tool to help you Read More