NEW UPDATE: Free Download Adobe AIR 3.6.0.5970 2013 (for Windows & MAC)
3.6.0.5970
2013Download | Mac OS X
AIR 3 is our eleventh release in less than two and a half years. Although all of our major releases have represented big steps forward, I think this one is the most significant. AIR 3 includes the following new APIs and capabilities:
- Stage3D (desktop only). Stage3D is a set of low-level, hardware-accelerated APIs for both 2D and 3D rendering. For AIR 3, they are available only in the desktop version of AIR; however, they will be coming to mobile in the future. Stage3D is such a huge feature that it really wouldn't make sense to get into much more detail here—to learn more, see the Stage 3D page.
- Native extensions (all platforms). This is another huge feature. Starting with AIR 3, developers can extend the AIR runtime by bundling native extensions with their applications, then calling those extensions from ActionScript (this was available in Adobe AIR for TV in AIR 2.5, but with AIR 3, it's now available on all platforms). You can think of native extensions for Adobe AIR (ANEs) as ActionScript libraries (SWCs) but implemented in native code. Use cases for ANEs include giving your application access to native APIs not supported by AIR (see examples below) and delegating to native code in some circumstances in order to achieve better performance. For more information on native extensions in AIR 3, see Extending Adobe AIR by Oliver Goldman.
- Android Market licensing integration (Android only, obviously). Using an ANE file, developers can access the Android Market Licensing Service allowing publishers to enforce licensing policies. This is a great example of the power of native extensions: Since there are no equivalent APIs on iOS, it wouldn't make sense for us to add the functionality directly to AIR; however, ANEs make the APIs easily accessible to AIR applications running on Android.
- Captive runtime bundles (Android and desktop). If you want to remove the need for your end users to download the AIR runtime in circumstances where they don't already have it installed (thereby making the application installation process indistinguishable from native applications), or if you want full control over the version of AIR with which your application runs, AIR 3 lets you bundle the AIR runtime right in with your application. Bundling the runtime is as easy as providing the
apk-captive-runtime
flag to ADT when building your Android app or thebundle
flag when building your desktop app. (Note that AIR has always used a captive runtime approach on iOS, although the mechanism is a bit different.) - Background audio playback (new feature in iOS; already works on Android). Because of the unique multitasking implementation of iOS, it was previously not possible to continue playing audio from an AIR app that wasn't active. Starting in AIR 3, all you have to do is indicate in your application descriptors that they need to be able to play background audio and it will automatically work. (Basically, the application will continue running when it's placed in the background. However, all screen updates will be disabled in order to preserve battery life, and to comply with the multitasking requirements of iOS.)
- CameraRoll support for iPad. Although
CameraRoll
was technically already supported on the iPad, we've added much better support in AIR 3. On iPads, the photo picker doesn't take up the entire screen, as it does on iPhones and iPod touches. Instead, it appears as a floating panel positioned relative to the UI component that invoked it. With the addition of theCameraRollBrowseOptions
class, developers can choose the size and position of the image picker, and specify the location of the UI component that invoked it. For more information and a code sample, see my blog post, How to correctly use the CameraRoll API on iPads. - Hardware-accelerated video (mobile): AIR 2.5 brought hardware-accelerated video to TVs with
StageVideo
; now AIR 3 bringsStageVideo
to mobile as well. - Native text fields (mobile). Previous versions of AIR provided developers access to lower-level rendering capabilities with APIs like
StageVideo
(hardware-accelerated video) andStageWebView
(native HTML rendering). AIR 3 introduces theStageText
API which allows developers to place native text fields in their mobile apps. Although you can still use Flash text fields, of course,StageText
text fields come with all the OS-specific perks like the magnifying glass, text selection, auto-correct, and so on. - Front-facing camera support (iOS and Android). The ActionScript
Camera
APIs now have access to both front and rear-facing cameras on iOS and Android devices (for Android devices, verion 2.3 or later is required). You can use the newCamera.position
property along with the constants in the newCameraPosition
class (BACK
,FRONT
, andUNKNOWN
) to determine the location of the cameras. For more information and a code sample, see my blog post, Front-facing camera support in AIR 3. - Mobile-encrypted local storage (brings feature parity between desktop and mobile). The same
EncryptedLocalStore
APIs that are available on the desktop are now available on iOS and Android. This API is critical for securely storing user credentials, encryption keys, salts, and similar important information. - Device speaker control (mobile). Using the new
audioPlaybackMode
property onSoundMixer
, and the constants in the newAudioPlaybackMode
class (MEDIA
andVOICE
), developers can control whether audio is played through the phone's earpiece or speakers. - Native JSON support (mobile and desktop). Rather than using ActionScript to parse JSON, the runtime now provides more efficient native JSON support. The native JSON APIs are faster and use less memory than ActionScript implementations. For more information and a code sample, see my blog post, Native JSON support in AIR 3.
- Socket improvements (mobile and desktop). It has always been relatively easy for developers to determine when data is written from the network to the ActionScript socket's read buffer (
ProgressEvent.SOCKET_DATA
), and to determine how many bytes are available for reading (Socket.bytesAvailable
). However, the opposite hasn't been true. In other words, before AIR 3, there was no way to know that data had been successfully written from the ActionScript socket's write buffer to the network, and to know how many bytes were still waiting to be written. This led to situations where developers weren't sure if it was safe to callclose()
on a socket, or to know if there was a network operation still in progress when the user wanted to shut down an application. Starting with AIR 3, developers can use theOutputProgressEvent.OUTPUT_PROGRESS
event along with the newSocket.bytesPending
property to determine how much data has been written to the network, and how much data is still in the ActionScript socket waiting to be written. These new APIs should lead to more robust applications that rely on network access through sockets. For more information and a code sample, see my blog post, Socket improvements in AIR 3. - H.264 video encoding (desktop only). You can how encode video captured through the
Camera
class in H.264. - JPEG XR support (mobile and desktop). AIR 3 now supports JPEG XR, a new file format with several advantages over JPEG. For example, JPEG XR provides better compression, more lossless compression, more accurate colors, and alpha transparency. For more information, check out the Wikipedia article on JEPG XR.
- Higher resolution bitmaps (mobile and desktop). In previous versions of AIR, bitmaps were limited to 16 megapixels (16,777,215 pixels) with a maximum width/height of 8,191. Starting with AIR 3, all limitations have been removed from AIR, which means maximum sizes are now imposed by the host operating system instead.
- Multichannel audio digital output (AIR for TV only). Adobe AIR for TV can now play Dolby Digital Plus 5.1 Surround and DTS 5.1 audio streams. The new
Capabilities.hasMultiChannelAudio
property, the newAudioDecoder
class (containing constants representing several different multichannel audio types), and changes to theCapabilities.serverString
property all allow developers to detect a device's multichannel audio capabilities and to stream the correct audio bitstream both from ActionScript and through RTMP. - Advanced controller support (AIR for TV only). Using the new
GameInput
APIs, developers can build games that respond to advanced TV controllers. A number of new APIs allow for enumerating devices (available controllers), enumerating devices' controls (buttons, triggers, acceleration, etc.), and for getting control values from devices. - More easily removing all children from a container (all platforms).
DisplayObjectContainer
now has aremoveChildren()
function, which removes all the children in a single call. This certainly beats:
while (this.numChildren > 0) this.removeChildAt(0)
- More easily determine if a MovieClip is playing (all platforms). Easily find out if a
MovieClip
is playing using the newisPlaying
property. - GC Advice API (all platforms). The new
System.pauseForGCIfCollectionImminent
function gives AIR developers more control over when the runtime's automatic garbage collection reclaims memory. Since animation or audio may pause during garbage collection, developers can use this function to encourage collection at times when the user is least likely to notice. - Secure random number generation (mobile and desktop). Adobe AIR has always had the
Math.random
function, which returns "pseudo-random" numbers—that is, numbers which appear to be random but always contain some element of non-randomness (a timestamp, for instance). AIR 3 provides a new method for generating random numbers calledgenerateRandomBytes()
located in the flash.crypto package. Since thegenerateRandomBytes()
function uses OS APIs to generate random numbers (CryptGenRandom
on Windows,/dev/random
on OS X,/dev/urandom
on Android, andSecRandomCopyBytes
on iOS), the resulting random number is as cryptographically secure as the underlying OS. - Support for cubic bezier curves (all platforms). The new
cubicCurveTo()
function on theGraphics
class allows you to programmatically draw cubic Bézier curves natively without the use of third-party ActionScript code.
Be sure to grab the latest version of the AIR runtime and SDK and let us know what you think! For more details on the changes in AIR 3, refer to the release notes.
Diposting pada : Jumat, 08 Juni 12 - 21:56 WIB
Dalam Kategori : ADOBE, ADOBE AIR 2013, FREE DOWNLOAD GRATIS ADOBE AIR 3.6.0.5970 2013 (FOR WINDOWS & MAC)
GUNAKAN KOTAK PENCARIAN DIATAS, JIKA ARTIKEL / FILE YANG KALIAN CARI TIDAK DITEMUKAN. Masukan Kata/Keyword
Pengunjung Blog yang baik adalah ia menyempatkan waktunya untuk memberikan LIKE/men-SHARE/meninggalkan TESTI/KOMENTAR. Berbagi ILMU & PENGETAHUAN kepada orang lain akan lebih bermanfaat, daripada hanya disimpan untuk kita sendiri :)

JIKA ANDA MEMPUNYAI DANA BERLEBIH DAN DIRASA BLOG SAYA BERGUNA, ANDA BISA BERDONASI AGAR BLOG INI LEBIH BAIK LAGI, KLIK GAMBAR DIBAWAH DETAILNYA


Kami Menjual & Menyediakan Kaset CD DVD KALI LINUX, Windows XP, Windows 7, Windows 8,Windows 8.1, Adobe Photoshop & seri lainnya, CorelDraw, Microsoft Office, Linux (Backtrack 5 R3 , Linux Red Hat, Ubuntu, Linux Mint, Linux Fedora, dll), sistem operasi maupun Software-Software LAMA maupun TERBARU Lainnya (KLIK DISINI) !!

Jual FLASHDISK INSTALLER WINDOWS XP, WINDOWS 7, WINDOWS 8, WINDOWS 8.1 DAN LINUX TERBARU (KLIK DISINI)
My Yahoo Messenger

tertarik memasang Banner Iklan DI BLOG INI, Mention or Send Me Message on FACEBOOK AND TWITTER :)
UPGRADE KE FIREFOX TERBARU UNTUK KEAMANAN DAN KENYAMANAN SAAT BROWSING ;)

- Microsoft Sedang Kembangkan Mesin Pencari Bing Sistem Pencarian Foto
Minggu, 01 Mei 16 - 05:37 WIB - Dampak Negatif Rokok Elektrik, Bisa Rusak Sistem Kekebalan Tubuh
Minggu, 27 Maret 16 - 01:37 WIB - Jumlah Pengguna Twitter Indonesia 2016
Sabtu, 26 Maret 16 - 06:24 WIB - Review Linux Fedora 23
Kamis, 05 November 15 - 00:23 WIB - Sebelum Kaya, Orang-Orang Ini Dulunya Hacker Lhooo..
Rabu, 04 November 15 - 23:53 WIB - Dampak Negatif Salah Pakai Sepatu Untuk Berolahraga
Minggu, 01 November 15 - 05:36 WIB - Masih Muda Tumbuh Uban ? Ini Dia Penyebabnya
Rabu, 28 Oktober 15 - 02:19 WIB - Spesifikasi dan Review Laptop MSI WS60, Laptop Ringan Performa Sangar
Minggu, 25 Oktober 15 - 16:21 WIB - Fitur Baru FireFox ! Plugins Browser Google Chrome & Microsoft Edge Bisa Dipasang Di Firefox
Rabu, 26 Agustus 15 - 10:52 WIB - Penggemar Sepatu Converse? Converse Merubah Desain Lama
Sabtu, 25 Juli 15 - 19:37 WIB
Jumlah Pengunjung (by UNIQUE IP ADDRESS)
Knowledge is for FREE
Orang-orang lebih khawatir dan takut jika Bumi ini Kiamat, PADAHAL Kiamat terbesar adalah ketika jantungmu berhenti berdetak, sehingga tidak dapat mengumpulkan pahala, melakukan shalat & sujud kepada Allah SWT...
Takutlah ketika panca indra/ hatimu biasa-biasa saja saat mendengarkan Adzan dikumandangkan & tidak segera melaksanakan shalat,
atau mata hati sudah dibutakan & biasa saja saat membaca peringatan serta melanggar yg sudah tertulis di Al-Quran.
bisa jadi kamu termasuk orang yg dibiarkan "tersesat" di dunia & akhirat.