Sutter Beta Release Notes

Size: px
Start display at page:

Download "Sutter Beta Release Notes"

Transcription

1 Sutter Beta Release Notes 21 and 21 Release Notes Welcome to Adobe Flash Player 21 and Adobe 21! For 22 Release Notes Click Here Last Updated: April 20, 2016 Welcome to the latest Flash Runtime version 21 beta! We've been hard at work adding new features to and and we're looking forward to receiving feedback from our development and community. This beta release includes new features as well as enhancements and bug fixes related to security, stability, performance, and device compatibility for 21 and 21. This document may be updated periodically as more information becomes available. As always, we appreciate all feedback. We encourage you to post in our beta forums or create bug reports or feature requests on our public bug database. Beta Forum Beta Forum Bug Database NOTE: The ActiveX in this release is not compatible with Windows 8.1 or 10 for Windows 8.1/10 is available as part of the generally available Windows 8.1/10 update New and Updated Features Anonymous Usage Data BETA CHANNEL ONLY Adobe is constantly working to improve the quality of our products. With this new feature, we ll be able to collect anonymous usage data from our beta channel, allowing our engineering team to focus on features and platforms that are critical to our customers. Please note that this feature will only work with beta versions of. We will not collect data from officially released versions of Flash. The installer will now present customers a check box option for Usage Data, allowing users the choice to opt in or out of this feature. Once has been installed, customers can open the control panel to change their selection at any time. While is available on many platforms, we will only collect data from the ActiveX and NPAPI versions and OS combinations below. Su pported Platforms: Operating Systems Win 7, Vista, Win XP Win 8.x, Win 10 OSX 10 Type NPAPI, ActiveX NPAPI NPAPI

2 Once enabled, a new system service ( FeedbackService ) will be installed and will receive data from running instances. This Service will log data into a text file and periodically send non identifiable and anonymous information to Adobe s servers. We will not collect any personal identifying information. The table below outlines the type of data that will be collected. Data Collection Points Description Sample Value OS Operating System Windows 7 OSType Operating System Type, ie 32 bit or 64 bit. x86_64 UserAgent Browser s User Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/ Firefox/43.0 FlashVersion Version of the installed on the browser 21,0,0,74 RenderMode Render mode of the SWF auto SWFVersions SWF Version of the SWF SWF5 1 ASVersions Actionscript Version of the SWF AS2 3 APIList List of the APIs used in the SWF. 9 1,17 1,18 1,22 1,25 1 This data is saved to a plain text file so that customers can review the contents at any time. If is uninstalled, this service as well as the log files, will be deleted. To learn more about this feature, please see our FAQ. Softkeyboard for TextField for Android & ios (Build ) Starting 21, TextField now enables developers to set soft keyboard types, just like StageText. Please use swf-version 32 or greater and namespace 21.0 or greater to access this feature A new property softkeyboard is introduced for TextField which can be set based on the input expected from the user. For example, if numeric input is expected, a device can use SoftKeyboardType.NUMBER to display only numbers on the soft keyboard. Valid values are defined as constants in the SoftKeyboardType class: Sample: DEFAULT PUNCTUATION NUMBER URL CONTACT var keyboard:textfield=new TextField(); keyboard.softkeyboard= SoftKeyboardType.NUMBER; // Setting SoftKeyboard of keyboard as NUMBER Media Auto Play for ios & Android Starting 21, we are introducing Media Auto Play support for ios & Android applications. Using this feature, ActionScript developers can enable media auto play inside StageWebView. To enable this, autoplay should also be enabled in the HTML5 video tag. (More info on HTML5 video tag : Please use swf-version 32 or greater and namespace 21.0 or greater to access this feature.

3 Sample Code var webview:stagewebview = new StageWebView(); webview.stage = stage; webview.viewport = new Rectangle( 0, 0, 400, 300 ); webview.mediaplaybackrequiresuseraction = false;// To enable autoplay in given web view webview.addeventlistener(event.complete, <handlecomplete>); webview.addeventlistener(errorevent.error, <handleerror>); webview.loadurl(" ) Android StageWebView debugging Starting in 21, StageWebView Debugging will allow developers to debug web content (HTML / CSS / JavaScript) used in Android applications. An ActionScript developer needs to add the webcontentsdebuggingenabled option to true in the application descriptor to allow StageWebView debugging in their application. From there, simply connect your Android device to your machine via USB cable and navigate to chrome://inspect to debug embedded web content in your application. This feature is available on Android 4.4 and higher devices. Also the Chrome version should be 45 or higher. Please use namespace 21.0 or greater to access this feature. Application Descriptor Tag <android> <!-- Indicates if webcontents(html/css/javascript) can be inspected in browser. It is Optional, Default value is 'false' --> <webcontentsdebuggingenabled>true</webcontentsdebuggingenabled> </android> GPU Memory Information In Context3D When a Context3D object is created, developers allocate memory for various Stage3D structures which includes index buffers, vertex buffers, textures, and programs. Prior to Flash and 21, the only way to verify the memory allocated by the current Context3D is through values displayed by Scout. With the release of and 21, a new property of context3d class called " totalgpumemory" has been introduced which provides the sum of gpu memory used by the index buffers, vertex buffers, textures, and programs created through Context3D. The total value can be obtained by property "Context3D.totalGPUMemory;". Developers can very easily monitor gpu memory used by Stage3D structures without having to start up Scout. The value of this property is in bytes and its default value is 0. The information is only provided in direct mode on mobile and in direct and gpu mode on desktop ( On desktop computers, using <rendermode>gpu</rendermode> will fallback to <rendermode>direct</rendermode>). This property can be used when the SWF version is 32 or more. Support for Browser Zoom Factor in Firefox We ve extended the support for Browser Zoom Feature that proposes scaling of Flash content in the web browser in response to web page zoom factor change. The feature is already available for the ActiveX and PPAPI plugin ( -of-stage3d-content-on-browser-zoom.html). It will be available from FP version 21 and is currently available on Firefox Nightly 45.0a1, the official Firefox version supporting the feature has yet to be announced.

4 PPAPI vector printing on MAC As of version 19, Vector Printing has only been available for NPAPI while PPAPI supported only bitmap printing. Hence there was an observable difference in printing quality between NPAPI and PPAPI (with NPAPI being better). Now in version 21, we have introduced vector printing for PPAPI on MAC, thus giving a better printing experience from PPAPI supported browsers and applications. The bitmap printing will continue to be supported and used when requested by the content. SIMPLE LSO UI Flash player provides an per domain/swf option to store locally shared objects on user's system. Users could specify the size up to which a domain or SWF could save their LSOs on their machine. We have now simplified the LSO UI Options. This Simple LSO feature will change the permission scheme and related dialogs to only allow/deny and universally imposes a rational upper limit to the LSO size. End users will no longer be able to specify the size of LSOs (but will be able to approve if LSOs can be created or not). The changes made are shown below: 1.) Local Storage" tab in Settings UI Previous New >>>>> In above UI, we have changed 2 parts, one is the message that informs users what to do. The question is changed from "asking up to how much local storage size you allow" to "asking a permission to store shared objects into local storage". If users select "Allow", the storage limit is set as "unlimited". If users select "Deny", the local storage limit is set as "never" so that users will not be able to store shared objects for the domain. 2.) Inline "Local Storage" dialog change Previous New

5 >>>>> In this UI, we have changed the message that informs users what to do. The question has changed from "asking permission of increasing local storage size" to "asking a permission to store shared objects into local storage". If users select "Allow", the local storage limit is set as "unlimited". If users select "Deny", the local storage limit is set as "" so that users will not be able to store shared objects for the domain. Runtime Versions : Runtime: n/a SDK & Compiler: n/a Fixed Issues April 20, 2016 April 13, 2016 Application becomes unresponsive with ArgumentError: Error #1508: The value specified for argument RectangleObject is invalid ( ) March 23, 2016 March 18, 2016

6 Performance degradation for the applications which are writing LSOs ( ) March 16, 2016 March 11, 2016 Gapminder World shows OOM message( ) quits unexpectedly while accessing the slides in learning content ( ) gotoandstop behavior is inconsistent( ) EventMarker component causing Flash player to quit unexpectedly ( ) copypixels() prevents negatively-dimensioned source rectangles ( , ) Application quits with ArgumentError: Error #1508: The value specified for argument RectangleObject is invalid ( ) March 3, 2016 Feb 17, 2016 Desktop: Feb 10, 2016 [ios] Fails to link ImageIO.framework when targeting ios ( ) [Android] GPU mode apps crash on devices with Tegra K1 GPU. ( ) Android 6 : Stage3D application fails to return from background ( ) ATF textures (with JPEG Compression) are not rendered properly on MALI GPU. [ ] Apps created from Version 20 SDK not accepted in MAC App store [ ] Contex3D fails to load in Software mode [ ] [ios] Packaging error appears in Flex app having TextField for non-interpretor (e.g. Ipa-app-store) mode on Macintosh ( ) "Error #1053: Illegal override of softkeyboardtype in spark.components.supportclasses.styleablestagetext [ios & Android] Icon files get duplicated when packaging ios, Android versions ( )

7 None Feb 3, 2016 [ios] Crash when debugging on ios 7 ( ) Browser freezes on playing a gaming SWF [ ] Flash content freezes in a game developed in ActionScript2 [ ] OOM observed in an educational program [ ] gotoandstop works incorrectly [ ] Jan 28, 2016: Windows 10 Firefox: Mic access not working [ ] Jan.28, 2016 Desktop: [ios] On compiling empty app using Xcode 7.2 to ios Simulator in Adobe CC 2015, throws an error. ( ) [ios] Wrong rotation in IOS 7 ( ) [ios] Flash Pro doesn't remember the application version number when SDK is changed to ( ) application quits unexpectedly while creating a Netgroup inside an AS3 worker [ ] Known Issues April 20, 2016 April 13, 2016 March 23, 2016 March 18, 2016

8 March 16, 2016 March 11, 2016 Chrome: Performance degradation while reading/writing LSOs taking ( ) March 3, 2016 Feb 17, 2016 Feb 10, 2016 Feb 3, 2016 [ios][win] IPA packaged on Windows machine cannot be submitted to the Apple App store. Error "This build is invalid" occurs in itunes connect. Buttons are not clickable on flash player settings UI when right click the "Settings..." in Standalone Player [ ] [ios] Fails to link ImageIO.framework when targeting ios ( ) Contex3D fails to load in Software mode [ ] None None Jan 27, 2016 Jan 27, 2016 Desktop: Vector PPAPI Printing: Text gets shifted and merges with image [ ]

9 [WIN10] Some uppercase letters can't be entered in a form input Authoring [ios] ld: library not found for -lstdc++ error in Windows 10 while packaging an IPA using -platformsdk flag ( ) [ios] Packaging error appears in Flex app having TextField for non-interpretor (e.g. Ipa-app-store) mode on Macintosh ( ) "Error #1053: Illegal override of softkeyboardtype in spark.components.supportclasses.styleablestagetext" Authoring for 21 To use the new, you will need to target SWF version 30 by passing in an extra compiler argument to the ASC 2.0 compiler: -swf-version=30. Directions are below: Download the new playerglobal.swc for 21 Download and install Flash Builder 4.7 from Creative Cloud: - Backup the existing SDK if you need to restore it later then replace the bundled SDK with the 21 SDK. To do this, unzip the 21 SDK to this location:\ MacOS: /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_ /SDK Windows: C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flash.compiler_ \SDK\ In Flash Builder, create a new project: File -> New -> project.\ Open the project Properties panel (right-click and chose 'Properties'). Select\ ActionScriptCompiler from the list on the left. Add to the 'Additional compiler arguments' input: -swf-version=30. This ensures the outputted SWF targets SWF version 30. If you compile on the command-line and not in Flash Builder, you need to add the same compiler argument. Authoring for 21 Update to the 21 namespace You must update your application descriptor file to the 21 namespace in order to access the new 21 API's and behavior. If your application does not require the new 16 API's and behavior, you are not required to update the namespace. However, we recommend all users start using the 21 namespace even if you are not yet taking advantage of the new 16 capabilities. To update the namespace, change the xmlns attribute in your application descriptor to: <application xmlns=" "> System Requirements For current release of in production, system requirements visit - For current release of in production, system requirements, visit has the following minimum system requirements: Windows Mac OS Linux 2.33GHz or faster x86-compatible processor, or Intel Atom 1.6GHz or faster processor for netbooks 32- and 64-bit (unless noted): Microsoft Windows XP SP3 (32-bit), Windows Vista (32-bit), Windows 7, Windows 8.1 and Windows 10 Latest versions of Microsoft Internet Explorer, Microsoft Edge, Mozilla Firefox, Google Chrome and Opera 512MB of RAM (1GB of RAM recommended for netbooks); 128MB of graphics memory Intel Core Duo 1.83GHz or faster processor Mac OS X v10.6, or later Latest versions of Safari, Mozilla Firefox, Google Chrome, and Opera 512MB of RAM; 128MB of graphics memory 2.33GHz or faster x86-compatible processor, or Intel Atom 1.6GHz or faster processor for netbooks 32- and 64-bit: Red Hat Enterprise Linux (RHEL) 5.6 or later, opensuse 11.3 or later, or Ubuntu or later Latest versions of Firefox or Google Chrome 512MB of RAM; 128MB of graphics memory Note: 11.2 is the last supported version for Linux. Adobe will continue to provide security updates.

10 21 has the following minimum system requirements: Windows Mac OS Android ios 2.33GHz or faster x86-compatible processor, or Intel Atom 1.6GHz or faster processor for netbook class devices Microsoft Windows Server 2008, Windows 7, Windows 8.1 Classic or Windows MB of RAM (1GB recommended) SDK Development Supports Microsoft Windows 7 and above, 64-bit only Intel Core Duo 1.83GHz or faster processor Mac OS X v10.7, and above 512MB of RAM (1GB recommended) SDK Development supports Mac OS 10.9 and above, 64bit only ARMv7/x86 processor with vector FPU, minimum 550MHz, OpenGL ES 2.0, H.264 and AAC HW decoders Android 4.0 and above 256MB of RAM ios 7 and above

Atka Beta Release Notes

Atka Beta Release Notes Atka Beta Release Notes 28 and 28 Release Notes Welcome to Adobe Flash Player 28 and Adobe 28! Last Updated: Dec 13, 2017 Welcome to the latest Flash Runtime version 28 beta! We've been hard at work adding

More information

Adobe Flash Player Manual Firefox Windows 7 64 Bit Chrome

Adobe Flash Player Manual Firefox Windows 7 64 Bit Chrome Adobe Flash Player Manual Firefox Windows 7 64 Bit Chrome I am using Firefox 31 and Flash 14.0.0.179 (32 bit) running under Windows 7 Pro. I also have the 64 bit version installed for use with internet

More information

Adobe Flash Player Bit Windows 7 Google Chrome

Adobe Flash Player Bit Windows 7 Google Chrome Adobe Flash Player 11 64 Bit Windows 7 Google Chrome or later, Latest versions of Safari, Mozilla Firefox, Google Chrome, and Opera, 512MB of RAM, 128MB of graphics memory Note: Flash Player 11.2 is the

More information

Adobe Flash Player Plugin Manual Install For Mac 10.2

Adobe Flash Player Plugin Manual Install For Mac 10.2 Adobe Flash Player Plugin Manual Install For Mac 10.2 Download free Adobe Acrobat Reader DC software for your Windows, Mac OS and Android Note: Your antivirus software must allow you to install software.

More information

Webinar and Virtual Classrooms. Feature Comparison Chart

Webinar and Virtual Classrooms. Feature Comparison Chart Webinar and Virtual Classrooms Feature Comparison Chart Competitive Product Features Reference Client Support Browser Requirements Accept ActiveX controls, JavaScript and Cookies. Microsoft IE 7.x, Firefox

More information

Adobe Flash Player Manual Firefox Mozilla Opera Chrome) 64-bit

Adobe Flash Player Manual Firefox Mozilla Opera Chrome) 64-bit Adobe Flash Player Manual Firefox Mozilla Opera Chrome) 64-bit Non-IE: Mozilla Firefox, Safari, Opera and Chrome. Adobe Flash player 32-bit is available for Windows 32-bit and 64-bit. You can also download

More information

Google Chrome For Windows Xp 32 Bit Full Version Offline

Google Chrome For Windows Xp 32 Bit Full Version Offline Google Chrome For Windows Xp 32 Bit Full Version Offline Support windows All Version. Download Google Chrome 2015 32bit Offline Installer Next. Apple itunes software 2015 For Windows XP, 7 And 8 Download.

More information

Adobe Flash Player Manual Firefox Mozilla Opera Chrome) 32-bit

Adobe Flash Player Manual Firefox Mozilla Opera Chrome) 32-bit Adobe Flash Player Manual Firefox Mozilla Opera Chrome) 32-bit Adobe Flash Player is a multimedia software that lets users view flash movies Internet browsers such as Mozilla Firefox, Internet Explorer,

More information

Manual Internet Explorer 10 Vista 32 Bits Window 8 >>>CLICK HERE<<<

Manual Internet Explorer 10 Vista 32 Bits Window 8 >>>CLICK HERE<<< Manual Internet Explorer 10 Vista 32 Bits Window 8 Learn about Windows 10, the latest devices, apps and games or find support. Internet Explorer. Download Internet Explorer 11 and make your web experience

More information

Manual Update Java 7 25 Mac 32 Bit Offline

Manual Update Java 7 25 Mac 32 Bit Offline Manual Update Java 7 25 Mac 32 Bit Offline Download Java Runtime Environment 8.0 build 45 (32-bit) Download Internet Explorer 11.0 Windows 7 Internet Explorer 11.0 Windows 7 Download Flash. For more information,

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

User s Guide. This User Guide contains information that can help you navigate through your professional development session.

User s Guide. This User Guide contains information that can help you navigate through your professional development session. This User Guide contains information that can help you navigate through your professional development session. The Table of Contents, found on the left of your screen, allows you to navigate to the major

More information

Manual Internet Explorer 10 Xp 32 Bit Windows 8

Manual Internet Explorer 10 Xp 32 Bit Windows 8 Manual Internet Explorer 10 Xp 32 Bit Windows 8 Learn about Windows 10, the latest devices, apps and games or find Download Internet Explorer 11 and make your web experience even better. Windows 7 Enterprise,

More information

Download Internet Explorer 11 and make your web experience even better. Windows 10 Upgrade Offer is valid for qualified Windows 7 and Windows 8.1.

Download Internet Explorer 11 and make your web experience even better. Windows 10 Upgrade Offer is valid for qualified Windows 7 and Windows 8.1. Manual Internet Explorer 10 Vista 64 Bits Windows 8.1 Windows Vista x64 Edition Service Pack 2. Internet Explorer 7 Windows Server 2008 for 32-bit Systems Service Pack 2. Internet I am running Internet

More information

User Guide for Webcast Viewers. Live Webcast Video/Audio Only. For assistance visit:

User Guide for Webcast Viewers. Live Webcast Video/Audio Only. For assistance visit: User Guide for Webcast Viewers Live Webcast Video/Audio Only For assistance visit: www.vvc.ca/webhelp Updated November 2015 Version 1.0 Page 1 of 10 TABLE OF CONTENTS Online Viewer Tips 03 Volume Controls

More information

Manual Flash For Firefox Windows Xp 32 Bit

Manual Flash For Firefox Windows Xp 32 Bit Manual Flash For Firefox Windows Xp 32 Bit If you are viewing this page in Firefox and Flash Player is not working, 32-bit systems) or C:/Windows/SysWOW64/ (if you are using a 64-bit system) have been.

More information

C4C Compliance Portal User FAQ. Logging in/getting Started-

C4C Compliance Portal User FAQ. Logging in/getting Started- C4C Compliance Portal User FAQ Logging in/getting Started- How do I receive my User Id and Password? If you have an email address you will receive an email with this information when your training is ready

More information

Adobe Connect Student Guide

Adobe Connect Student Guide Roane State Support CTAT (Center for Teaching Arts & Technology) Please feel free to contact CTAT with questions regarding Adobe Connect. Susan Sutton, Director of CTAT suttonsr@roanestate.edu (865) 882-4556

More information

LexisNexis Firm Manager. V2.1.1 Release Notes 10/16/2011. LexisNexis Practice Management Regency Parkway Suite 600 Cary North Carolina USA 27518

LexisNexis Firm Manager. V2.1.1 Release Notes 10/16/2011. LexisNexis Practice Management Regency Parkway Suite 600 Cary North Carolina USA 27518 LexisNexis Firm Manager V2.1.1 Release Notes 10/16/2011 Table of Contents Release Details... 3 Overview... 3 Feature Enhancements... 4 Integration with Google... 4 System Requirements... 13 OS/Browser

More information

Typing Program For Mac Os X Adobe Flash

Typing Program For Mac Os X Adobe Flash Typing Program For Mac Os X 10.5 8 Adobe Flash Player Download, install or update Adobe Flash Player (Mac) - Plug-in plays 8. Thank you for your review. Free. Download Adobe Flash Player from Adobe Flash

More information

Manual Flash For Firefox Windows

Manual Flash For Firefox Windows Manual Flash For Firefox Windows 7 2013 For Firefox on Windows the current Flash player versions are 16.0.0.235 and the Again the Plugin check page needs to be manually updated as I think it may be which

More information

Manual Internet Explorer 10 Vista 32 Bit >>>CLICK HERE<<<

Manual Internet Explorer 10 Vista 32 Bit >>>CLICK HERE<<< Manual Internet Explorer 10 Vista 32 Bit Windows 7 Windows 7 for 32-bit Systems Service Pack 1. Internet Explorer 8 I am running Internet Explorer 11 on Windows 7 or Windows Server 2008 R2. Why am I not

More information

Flash Player Update Manual Win 7 64 Bit Firefox

Flash Player Update Manual Win 7 64 Bit Firefox Flash Player Update Manual Win 7 64 Bit Firefox I am having a problem with firefox crashing my OS which is Windows 7 64 bit Home that addresses the most common issues with the Flash Player plugin. the

More information

Welcome to MyKangan! A how to guide for student. Welcome to MyKangan. A How to guide for students

Welcome to MyKangan! A how to guide for student. Welcome to MyKangan. A How to guide for students Welcome to MyKangan A How to guide for students May 2015 Contents Welcome to MyKangan... 1 Logging in... 2 Accessing MyKangan via the Student Portal ONSITE... 2 Accessing MyKangan via the Student Portal

More information

WHAT S NEW WITH FLASH PLAYER 11.2 & ADOBE AIR 3.2. Joseph Labrecque. Hawaii Flash User Group May 10 th 2012

WHAT S NEW WITH FLASH PLAYER 11.2 & ADOBE AIR 3.2. Joseph Labrecque. Hawaii Flash User Group May 10 th 2012 WHAT S NEW WITH FLASH PLAYER 11.2 & ADOBE AIR 3.2 Joseph Labrecque Hawaii Flash User Group May 10 th 2012 Joseph Labrecque, MA University of Denver - OTL Senior Interactive Software Engineer Adjunct Faculty

More information

Flash Player Manual Firefox 64 Bit Windows 8.1

Flash Player Manual Firefox 64 Bit Windows 8.1 Flash Player Manual Firefox 64 Bit Windows 8.1 I have Windows 8.1, 64 bit and had no problems until Firefox downloaded the latest Followed your instructions to download latest Adobe Flash Player. All security

More information

Chrome Version Flash Player Adobe Gratis Para Windows 7 64 Bits

Chrome Version Flash Player Adobe Gratis Para Windows 7 64 Bits Chrome Version Flash Player Adobe Gratis Para Windows 7 64 Bits 11.2.202.183 Beta 4 (64-bit) Languages: en,es,it,fr,de,pt,ar,fi,ru,nl,no,ja,da,ko,zh,el,pl,sv Adobe Flash Player (Firefox, Chrome & Opera)

More information

Manual Internet Explorer 9 Xp 32 Bits Win7 7

Manual Internet Explorer 9 Xp 32 Bits Win7 7 Manual Internet Explorer 9 Xp 32 Bits Win7 7 For: Windows 10 32-bit and more. Download and run the Windows 7 Upgrade Advisor to see if your PC is ready for Upgrade your Internet Explorer. Microsoft Windows

More information

etrac Guide System Requirements Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA , All Rights Reserved.

etrac Guide System Requirements Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA , All Rights Reserved. etrac Guide to System Requirements Version: 2.5 Published: 05/18/2015 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2015, All Rights Reserved. Table of Contents Minimum System Requirements...

More information

Manual Internet Explorer 9 Full Version For >>>CLICK HERE<<<

Manual Internet Explorer 9 Full Version For >>>CLICK HERE<<< Manual Internet Explorer 9 Full Version For Windows 7 32bit To determine the support life cycle for your software version or edition, see Microsoft Windows Server 2008 for 32-bit Systems Service Pack 2

More information

1. LOGIN & CLASS PREPARATION

1. LOGIN & CLASS PREPARATION 1. LOGIN & CLASS PREPARATION At the end of this topic, you should be able to: 1 Know the hardware requirements for accessing GOALS system. 2 Know how to log into GOALS system. 3 Updating personal profile.

More information

Manual Internet Explorer 10 Xp 32 Bit Windows 7

Manual Internet Explorer 10 Xp 32 Bit Windows 7 Manual Internet Explorer 10 Xp 32 Bit Windows 7 64 Download Internet Explorer 11 and make your web experience even better. Windows 10 Upgrade Offer is valid for qualified Windows 7 and Windows 8.1. Download

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

Manual Internet Explorer 10 Vista 64 Bit >>>CLICK HERE<<<

Manual Internet Explorer 10 Vista 64 Bit >>>CLICK HERE<<< Manual Internet Explorer 10 Vista 64 Bit Windows 8 1)Windows IE9 for IT pros & developers--win Vista 64 bit & windows server 2008 64bit edition Then after the ie10 and ie9 update will appear in windows

More information

Testing your TLS version

Testing your TLS version Testing your TLS version If you are not able to access Progressive Leasing websites, you may need to upgrade your web browser or adjust your settings. In order to test your TLS version to see if it is

More information

Flash Player Update Guide Windows 7 64 Bit Google Chrome

Flash Player Update Guide Windows 7 64 Bit Google Chrome Flash Player Update Guide Windows 7 64 Bit Google Chrome Adobe makes available a version of Flash Player called the "Extended Support Detects wrong Browser type and OS you have - thinks you are on Windows

More information

Manual Internet Explorer 10 Xp Mac Version Offline Installer

Manual Internet Explorer 10 Xp Mac Version Offline Installer Manual Internet Explorer 10 Xp Mac Version Offline Installer Does Microsoft still have a link to download IE10 for Windows 7? No problem. We won't show you Try these Microsoft offline installer links:

More information

Installation Guide - Windows

Installation Guide - Windows Kony Visualizer Enterprise Installation Guide - Windows Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

Flash Player Update Manual Windows 7 64 Bit

Flash Player Update Manual Windows 7 64 Bit Flash Player Update Manual Windows 7 64 Bit Cnet 17,359 results for "Update Flash Player" Windows Server 2003 x64 R2 (7) View Flash multimedia content through your browser. Windows Version 18.0.0. Windows

More information

Manually Adobe Flash Player For Windows 7 Ultimate Full Version

Manually Adobe Flash Player For Windows 7 Ultimate Full Version Manually Adobe Flash Player For Windows 7 Ultimate Full Version Adobe makes available a version of Flash Player called the "Extended Support Release" (ESR) to organizations Detects wrong Browser type and

More information

Manual Update Java 7 25 Mac Windows Xp

Manual Update Java 7 25 Mac Windows Xp Manual Update Java 7 25 Mac Windows Xp This release will be the last Oracle JDK 7 publicly available update. JavaFX SDK is now included in JDK 7 for Windows, Mac OS X, and Linux x86/x64. 5.3.1 Java Control

More information

Download free Adobe Acrobat Reader DC software for your Windows, Mac OS and Android devices to view, print, and comment on PDF documents.

Download free Adobe Acrobat Reader DC software for your Windows, Mac OS and Android devices to view, print, and comment on PDF documents. Adobe Flash Player 10 Manual Install For Windows Xp Flashplayer update crashes 5 hours ago, by notafan777 notafan777 Cannot install Flash player 18 firefox installation error on XP SP3 on non SSE2 CPU?

More information

Firefox Manually Update Linux Install Java Plugin Windows Xp

Firefox Manually Update Linux Install Java Plugin Windows Xp Firefox Manually Update Linux Install Java Plugin Windows Xp If you are not able to uninstall a plugin, see Manually uninstalling a plugin. Note: You may need to specify the Firefox installation path (e.g.

More information

CIMS Login Quick Guide Your Guide to Login Procedures

CIMS Login Quick Guide Your Guide to Login Procedures FDOE Bureau of School Improvement CIMS Login Quick Guide Your Guide to Login Procedures Welcome to the CIMS Login Quick Guide. The purpose of this guide is to provide step-by-step directions for logging

More information

Adobe Flash Player 11 Plugin 64 Bit Windows 7

Adobe Flash Player 11 Plugin 64 Bit Windows 7 Adobe Flash Player 11 Plugin 64 Bit Windows 7 Firefox 2 replies, 8 have this problem, 3328 views, Last reply by alacer 11 months ago I am having a problem with firefox crashing my OS which is Windows 7

More information

Manual Internet Explorer 9 Full Version For Xp 32 Bit

Manual Internet Explorer 9 Full Version For Xp 32 Bit Manual Internet Explorer 9 Full Version For Xp 32 Bit Security Essentials provides real-time protection for your home or small business PC that guards against viruses, spyware, and other malicious software.

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release 7.0 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

2. *** COMING SOON Changes to System Requirements *** Effective July 2016, i-ready System Requirements will be modified as described below.

2. *** COMING SOON Changes to System Requirements *** Effective July 2016, i-ready System Requirements will be modified as described below. System Requirements 1. Introduction i-ready combines a valid and reliable adaptive K 12 diagnostic, individualized K 8 student online and teacher-led instruction in a single product. This document summarizes

More information

Manual Internet Explorer 10 Xp 32 Bit Windows 7 Indir Offline

Manual Internet Explorer 10 Xp 32 Bit Windows 7 Indir Offline Manual Internet Explorer 10 Xp 32 Bit Windows 7 Indir Offline Download Internet Explorer 10 and see what the fuss is all. This tool is being offered because an inconsistency was found in the Windows servicing

More information

Manual Internet Explorer 10 For Win Xp 32 Bit

Manual Internet Explorer 10 For Win Xp 32 Bit Manual Internet Explorer 10 For Win Xp 32 Bit Malicious Software Removal Tool. For: Windows 10 32-bit and more. Download the latest Internet Explorer browser today. Upgrade your Internet Explorer. Windows

More information

Manually Adobe Flash Player For Windows 7 Ultimate 64 Bit

Manually Adobe Flash Player For Windows 7 Ultimate 64 Bit Manually Adobe Flash Player For Windows 7 Ultimate 64 Bit Adobe makes available a version of Flash Player called the "Extended Support Version: Adobe Flash Player 13 Beta 64-bit 13.0.0.191 Detects wrong

More information

System Requirements and Feature Support

System Requirements and Feature Support This document describes available features, kwn issues, and any limitations you may experience when using WebEx services with a variety operating systems and Web browsers. Note WebEx will support any distribution

More information

Perceptive DataTransfer

Perceptive DataTransfer Perceptive DataTransfer System Overview Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: May 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc.,

More information

Java Plugin Windows 7 32 Bit Ultimate Full Version

Java Plugin Windows 7 32 Bit Ultimate Full Version Java Plugin Windows 7 32 Bit Ultimate Full Version 1,003 results for "java for windows 7 32 bit download" Record anything on your PC in Full HD with no lag and a small file size for free. Windows Password

More information

Getting Started With Parallels Desktop 14

Getting Started With Parallels Desktop 14 Getting Started With Parallels Desktop 14 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright 1999-2018 Parallels International

More information

System Requirements for Online Testing

System Requirements for Online Testing System Requirements for Online Testing 2016 2017 Published May 15, 2017 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information Distribution Engine, Test

More information

Manual Mozilla Firefox 3.5 For Windows Setup

Manual Mozilla Firefox 3.5 For Windows Setup Manual Mozilla Firefox 3.5 For Windows 7 2013 Setup Windows XP, Windows Vista, Windows 7, Windows 8, English. Download Key Features, System requirements, Pros, See also: Mozilla firefox free download.

More information

Problem Installing Adobe Flash Player Mozilla Firefox Portable

Problem Installing Adobe Flash Player Mozilla Firefox Portable Problem Installing Adobe Flash Player Mozilla Firefox Portable The Adobe Flash Player plugin lets you view video and animated content in Note: The Firefox Software Update feature does not update installed

More information

Adobe Flash Player 12 Problems Windows 7 S

Adobe Flash Player 12 Problems Windows 7 S Adobe Flash Player 12 Problems Windows 7 S Hi all, I have been having trouble trying to install Adobe Flash Player on my new computer lately. The download I'm using Windows 7 Home Premium and I use Firefox

More information

Manual Internet Explorer 9 Xp Windows 7 64 Bit Cnet

Manual Internet Explorer 9 Xp Windows 7 64 Bit Cnet Manual Internet Explorer 9 Xp Windows 7 64 Bit Cnet Version: DoNotTrackMe for IE (32-bit) 2.2.9.515. Pros. never got to try it. Cons You have to manually update. Summary Operating Systems, Windows 98/Me/NT/2000/XP/2003/Vista/7/8.

More information

Server Monitoring. AppDynamics Pro Documentation. Version 4.1.x. Page 1

Server Monitoring. AppDynamics Pro Documentation. Version 4.1.x. Page 1 Server Monitoring AppDynamics Pro Documentation Version 4.1.x Page 1 Server Monitoring......................................................... 4 Standalone Machine Agent Requirements and Supported Environments............

More information

Manual Internet Explorer 10 Vista 64 Bit Windows 7 Problems

Manual Internet Explorer 10 Vista 64 Bit Windows 7 Problems Manual Internet Explorer 10 Vista 64 Bit Windows 7 Problems Internet Explorer 10 Modern UI/Metro Internet Explorer 11 Desktop The "joys" of Windows Update not working in Windows XP, Vista, 7, 8 and 8.1

More information

Qvidian Proposal Automation System Requirements

Qvidian Proposal Automation System Requirements Qvidian Proposal Automation System Requirements Version 11.0.6-10/13/2017 Copyright Copyright 2017 Qvidian. All rights reserved. Information in this document is subject to change without notice. The software

More information

Version 2.8. Installation Guide

Version 2.8. Installation Guide Version 2.8 Installation Guide Copyright 2010 Pearson Education, Inc. or its affiliate(s). All rights reserved. ELLIS is a registered trademark, in the U.S. and/or other countries, of Pearson Education,

More information

Set Up Salesforce Files Sync

Set Up Salesforce Files Sync Set Up Salesforce Files Sync Salesforce, Spring 18 @salesforcedocs Last updated: April 25, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Supported Devices, OS, and Browsers

Supported Devices, OS, and Browsers Kony Visualizer Supported Devices, OS, and Browsers Release V8 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

Manual Internet Explorer 9 Xp 32 Bit Windows Vista

Manual Internet Explorer 9 Xp 32 Bit Windows Vista Manual Internet Explorer 9 Xp 32 Bit Windows Vista Microsoft will release an updated version of this tool on the second Tuesday of each For: Windows 10 32-bit and more. Upgrade your Internet Explorer.

More information

Getting Started With Parallels Desktop 7

Getting Started With Parallels Desktop 7 Getting Started With Parallels Desktop 7 Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels International

More information

Manual Internet Explorer 9 Xp Windows 7 64 Bit

Manual Internet Explorer 9 Xp Windows 7 64 Bit Manual Internet Explorer 9 Xp Windows 7 64 Bit For example, when Internet Explorer 9 was launched, it was distributed as an update for Windows and you could remove it from the list of I have a laptop with

More information

System Requirements for Online Testing

System Requirements for Online Testing North Dakota State Assessment System Requirements for Online Testing 2016 2017 Published March 27, 2017 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information

More information

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

More information

STN Product System Requirements

STN Product System Requirements STN Product System Requirements This document contains system requirements for STN products including: Requirements for STNext Requirements for New STN platform Requirements for STN Express and STN on

More information

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list.

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list. Using Adobe Flash Software The S.T.A.B.L.E. Program Learner Course PowerPoint slides are packaged with Adobe Flash and will play using a Flash Player. This means you do not have to have PowerPoint installed

More information

Manual Internet Explorer 9 Xp 32 Bit Window 7

Manual Internet Explorer 9 Xp 32 Bit Window 7 Manual Internet Explorer 9 Xp 32 Bit Window 7 For: Windows 10 32-bit and more. Download and run the Windows 7 Upgrade Advisor to see if your PC is ready for Upgrade your Internet Explorer. The Windows

More information

Online Geometry Computer Requirements (For students using computers other than the HCPS Dell issued laptops)

Online Geometry Computer Requirements (For students using computers other than the HCPS Dell issued laptops) Online Geometry Computer Requirements (For students using computers other than the HCPS Dell issued laptops) What are the SchoolSpace System Requirements for a PC? Microsoft Windows XP or Microsoft Windows

More information

Perceptive DataTransfer

Perceptive DataTransfer Perceptive DataTransfer System Overview Version: 6.2.x Written by: Product Documentation, R&D Date: January 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact, and WebNow

More information

Copyright

Copyright 1 Overview: Mobile APPS Categories Types Distribution/Installation/Logs Mobile Test Industry Standards Remote Device Access (RDA) Emulators Simulators Troubleshooting Guide App Risk Analysis 2 Mobile APPS:

More information

System Requirements. Contents

System Requirements. Contents System Requirements Contents 1. Introduction... 2 2. Adobe Flash Required for the 2017 18 School Year... 2 3. Hardware Requirements... 2 4. i-ready Support for the ipad... 5 5. Current System Requirements...

More information

Manual Internet Explorer 8 For Windows 7 64 Bit Full

Manual Internet Explorer 8 For Windows 7 64 Bit Full Manual Internet Explorer 8 For Windows 7 64 Bit Full I have to install an internet explorer plugin manually by this mentioned protocol: This is on Windows 7 Home Premium (64 bit) answered Dec 3 '14 at

More information

Manual Internet Explorer 9 Xp Windows 7 64 Bit Offline Installer

Manual Internet Explorer 9 Xp Windows 7 64 Bit Offline Installer Manual Internet Explorer 9 Xp Windows 7 64 Bit Offline Installer For: Windows 10 32-bit and more. Windows Malicious Software Removal Tool x64 6/9/2015. File Size: 49.4 MB. KB Articles: KB890830. The Microsoft

More information

Installing and Setting Up the Snap-on EPC. Rev.1.10 (10 Oct 2013) PN EN

Installing and Setting Up the Snap-on EPC. Rev.1.10 (10 Oct 2013) PN EN Installing and Setting Up the Snap-on EPC Rev.1.10 (10 Oct 2013) PN 275-0800-EN Table of Contents 1. Introduction... 3 2. Minimum Requirements... 4 3. Installing the Snap-on EPC... 6 4. Licensing the Snap-on

More information

How To Install Plugin Internet Explorer 11 On >>>CLICK HERE<<<

How To Install Plugin Internet Explorer 11 On >>>CLICK HERE<<< How To Install Plugin Internet Explorer 11 On Windows 7 32 Bit Download and run the Windows 7 Upgrade Advisor to see if your PC is ready for Windows 7. It scans your hardware, devices, and installed programs

More information

Adobe Flash Player 12 Problems Windows 7 Filehippo

Adobe Flash Player 12 Problems Windows 7 Filehippo Adobe Flash Player 12 Problems Windows 7 Filehippo The development of this new version of Adobe Flash Player took some time flash player so that video quality can be get improved without any other problem.

More information

Welcome to the Creative DRAWings March 2011 Newsletter.

Welcome to the Creative DRAWings March 2011 Newsletter. Welcome to the Creative DRAWings March 2011 Newsletter. Spring is in the air and Creative DRAWings wants to keep you up to date with news, information and techniques about your software. www.creative-

More information

Manual Internet Explorer 10 Windows 7 Home Premium 64 Bit

Manual Internet Explorer 10 Windows 7 Home Premium 64 Bit Manual Internet Explorer 10 Windows 7 Home Premium 64 Bit Sep 19, 2014. Recently, I had re-installed my Windows (Windows 7 Home Premium 64-bit). I even tried to manually install the Internet Explorer 11,

More information

How Do I Turn Adobe Flash Player Back On >>>CLICK HERE<<<

How Do I Turn Adobe Flash Player Back On >>>CLICK HERE<<< How Do I Turn Adobe Flash Player Back On Google Chrome To enable Adobe Flash Player, click the Enable link under its name. time to put this fucking browser to the trash and switch back to firefox. they

More information

Download Java Runtime Environment 8.0 build 45 (64-bit) Requirements: Windows Vista64 / Windows7 64 / Windows8 64. Languages: Multiple languages.

Download Java Runtime Environment 8.0 build 45 (64-bit) Requirements: Windows Vista64 / Windows7 64 / Windows8 64. Languages: Multiple languages. Manual Internet Explorer 10 Vista 64 Bit Windows 8 Filehippo I am using Vista Ultimate 64 bit SP2, and I can't seem to upgrade IE7 to IE 9. Everytime I try to download IE 9 from microsoft I get a window

More information

Product System Requirements and Compatibility Matrix

Product System Requirements and Compatibility Matrix Product System Requirements and Compatibility Matrix Before installing Encompass or other products offered by Ellie Mae, verify the system requirements detailed in this document. When installing Encompass,

More information

Manual Internet Explorer 9 Xp Windows 7 32 Bit

Manual Internet Explorer 9 Xp Windows 7 32 Bit Manual Internet Explorer 9 Xp Windows 7 32 Bit or administrators and end users who want to install this security update manually (including customers who have Windows 7 for 32-bit Systems Service Pack

More information

User Manual. Users can use Adobe Acrobat functionality to further assist in locating a specific section of the manual.

User Manual. Users can use Adobe Acrobat functionality to further assist in locating a specific section of the manual. Technology User Manual Search the Manual Users can use Adobe Acrobat functionality to further assist in locating a specific section of the manual.. Select to Search document (this symbol can be found at

More information

CleanMyPC User Guide

CleanMyPC User Guide CleanMyPC User Guide Copyright 2017 MacPaw Inc. All rights reserved. macpaw.com CONTENTS Overview 3 About CleanMyPC... 3 System requirements... 3 Download and installation 4 Activation and license reset

More information

Locally Deployed System Requirements SuccessMaker 10 DRAFT 3/31/2017

Locally Deployed System Requirements SuccessMaker 10 DRAFT 3/31/2017 3/31/2017 March 31, 2017 Copyright 2017 Pearson Education, Inc. or one or more of its direct or indirect affiliates. All rights reserved. Pearson and SuccessMaker are registered trademarks, in the U.S.

More information

PRODUCTION GUIDE. Adform Skin (836x x x x x754)

PRODUCTION GUIDE. Adform Skin (836x x x x x754) PRODUCTION GUIDE Adform Skin (836x754 + 942x754 + 1152x754 + 1264x754 + 1600x754) Production Guide 1 Table of Contents Skin (836x754 + 942x754 + 1152x754 + 1264x754 + 1600x754) 2 User Experience 2 Creative

More information

SAS STUDIO. A pretty big deal! Copyr i g ht 2012, SAS Ins titut e Inc. All rights res er ve d.

SAS STUDIO. A pretty big deal! Copyr i g ht 2012, SAS Ins titut e Inc. All rights res er ve d. A pretty big deal! 1.12.2014 INTRODUCTION A pretty big deal! Web-based programming interface to SAS It runs in your browser, which means that end users don't have to install anything (when connecting to

More information

Chrome Version Flash Player Adobe Gratis 2012 For Windows Xp

Chrome Version Flash Player Adobe Gratis 2012 For Windows Xp Chrome Version Flash Player Adobe Gratis 2012 For Windows Xp Windows Apps Browsers and Plugins Requirements: Windows XP / Vista / Windows7 / XP64 / Vista64 / Windows7 64 Homepage: adobe.com/products/flashplayer/

More information

Real Player Manual Not Working Firefox 2013

Real Player Manual Not Working Firefox 2013 Real Player Manual Not Working Firefox 2013 FB videos do not play in IE either. Same This still left over 1,300 Firefox & flash files on my PC so I manually deleted the The flash version was 14.0.0.179

More information

System Requirements for Online Testing

System Requirements for Online Testing System Requirements for Online Testing 2016 2017 Published April 28, 2017 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information Distribution Engine, Test

More information

Ios Sdk Documentation For Windows 7 32 Bit. Latest Version >>>CLICK HERE<<<

Ios Sdk Documentation For Windows 7 32 Bit. Latest Version >>>CLICK HERE<<< Ios Sdk Documentation For Windows 7 32 Bit Latest Version Download Latest ios SDK & Sample Project Got the SDK? v5.3.0 (May 7, 2015) Native ios SDK now sends the version of the Unity wrapper SDK along

More information

Manual Internet Explorer 10 Vista 32 Bit >>>CLICK HERE<<<

Manual Internet Explorer 10 Vista 32 Bit >>>CLICK HERE<<< Manual Internet Explorer 10 Vista 32 Bit Windows 7 64 Bit Windows Vista x64 Edition Service Pack 2. Internet Explorer 7 Windows Server 2008 for 32-bit Systems Service Pack 2. Internet Explorer 7 I am running

More information

Exploring Cross-platform Tools For Mobile Development: Lessons Learned. mlearning: Tips and Techniques for Development and Implementation

Exploring Cross-platform Tools For Mobile Development: Lessons Learned. mlearning: Tips and Techniques for Development and Implementation mlearning: Tips and Techniques for Development and Implementation November 14 & 15, 2013 201 Exploring Cross-platform Tools For Mobile Development: Lessons Learned Perry Bennett Exploring Cross-platform

More information