Tag Archive for 'as3'

Adobe AIR Gyroscope Native Extension with Euler Angles (roll, pitch, yaw) for iOS

Add a comment

I baked my very first AIR iOS Native Extension. It’s just an adapted version of this version from Adobe. Because in my opinion the data of radians per second aren’t really good to handle. So I looked into Apples API documentation and found out that there are Euler Angles in the CMMotionManager CMDeviceMotion classes. So [...]

Ten years after David and me produced the stress’O'matic game, it’s available on the iPhone.

Add a comment

2001 we did this game together. David painted the graphics and I programmed the flash part. Some time ago I found this on some backups, ported it to AS3 and AIR2.6 and since yesterday it’s available on the Apple App Store. Have fun with it, load it from the App Store.

Gas flow simulation through tubes with stardust particle engine

Add a comment

The Challenge: Simulate the flow through the tubes in a medical device. The device is a anesthesia workstation where three different gases are mixed. The device has two main working modes, manual ventilation and controlled ventilation. We had to find a solution to show the flow between the parts in different situations in a very [...]

AS3 FLVPlayback smoothing the scaling.

2 Comments

I searched a little while, found only AS2 workarounds, but here is the AS3 version of interpolated, smooth video scaling of a FLVPlayback. //playback is your FLVplayback instance playback.getVideoPlayer(playback.activeVideoPlayerIndex).smoothing = true; I use it after the ready event was send.