Adobe
Products

Top destinations

  • Adobe Creative Cloud
  • Creative Suite
  • Adobe Marketing Cloud
  • Acrobat
  • Photoshop
  • SiteCatalyst
  • Students
  • Elements family

Adobe Creative Cloud

  • What is Adobe Creative Cloud?
  • Design
  • Web
  • Photography
  • Video
  • Students
  • Teams
  • Enterprise
  • Educational institutions

Design and photography

  • Photoshop
  • Illustrator
  • InDesign
  • Adobe Muse
  • Lightroom

Video

  • Adobe Premiere
  • After Effects

Web development and HTML5

  • Edge Tools & Services [opens in a new window]
  • Dreamweaver
  • Gaming [opens in a new window]

Adobe Marketing Cloud

  • What is Adobe Marketing Cloud?
  • Digital analytics
  • Social marketing
  • Web experience management
  • Testing and targeting
  • Media optimization

Analytics

  • SiteCatalyst
  • Adobe Discover
  • Insight

Social

  • Adobe Social

Experience Manager

  • CQ
  • Scene7

Target

  • Test&Target
  • Recommendations
  • Search&Promote

Media Optimizer

  • AdLens
  • AudienceManager
  • AudienceResearch

Document services

  • Acrobat
  • EchoSign [opens in a new window]
  • FormsCentral [opens in a new window]
  • SendNow [opens in a new window]
  • Acrobat.com [opens in a new window]

Publishing

  • Digital Publishing Suite

  • See all products
Business solutions

By business need

  • Digital analytics
  • Digital publishing
  • Document management
  • Media optimization
  • Social marketing
  • Testing and targeting
  • Video editing and serving
  • Web development [opens in a new window]
  • Web experience management
  • See all business needs

By industry

  • Broadcast
  • Education
  • Financial services
  • Government
  • Publishing
  • Retail
  • See all industries
Support & Learning

I need help

  • Products
  • Adobe Creative Cloud
  • Adobe Marketing Cloud
  • Forums [opens in a new window]

I want to learn

  • Training and tutorials
  • Certification [opens in a new window]
  • Adobe Developer Connection
  • Adobe Design Center
  • Adobe TV [opens in a new window]
  • Adobe Marketing Center
  • Adobe Labs [opens in a new window]
Download
  • Product trials
  • Adobe Flash Player
  • Adobe Reader
  • Adobe AIR
  • See all downloads
Company
  • Careers at Adobe
  • Investor Relations
  • Newsroom
  • Privacy
  • Corporate Social Responsibility
  • Customer Showcase
  • Contact us
  • More company info
Buy
  • For personal and professional use
  • For students, educators, and staff
  • For small and medium businesses
  • Volume Licensing
  • Special offers
  • Adobe Marketing Cloud sales [opens in a new window]
Search
 
Info Sign in
Why sign in? Sign in to manage your account and access trial downloads, product extensions, community areas, and more.
Welcome,
My Adobe
My orders
My information
My preferences
My products and services
Sign out
My cart
Privacy My Adobe
Adobe
Products Sections Buy   Search  
Solutions Company
Help Learning
Sign in Sign out Privacy My Adobe
Date Date
Qty:
Subtotal
Promotions
Estimated Shipping
VAT
Calculated at checkout
Total
Checkout

Release Notes | Flash Player® 11.5 AIR® 3.5

Adobe Community Help


Products Affected

  • Flash Player 11

Contact support

 
By clicking Submit, you accept the Adobe Terms of Use.
 

  • Fixed Issues
  • New Features
  • Released Versions
  • Known Issues
  • Security Enhancements
  • New Features: Usage Guidelines
  • Authoring Guidelines
  • Reporting a Bug
  • System Requirements
  • Runtime Verion(s) History


February 7th, 2013. This is the security update to the Flash Player 11.5 and AIR 3.5 originally released on November 6th, 2012. This release contains security enhancements & bug fixes.


To the top

Fixed Issues

  • A Windows ActiveX exploit that tricks users into opening a Microsoft Word document delivered as an email attachment which contains malicious Flash (SWF) content(3492336)
  • Firefox & Safari crash reported(3493470)
To the top

New Features

There are no new features in this minor release.

For a full list of features in Flash Player and AIR, including features introduced in previous releases, please review the document here
To the top

Released Versions

Deliverable Released Version
 Flash Player Desktop (Windows®, Mac)  11.5.502.149
To the top

Known Issues

N/A

To the top

Security Enhancements

Security Bulletin Impacted Deliverables
 APSB13-04  Flash Player Desktop Windows® & Mac
To the top

New Features: Usage Guidelines

The following features were released on November 6th, 2012 

Invoke Event Enhancement 

1) OpenURL
A new reason string, InvokeEventReason.OPEN_URL has been added to InvokeEvent.reason for mobile devices only. The InvokeEvent.reason will now return “openUrl” to indicate that the InvokeEvent occured because the application was invoked by another application or the system. The first element of the argument array will continue to contain the URL with which the application was invoked. If additional parameters are passed to the application by the system, they should be passed on to the actionscript developer in the InvokeEvent.arguments array.

The arguments property of the InvokeEvent class will contain the array of options with which the application was launched. The list of arguments for iOS are:

InvokeEvent.arguments[0] = The URL which the application was invoked to handle.
InvokeEvent.arguments[1] = Bundle ID of the application which is invoking another application to open the URL (InvokeEvent.arguments[0]), or null if the system invoked the application.
InvokeEvent.arguments[2] = String representation of any property list object supplied by the source application to communicate information to the receiving application or null.

2) Push Notifications
A user can also launch an application (not running in background) on receiving a push notification by clicking on the launch button or banner shown on iOS. For such cases, a new reason string, InvokeEventReason.NOTIFICATION has been added to InvokeEvent.reason. The arguments property of the InvokeEvent class will contain the Object that specifies the notification payload received after which the application was launched. This is supported only on iOS. Since arguments is an array of Strings, it is expected from the application developer to typecast it into Object type

InvokeEvent.arguments[0] = notification payload received


Packaging multiple libraries in an ANE

This feature will allow developers to reuse the static libraries they created or received in their ANE, without having to copy the source into the ANE. For using this feature, it is required to use the platform descriptor namespace 3.5 with a new tag, packagedDependencies. This feature can be used on both iOS device as well as iOS Simulator. The linking of libraries will be handled by the runtime, at the time of packaging the IPA.The developer needs to use a platform descriptor file, with namespace 3.5 and include the following tag as a child element of the <platform> tag:

<packagedDependencies>
                                <packagedDependency>foo.a</packagedDependency>
                                <packagedDependency>abc/x.framework</packagedDependency>
                                <packagedDependency>lib.o</packagedDependency>
</packagedDependencies>

A developer can specify the name or relative path of any packaged dependencies he wishes to include in the ANE. A packaged dependency should be a static library having the extension, .a, .framework, or .o. The packaged dependency should support the architecture, armv7 for device and i386 for the iOS Simulator. The dependency can be used by the main library file(specified in the <nativeLibrary> tag in the extension descriptor) simply by declaring the functions etc. from the packagedDependency in the header files or anywhere before usage.At the time of packaging the ANE, the packaged dependencies specified in the platform.xml file should be provided anywhere after the -platform iPhone-ARM switch and before the next -platform switch in case of device and after the --platform iPhone-x86 switch and before the next -platform switch in case of iOS Simulator. For example, for the above specification in platform.xml file for ios device, the packaging command would be something like:

Note: In case the packagedDependency is not added in the platform descriptor file, but is specified in the packaging command, it will be packaged as a normal resource, and will not be treated as a dependency in the final IPA.

adt –package –target ane –swc abc.swc extension.xml -platform iPhone-ARM mainlib.a foo.a –platformoptions platformdevice.xml abc/x.framework lib.o library.swf other_resources_for_device –platform iPhone-x86 library.swf mainlibSimulator.a resources_for_simulator –platform default library.swf

iPhone 5 Support

To be able to create a full-screen application for iPhone 5, it is necessary that a launch image of size 640x1136 (portrait only) be packaged with the application. If the name of the image is Default-568h@2x.png, it needs to be packaged with the application as an asset in the top level directory. An ADT command line for the same will look like:

adt –package –target (ipa-app-store | ipa-ad-hoc | ipa-test | ipa-debug | ipa-test-interpreter | ipa-debug-interpreter) SIGNING_OPTIONS <output ipa> <application xml> <root swf> Default-568h@2x.png <other application resources>


If using Flash Builder,include the PNG in the src folder, and if using Flash Professional, include it in the AIR for iOS Settings>Included Files.

However, if you wish to name the png to something else, replace “Default” with the name you desire, eg.  myLaunchImage-568h@2x.png (note that the -568h@2x needs to be included in to support a full screen application on iPhone 5 device). In this case, you will also have to edit the application.xml of your application to include this launch image:

<InfoAdditions>
         <![CDATA[
                 <key>UILaunchImageFile</key>
                 <string>myLaunchImage</string>
           ]]>
</InfoAdditions>
To the top

Authoring Guidelines

Authoring for Flash Player 11.5

To use the new Flash Player, you will need to target SWF version 18 by passing in an extra compiler argument to the Flex compiler: -swf-version=18. Directions are below. If you are using the Adobe Flex SDK:

  • Download the new playerglobal.swc for Flash Player 11.5
  • Download Flex 4.5.1 SDK (4.5.1.21328) from the Flex 4.5 SDK table.
  • Install the build in your development environment
  • In Flash Builder, create a new ActionScript project: File -> New -> ActionScript project.
  • Open the project Properties panel (right-click and chose 'Properties'). Select ActionScript Compiler from the list on the left.
  • Use the 'Configure Flex SDK's' option in the upper right hand corner to point the project to Flex build 21328. Click ok.
  • Configure your project to target SWF version 18
  • Open the project Properties panel (right-click and chose 'Properties'). Select ActionScript Compiler from the list on the left.
  • Add to the 'Additional compiler arguments' input: -swf-version=18. This ensures the outputted SWF targets SWF version 18. If you compile on the command-line and not in Flash Builder, you need to add the same compiler argument.
  • Ensure you have installed the new Flash Player 11.5 build in your browser.

Authoring for AIR 3.5 Update to the AIR 3.5 namespace

You must update your application descriptor file to the 3.5 namespace in order to access the new AIR 3.5 APIs and behavior. If your application does not require the new AIR 3.5 APIs and behavior, you are not required to update the namespace. However, we recommend all users start using the AIR 3.5 namespace even if you are not yet taking advantage of the new 3.5 capabilities. To update the namespace, change the xmlns attribute in your application descriptor to: <application xmlns="http://ns.adobe.com/air/application/3.5">

To the top

Reporting a Bug

Found a bug? Please submit a bug to the Flash Player and Adobe AIR bug database.

Flash Player and AIR may leverage your graphics hardware to decode and play H.264 video. There may be video issues that can only be reproduced with your particular graphics hardware and driver. When reporting an issue involving video, it is essential to note your graphics hardware and driver, along with your operating system and browser (when using Flash Player), so that we can reproduce and investigate issues. Please be sure to include this information as described in Instructions for Reporting Video Playback Issues. Note: Due to the high volume of email we receive, we are unable to respond to every request.

Thank you for using Adobe® Flash Player® and AIR® and for taking the time to send us your feedback!

To the top

System Requirements

For the latest Flash Player system requirements please review the document here

For the latest AIR system requirements please review the document here

To the top

Runtime Verion(s) History


 Release Date Runtime Version Security Enhancements
January 8th, 2013 Flash Player Desktop(Windows, Mac): 11.5.502.146
AIR Windows, Mac, Android, iOS: 3.5.0.1060
AIR SDK: 3.5.0.1060
 APSB13-01
December 11th, 2012 Flash Player Desktop Windows: 11.5.502.135
Flash Player Desktop Mac: 11.5.502.136
AIR Windows, Android: 3.5.0.880
AIR Mac: 3.5.0.890
 APSB12-27
November 6th, 2012 Flash Player Desktop (Windows, Mac): 11.5.502.110
AIR (Windows, Mac, Mobile): 3.5.0.600
AIR SDK: 3.5.0.600
 APSB12-24
October 8th, 2012  Flash Player Desktop (Windows, Mac): 11.4.402.287
 AIR (Windows, Mac, Mobile): 3.4.0.2710
 AIR SDK: 3.4.0.2710
 APSB12-22
August 21st, 2012  Flash Player Desktop (Windows, Mac) :  11.4.402.265
 AIR (Windows, Mac, Mobile): 3.4.0.2540
 AIR SDK: 3.4.0.2540
 APSB12-19

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License  Twitter™ and Facebook posts are not covered under the terms of Creative Commons.

Legal Notices   |   Online Privacy Policy

Products

  • Adobe Creative Cloud
  • Creative Suite
  • Adobe Marketing Cloud
  • Acrobat
  • Photoshop
  • Digital Publishing Suite
  • Elements family
  • SiteCatalyst
  • For education

Download

  • Product trials
  • Adobe Reader
  • Adobe Flash Player
  • Adobe AIR

Support & Learning

  • Product help
  • Forums

Buy

  • For personal and professional use
  • For students, educators, and staff
  • For small and medium businesses
  • Volume Licensing
  • Special offers

Company

  • News room
  • Partner programs
  • Corporate social responsibility
  • Career opportunities
  • Investor Relations
  • Events
  • Legal
  • Security
  • Contact Adobe
Choose your region United States (Change)
Choose your region Close

North America

Europe, Middle East and Africa

Asia Pacific

  • Canada - English
  • Canada - Français
  • Latinoamérica
  • México
  • United States

South America

  • Brasil
  • Africa - English
  • Österreich - Deutsch
  • Belgium - English
  • Belgique - Français
  • België - Nederlands
  • България
  • Hrvatska
  • Česká republika
  • Danmark
  • Eastern Europe - English
  • Eesti
  • Suomi
  • France
  • Deutschland
  • Magyarország
  • Ireland
  • Israel - English
  • ישראל - עברית
  • Italia
  • Latvija
  • Lietuva
  • Luxembourg - Deutsch
  • Luxembourg - English
  • Luxembourg - Français
  • الشرق الأوسط وشمال أفريقيا - اللغة العربية
  • Middle East and North Africa - English
  • Moyen-Orient et Afrique du Nord - Français
  • Nederland
  • Norge
  • Polska
  • Portugal
  • România
  • Россия
  • Srbija
  • Slovensko
  • Slovenija
  • España
  • Sverige
  • Schweiz - Deutsch
  • Suisse - Français
  • Svizzera - Italiano
  • Türkiye
  • Україна
  • United Kingdom
  • Australia
  • 中国
  • 中國香港特別行政區
  • Hong Kong S.A.R. of China
  • India - English
  • 日本
  • 한국
  • New Zealand
  • 台灣

Southeast Asia

  • Includes Indonesia, Malaysia, Philippines, Singapore, Thailand, and Vietnam - English

Copyright © 2013 Adobe Systems Incorporated. All rights reserved.

Terms of Use | Privacy | Cookies

Ad Choices

Reviewed by TRUSTe: site privacy statement