Using Adobe AIR for Online Help
|
|
|
- Nelson Merritt
- 9 years ago
- Views:
Transcription
1 Using Adobe AIR for Online Help Introduction What is Adobe AIR? What is AIR Help? Benefits of AIR Help Adobe RoboHelp AIR Output MadCap Flare AIR Output Comparison: RoboHelp vs. Flare Custom AIR Help Options Custom AIR Help Example AIR Application Development HTML-Based AIR Project MXML-Based AIR Project AIR Help Possibilities Wrap Up
2 Introduction Scott Prentice, President of Leximation, Inc. Specializing in FrameMaker plugin development as well as structured FrameMaker conversions, consulting, and development. FrameMaker user/developer since Developed DITA-FMx, a FrameMaker plugin for efficient DITA authoring and publishing. Developer of custom Help systems and creative/functional web applications. Coined the term AIR Help in 2007 after learning about Adobe s new AIR technology. Interested in creating innovative ways to provide user assistance that is actually used.
3 What is Adobe AIR? Adobe AIR (Adobe Integrated Runtime) is a cross-platform development environment that lets developers create native desktop applications using web technologies like HTML and Flash. Installation of an AIR application requires the prior installation of the AIR runtime. The same.air file can be installed on Windows, Mac, and Linux systems. AIR is based on Open Source technologies - Flex (ActionScript, MXML), WebKit, SQLite, Flash. Everything that you need to develop and create an AIR application is available as a free download from adobe.com (Flex and AIR SDKs). AIR supports the following 16 languages: Chinese (Traditional and Simplified), Czech, Dutch, English, French, German, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, Swedish, and Turkish.
4 What is AIR Help? AIR Help is a term that describes a user assistance application that has been developed using the Adobe AIR development platform. Because the AIR technology is so flexible, Help systems developed using AIR may provide very different features. Two commercially available tools for exporting an AIR Help file: Adobe s RoboHelp 8 Adobe AIR-based Help MadCap Software s Flare 4 or Flare 5 WebHelp AIR Design and develop your own AIR Help system using HTML/Ajax/JavaScript or Flex/Flash technologies. Complexity ranges from wrapping up an existing HTML-based Help system to a highly developed custom user assistance application. Sample AIR Help source files are available from Leximation. A prototype AIR Help plugin for the DITA Open Toolkit is currently available.
5 Benefits of AIR Help Cross-platform Single deliverable for a Help system (like a CHM file) Embedded browser component eliminates the need to design for multiple browsers Highly customizable, limited only by your imagination Strong connection to the web, easy integration of web and local content Easily embed Flash and PDF content Can read/write data to the local file system Security, each AIR file must be digitally signed by the publisher Open source development technologies
6 Adobe RoboHelp AIR Output Provides typical Help system features such as Contents, Index, Search, Glossary, Favorites, Print, and Forward/Back. Supports context sensitive help calls. Variety of skins/themes to customize the look and feel Comments added to topics can be shared between users (a great way to perform reviews of online content) Mini TOC links to sub heads in each topic Include context with search results (like Google) Auto-update for online updates of Help system Include additional web-based content on Resource tabs and via RSS Install a single file help package (as opposed to loose HTML files) The RoboHelp Packager for AIR reads RoboHelp 6 or 7 WebHelp files and transforms them into an Adobe AIR-based Help application.
7 Adobe RoboHelp AIR Output (cont.)
8 MadCap Flare AIR Output Flare s AIR output is a wrapped WebHelp system. All of the features are HTML-based and not defined with programmatic Flex/ ActionScript controls. Provides typical Help system features such as Contents, Index, Search, Glossary, Favorites, and Forward/Back. Other features can easily be added by modifying the underlying WebHelp system.
9 MadCap Flare AIR Output (cont.)
10 Comparison: RoboHelp vs. Flare Specific features available with each AIR output option. AIR Help Feature RoboHelp Flare Natively exports AIR from authoring tool Context sensitive Help calls Auto-update capability Allows user comments/review (a) Dynamic mini TOC Search results with context Multiple resource tabs for external websites (b) Ability to customize the file icon Single file Help package Languages supported Persistent window size and position a. Available through the purchase of the MadCap Feedback Server application b. Could be added as a topic in the main WebHelp project
11 Custom AIR Help Options If you re willing to do some coding and development, your options for a Help delivery system are essentially unlimited. It is very easy to wrap an existing browser-based Help system (generated by any Help authoring tool) in AIR. This results in the same functionality as if it were not wrapped in AIR, but gives you a cross-platform, single file deliverable. A custom user assistance application can look like a traditional Help system (navigation on the left, content on the right), or it can provide additional features or introduce a completely different paradigm.
12 Custom AIR Help Example The Leximation DITA to AIR Help plugin for the DITA Open Toolkit is available free of charge. This provides the basic functionality that you d expect in a Help system, and is intended to be used as the starting point for developing your own custom AIR Help system. Even if you re not using DITA, you can make use of this AIR application code for your own custom AIR Help system. Features provided: Standard navigation tabs for Contents, Index, and remote/local full text search with word highlighting Next, Previous, Forward, Back, and Home buttons Context sensitivity Persistent window size and position
13 Custom AIR Help (cont.)
14 AIR Application Development Development of an AIR application is typically done with Adobe s Flex Builder, although this can be done in other development environments or with a simple text editor. The interface of a typical AIR application is laid out with MXML, an XML format that provides for the ability to arrange interface components. ActionScript is used to handle events and dynamic interaction with the interface components. ActionScript is an object oriented programming language similar to JavaScript. An HTML browser component (WebKit) can be added to the interface to render HTML within the application. Your user assistance application can be designed to take on the operating system s look and functionality for the window elements, or it can be customized. You can even create windows that are a shape other than a rectangle.
15 HTML Based AIR Project Application descriptor file (hello-app.xml) <?xml version="1.0" encoding="utf-8"?> <application xmlns=" <id>com.leximation.ebstc.hello</id> <filename>hello</filename> <version>0.01</version> <name>adobe AIR Basics</name> <initialwindow> <content>hello.html</content> <visible>true</visible> </initialwindow> </application> Root content file (hello.html) <html> <head><title>stc EastBay: Adobe AIR Basics</title></head> <body> <h1>hello EastBay!</h1> <p>this is the most basic AIR app.</p> </body> </html> Test using ADL. "C:\Tools\Flex\flex_sdk_3.4\bin\adl.exe" hello-app.xml
16 HTML Based AIR Project (cont.)
17 MXML Based AIR Project Application descriptor file (helloagain-app.xml) <?xml version="1.0" encoding="utf-8"?> <application xmlns=" <id>com.leximation.ebstc.helloagain</id> <filename>helloagain</filename> <version>0.01</version> <name>adobe AIR Basics</name> <initialwindow> <content>helloagain.swf</content> <visible>true</visible> </initialwindow> </application> Root content file (helloagain.mxml) <?xml version="1.0" encoding="utf-8"?> <mx:windowedapplication xmlns:mx=" layout="absolute"> <mx:script> <![CDATA[ import mx.collections.*; private function inithtmlcontrol():void { htmlcontrol.location='help/hello.html' } ]]> </mx:script>... continued on next page
18 MXML Based AIR Project (cont.) Root content file continued (helloagain.mxml)... continued from previous page <mx:vbox width="100%" height="100%"> <mx:hbox width="100%" paddingtop="3" paddingright="3" paddingleft="3"> <mx:textinput id="textinput" width="100%" editable="false" backgroundcolor="#eeeeee"/> <mx:button label="home" click="inithtmlcontrol()"/> <mx:button label="google" click="htmlcontrol.location=' <mx:button label="stc EastBay" click="htmlcontrol.location=' </mx:hbox> <mx:html id="htmlcontrol" paddingleft="10" paddingbottom="10" paddingright="10" paddingtop="10" height="100%" width="100%" borderstyle="none" bottom="0" horizontalcenter="0" creationcomplete="inithtmlcontrol()" complete="textinput.text=htmlcontrol.location"/> </mx:vbox> </mx:windowedapplication> Compile SWF using AMXMLC. "C:\Tools\Flex\flex_sdk_3.4\bin\amxmlc.bat" helloagain.mxml
19 Test using ADL. MXML Based AIR Project (cont.) "C:\Tools\Flex\flex_sdk_3.4\bin\adl.exe" helloagain-app.xml Create self-signed certificate using ADT. "C:\Tools\Flex\flex_sdk_3.4\bin\adt" -certificate -cn myselfsignedcert 1024-RSA mycert.pfx secretpassword Create the AIR package file using ADT. "C:\Tools\Flex\flex_sdk_3.4\bin\adt" -package -storetype pkcs12 -keystore mycert.pfx -storepass secretpassword helloagain.air helloagain-app.xml helloagain.swf help/*
20 MXML Based AIR Project (cont.)
21 AIR Help Possibilities Aside from traditional Help system features, some possibilities are: Combined remote/local search User comments visible to all users of the Help system A chat interface that lets users ask questions of other users of the Help system Ability for users and administrators to add new topics to the Help system that describe their best practices for using the tool Ability for users to customize the navigation or other UI elements Dynamically download content from the web based on the user s needs or user type Dynamically update content as it becomes available Much, much more...
22 Wrap Up Resources: Questions? Scott Prentice <sp AT leximation DOT com> Leximation -
Adobe AIR 1.5 for Linux
Adobe AIR 1.5 for Linux Release Notes Release date: 12/17/08 Getting Started Welcome to the release notes for AIR 1.5 for Linux. This document contains system requirements, installation instructions, known
Best Practices Guide for Delivering DITA-Authored Help
An OASIS White Paper Best Practices Guide for Delivering DITA-Authored Help OASIS DITA Technical Committee Online Help Subcommittee November 20, 2008 Draft TOC 1 Contents Introduction to the DITA Help
Adobe InDesign Server CS2
For Developers and Systems Integrators Adobe InDesign Server CS2 Frequently Asked Questions A professional platform for automated design and publishing Technology Basics Q. What is Adobe InDesign Server
Hassle-Free Meetings. Hold meetings anytime anywhere. www.spreed.com
Hassle-Free Meetings Hold meetings anytime anywhere. www.spreed.com Hold meetings anytime anywhere. Save time and money. Move plans forward with online conferencing! Why Use Spreed? Time Is Money Spreed
Novell Filr. Mobile Client
Novell Filr Mobile Client 0 Table of Contents Quick Start 3 Supported Mobile Devices 3 Supported Languages 4 File Viewing Support 4 FILES THAT CANNOT BE VIEWED IN THE FILR APP 4 FILES THAT GIVE A WARNING
Novell Filr. Windows Client
Novell Filr Windows Client 0 Table of Contents Supported Environments 2 Supported Languages 2 Getting Started 3 Which Folders Are Synchronized 3 What Actions Are Supported 4 Configuring Folders to Synchronize
`````````````````SIRE QUICK START GUIDE
`````````````````SIRE QUICK START GUIDE Table of Contents Table of Contents 2 Introduction 3 Set-up 4 Getting Started 5 Set-up Your Backup Profile 6 Custom Backup 7 Launch Your Backup 9 Main Screen 10
Actuate Business Intelligence and Reporting Tools (BIRT)
Product Datasheet Actuate Business Intelligence and Reporting Tools (BIRT) Eclipse s BIRT project is a flexible, open source, and 100% pure Java reporting tool for building and publishing reports against
`````````````````SIRE USER GUIDE
`````````````````SIRE USER GUIDE Table of Contents INTRODUCTION 3 SYSTEM REQUIREMENTS 4 RUNNING SANDISK BACKUP 5 Setup Your First Backup 6 Create Your Backup 7 Custom Backup 8 Dmailer Online 10 Launch
Deepak Patil (Technical Director) [email protected] iasys Technologies Pvt. Ltd.
Deepak Patil (Technical Director) [email protected] iasys Technologies Pvt. Ltd. The term rich Internet application (RIA) combines the flexibility, responsiveness, and ease of use of desktop applications
Getting Started with BarTender
Getting Started with BarTender MANUAL Contents Getting Started with BarTender 3 Installation 4 Choosing What to Install 4 Automation Editions (Automation and Enterprise Automation) 4 Installing BarTender
Using Flash CS3 and AIR to Build Desktop Applications
605 Using Flash CS3 and AIR to Build Desktop Applications Dan Carr, Dan Carr Design www.elearningguild.com November 11-14, 2008 San Jose, CA Session Overview Using Flash CS3 and Adobe AIR to Build Desktop
About This Document 3. Integration Overview 4. Prerequisites and Requirements 6
Contents About This Document 3 Integration Overview 4 Prerequisites and Requirements 6 Meeting the Requirements of the cpanel Plugin... 6 Meeting the Requirements of Presence Builder Standalone... 6 Installation
Translution Price List GBP
Translution Price List GBP TABLE OF CONTENTS Services AD HOC MACHINE TRANSLATION... LIGHT POST EDITED TRANSLATION... PROFESSIONAL TRANSLATION... 3 TRANSLATE, EDIT, REVIEW TRANSLATION (TWICE TRANSLATED)...3
Personal Archive User Guide
Personal Archive User Guide Personal Archive gives you an unlimited mailbox and helps you quickly and easily access your archived email directly from Microsoft Outlook or Lotus Notes. Since Personal Archive
ON24 MOBILE WEBCASTING USER GUIDE AND FAQ FEBRUARY 2015
FEBRUARY 2015 MOBILE ATTENDEE GUIDE ON24 s Mobile Webcasting console allows you to bring your webcast directly to your audience, regardless of location. Users on mobile devices can register, attend, and
EBSCOhost User Guide Searching. Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features. support.ebsco.
EBSCOhost User Guide Searching Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features Table of Contents What is EBSCOhost... 3 System Requirements... 3 Inside this User Guide...
DocuSign for SharePoint Online v2.4
Quick Start Guide DocuSign for SharePoint Online v2.4 Published October 12, 2015 Overview DocuSign for SharePoint Online allows users to sign or send documents out for signature from a SharePoint Online
Remote Desktop Services Guide
Remote Desktop Services Guide Mac OS X V 1.1 27/03/2014 i Contents Introduction... 1 Install and connect with Mac... 1 1. Download and install Citrix Receiver... 2 2. Installing Citrix Receiver... 4 3.
Live Office. Personal Archive User Guide
Live Office Personal Archive User Guide Document Revision: 14 Feb 2012 Personal Archive User Guide Personal Archive gives you an unlimited mailbox and helps you quickly and easily access your archived
AccuRead OCR. Administrator's Guide
AccuRead OCR Administrator's Guide July 2016 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 System requirements...4 Supported applications... 4 Supported formats and languages...
Contents. BMC Atrium Core 7.6.00 Compatibility Matrix
Contents INTRODUCTION... 2 Supported Configurations... 2 Known Issues... 2 Potential Issues... 2 Support Policy for later versions of vendor products released after Atrium Core 7.5.00... 2 BMC ATRIUM CMDB,
Getting Started Guide
MadCap Software Getting Started Guide Flare 11.1 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document
GET YOUR START MENU BACK IN MICROSOFT WINDOWS SERVER 2012
Products To make your life better Simple to Install Easy, non-technical setup. GET YOUR START MENU BACK IN MICROSOFT WINDOWS SERVER 2012 Easy to Use The start menu design is familiar and comfortable to
Release Notes MimioStudio 11.30 Software
Release Notes MimioStudio 11.30 Software Copyright Notice 2014 Mimio. All rights reserved. About MimioStudio MimioStudio classroom software is the unifying software solution for MimioClassroom products
We Answer To All Your Localization Needs!
We Answer To All Your Localization Needs! Str. Traian Nr. 2, Bucharest, Romania 8950 W Olympic Blvd, California, U.S.A (RO) +40.740.182.777 / (US) +1.213.248.2367 www.i-t-local.com; [email protected]
Echo Backup Software. Quick Start Guide
Echo Backup Software Quick Start Guide INTRODUCTION Whether you re a business professional on the road, a student doing homework at a friend s house, or someone simply using a laptop in a café, it s important
Education Software Installer 2014
Education Software Installer 2014 SYSTEM ADMINISTRATOR S GUIDE FOR MAC OS X OPERATING SYSTEM SOFTWARE Product registration If you register your SMART product, we ll notify you of new features and software
Adobe Flash Player and Adobe AIR security
Adobe Flash Player and Adobe AIR security Both Adobe Flash Platform runtimes Flash Player and AIR include built-in security and privacy features to provide strong protection for your data and privacy,
Ahsay Online Backup Suite v5.1. Installers Customization
Version 2.0 June 2006 Table of Content 1 Introduction...3 2...3 2.1 Overview...3 2.2 How To Customize OBM.ZIP...4 2.3 How To Customize INSTALL.ZIP...4 3 Languages & Terms of Use Files...6 4 Screenshots...7
OWrite One of the more interesting features Manipulating documents Documents can be printed OWrite has the look and feel Find and replace
OWrite is a crossplatform word-processing component for Mac OSX, Windows and Linux with more than just a basic set of features. You will find all the usual formatting options for formatting text, paragraphs
Flare Tips and Tricks. Tips and tricks. Importing content Lists. Variables and snippets Condition tags Printed documentation WebHelp.
Flare Tips and Tricks Scott DeLoach [email protected] t t t Founder, ClickStart Certified Instructor, Flare RoboHelp Captivate Author, MadCap Flare for RoboHelp Users 2007 ClickStart, Inc. All rights
We Answer All Your Localization Needs!
partner We Answer All Your Localization Needs! Version: 2.0 23.05.2014 California, U.S.A Bucharest, Romania (US) +1.714.408.8094 (RO) +40.740.182.777 www.i-t-local.com [email protected] 1 of 13 Our Company
QUICK FEATURE GUIDE OF SNAPPII'S ULTRAFAST CODELESS PLATFORM
QUICK FEATURE GUIDE OF SNAPPII'S ULTRAFAST CODELESS PLATFORM (* Click on the screenshots to enlarge) TABLE OF CONTENTS 1. Visually Develop Mobile Applications 2. Build Apps for Any Android or ios Device
Cisco Jabber IM for iphone
Data Sheet Cisco Jabber IM for iphone Cisco Collaboration Solutions improve team and customer experiences to help organizations encourage innovation and improve decision making while building trust and
Bridgit 4.6 software
Release notes Bridgit 4.6 software About these release notes These release notes summarize the features and requirements of Bridgit 4.6 software and updates to resolved issues. Product information Bridgit
www.novell.com/documentation Administration Guide Messenger 2.2 July 30, 2013
www.novell.com/documentation Administration Guide Messenger 2.2 July 30, 2013 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
Cross-Platform Tools
Cross-Platform Tools Build once and Run Everywhere Alexey Karpik Web Platform Developer at ALTOROS Action plan Current mobile platforms overview Main groups of cross-platform tools Examples of the usage
Bomgar License Comparison
Feature Standard Enterprise Multi-OS Support Support customers who are using Windows 95-Vista or the latest versions of Macintosh, SuSE, Ubuntu, RedHat, Fedora, Windows Mobile, and Blackberry. For providing
SAP BusinessObjects Document Version: 4.1 Support Package 7 2015-11-27. Dashboards and Presentation Design Installation Guide
SAP BusinessObjects Document Version: 4.1 Support Package 7 2015-11-27 Dashboards and Presentation Design Installation Guide Content 1 Document History....3 2 About this Guide....4 3 Planning Installations....5
SMART Software for Mobile Devices Sales brief
SMART Software for Mobile Devices Sales brief For reseller use only This brief provides a summary of the information and tools available to assist in you in your conversations with education customers
LSI TRANSLATION PLUG-IN FOR RELATIVITY. within
within LSI Translation Plug-in (LTP) for Relativity is a free plug-in that allows the Relativity user to access the STS system 201 Broadway, Cambridge, MA 02139 Contact: Mark Ettinger Tel: 800-654-5006
October 2012. Oracle User Productivity Kit 11.1 Frequently Asked Questions
October 2012 Oracle User Productivity Kit 11.1 Frequently Asked Questions Table of Contents Documentation... 2 UPK Player Published Output... 3 Learning Management Systems... 8 UPK Developer... 9 Languages...
EasyPush Push Notifications Extension for ios
EasyPush Push Notifications Extension for ios Copyright 2012 Milkman Games, LLC. All rights reserved. http://www.milkmangames.com For support, contact [email protected] To View full AS3 documentation,
www.novell.com/documentation Administration Guide Messenger 3.0 February 2015
www.novell.com/documentation Administration Guide Messenger 3.0 February 2015 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
FreeConference SharePlus TM. Desktop Sharing User Guide. SharePlus TM Desktop Sharing User Guide
FreeConference SharePlus TM Desktop Sharing User Guide Use this guide as a tool to familiarize yourself with all the features of SharePlus Desktop Sharing. You can also refer to the FAQ s if you have additional
SMART Notebook System Administrator s Guide. Windows Operating Systems
SMART Notebook System Administrator s Guide Windows Operating Systems Product Registration If you register your SMART product, we ll notify you of new features and software upgrades. Register online at
What s New in LANDESK Service Desk Version 7.8. Abstract
What s New in LANDESK Service Desk Version 7.8 Abstract This document highlights the new features and enhancements introduced in versions 7.8 of LANDESK Service Desk. Document Creation: December, 19 2014.
RIA DEVELOPMENT OPTIONS - AIR VS. SILVERLIGHT
RIA DEVELOPMENT OPTIONS - AIR VS. SILVERLIGHT Oxagile 2010 www.oxagile.com TABLE OF CONTENTS 1 ATTRIBUTION... 3 2 ABOUT OXAGILE... 4 3 QUESTIONNAIRE... 5 3.1 DO YOU THINK AIR AND SILVERLIGHT ARE COMPARABLE
Web Conferencing Comparison Guide
Focus Research March 2009; Revised June 2010 Focus Research 2009-2010 Citrix Systems Inc. Cisco WebEx Adobe Systems Inc. InterCall Microsoft Corp. IBM Corp. GoToMeeting Meeting Center Adobe Connect Unified
Installation Guide Command WorkStation 5.5 with Fiery Extended Applications 4.1
Installation Guide Command WorkStation 5.5 with Fiery Extended Applications 4.1 About Fiery Extended Applications Fiery Extended Applications (FEA) 4.1 is a package of the following applications for use
MadCap Software. Import Guide. Flare 11
MadCap Software Import Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished
Rich Internet Applications
Rich Internet Applications Prepared by: Husen Umer Supervisor: Kjell Osborn IT Department Uppsala University 8 Feb 2010 Agenda What is RIA? RIA vs traditional Internet applications. Why to use RIAs? Running
Product Library 2.5 EUR. DVD Contents. Release Notes January 31st, 2012. Windows 2000 Windows Server 2000. Windows. Windows Vista. Windows.
1 von 7 Product Library 2.5 EUR Release Notes January 31st, 2012 DVD Contents Printer Drivers Version 2000 Server 2000 XP Vista 7 Server 2003 R2 KX DRIVER (Generic) 5.1.1405e2 KX DRIVER 5.2.1327d KX (XPS)
- Update 2.0.3. IBM Content Navigator Experience Platform. Sven Hapke Leading Technical Professional, Enterprise Content Management
New insights. Better outcomes. IBM Content Navigator Experience Platform - Update 2.0.3 Sven Hapke Leading Technical Professional, Enterprise Content Management Introducing IBM Content Navigator IBM s
Flash and Python. Dynamic Object oriented Rapid development. Flash and Python. Dave Thompson
Dynamic Object oriented Rapid development 1 What is Flash? Byte code is interpreted by VM in Flash Player Actionscript code is compiled to byte code AS2 Flash Player 7+, Flash Player Lite AS3 Flash Player
Contents. BMC Remedy AR System 7.5.00 Compatibility Matrix
Contents AR SYSTEM SERVER SUPPORTED HARDWARE PLATFORMS AND OPERATING SYSTEMS... 3 AR SYSTEM SERVER SUPPORTED DATABASES...3 JAVA SUPPORT... 4 AR SYSTEM MID-TIER SUPPORTED CONFIGURATIONS...5 AR SYSTEM CLIENT
Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013
Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone
Frequently asked questions
Adobe Creative Cloud for teams FAQ Frequently asked questions The following are answers to common questions about Adobe Creative Cloud for teams membership, purchasing, security, and storage. CREATIVE
Bomgar 10.6 License Comparison
Bomgar 10.6 License Comparison Multi-Platform Support Customer Technician/Representative Windows Windows 95-Windows 7 Server 2003 Server 2008 Windows 2000-Windows 7 Server 2003 Server 2008 Mac OS X OS
HP Universal CMDB. Software Version: 10.20. Support Matrix
HP Universal CMDB Software Version: 10.20 Support Matrix Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties for HP products and services
DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015
DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015 Copyright Copyright 2003-2015 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights
Creating Next Generation Enterprise Apps Using Cloud Services
Creating Next Generation Enterprise Apps Using Cloud Services TABLE OF CONTENTS EXECUTIVE SUMMARY... 3 INTRODUCTION... 3 THE STRATEGY OF MOBILE BACKEND AS A SERVICE... 4 THE TRADITIONAL MOBILE APP DEVELOPMENT
Mashup Development Seminar
Mashup Development Seminar Tampere University of Technology, Finland Fall 2008 http://www.cs.tut.fi/~taivalsa/kurssit/mads2008/ Prof. Tommi Mikkonen Dr. Antero Taivalsaari Background History of computing
AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev
International Journal "Information Technologies & Knowledge" Vol.5 / 2011 319 AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev Abstract: This paper presents a new approach
Generate Android App
Generate Android App This paper describes how someone with no programming experience can generate an Android application in minutes without writing any code. The application, also called an APK file can
SAP BusinessObjects BI Platform 4.1 Supported Platforms (PAM)
Supported Platforms (PAM) May 10, 2013 Updated: September 9, 2013 Disclaimer: This document is subject to change and may be changed by SAP at any time without notice. The document is not intended to be
Infor M3 Report Manager. Solution Consultant
Infor M3 Report Manager Per Osmar Solution Consultant [email protected] Carl Bengtsson CTO [email protected] 1 Agenda Challenges What is Report Manager Features Key Messages Demo Pilot Pre-req
SMART Bridgit software
Specifications SMART Bridgit software Version 4.5 Product description SMART Bridgit conferencing software is a cost-effective client/server application that lets you easily schedule meetings and connect,
Concur Travel & Expense
Concur Travel & Expense Supported Configurations Client Version Contents Supported Configurations... 1 Section 1: About Concur Travel & Expense... 1 Section 2: Read This First... 1 Browser Settings General...
Milestone Systems XProtect Video Management Software (VMS) Product Comparison Chart March 30, 2012
Milestone Systems XProtect Video Management Software (VMS) Product Comparison Chart Product name and current version Feature Overview Go Essential Express NVR Professional Enterprise Corporate 2.0 2.0
Trimble Office Synchronizer Release Notes. Version 1.68 November 2013
Trimble Office Synchronizer Release Notes Version 1.68 November 2013 Corporate Office Trimble Navigation Limited Engineering and Construction Division 935 Stewart Drive Sunnyvale, California 94085 U.S.A.
Formatting Custom List Information
Hello. MailChimp has a lot of great merge tags that can help you customize your email campaigns. You can use these merge tags to dynamically add content to your email. With merge tags, you can include
Cloud Attached Storage 3.1 EA
Release Notes Cloud Attached Storage 3.1 EA March 2012 Cloud Attached Storage 3.1 EA Release Notes 1 1 Release Contents Copyright 2009-2012 CTERA Networks Ltd. All rights reserved. No part of this document
How will the transition to the new Adobe Forums be handled?
Why are you changing the Adobe Forums? In response to community feedback through surveys, we are incorporating many user-requested features into Adobe Forums and also making changes to the underlying technology
By Kundan Singh Oct 2010. Communication
Flash Player Audio Video Communication By Kundan Singh Oct 2010 Modern multimedia communication systems have roots in several different technologies: transporting video over phone lines, using multicast
Accessing Data with ADOBE FLEX 4.6
Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data
Mobile Learning Basics + (Free) Mobile Learning Guide. Jason Haag and Marcus Birtwhistle
Mobile Learning Basics + (Free) Mobile Learning Guide Jason Haag and Marcus Birtwhistle Agenda Basics of Mobile Learning Why? What? ADL mlearning Guide What? How? Resources Questions/Discussion What We
The Reporting Console
Chapter 1 The Reporting Console This chapter provides a tour of the WebTrends Reporting Console and describes how you can use it to view WebTrends reports. It also provides information about how to customize
M-Files 10.0 New Features and Enhancements
M-Files 10.0 New Features and Enhancements 30.6.2013 1/38 Table of Contents 1. MAJOR NEW FEATURES AND ENHANCEMENTS...4 2. SYSTEM REQUIREMENTS AND UPGRADING TO VERSION 10.0...6 2.1 System requirements for
ivms-4500 HD (Android) Mobile Client Software User Manual (V3.4)
ivms-4500 HD (Android) Mobile Client Software User Manual (V3.4) UD.6L0202D1597A01 Thank you for purchasing our product. This manual applies to ivms-4500 HD (Android) mobile client software; please read
Open Cloud Store. End-user manual. For
Open Cloud Store - End-user manual For 1 Version control... 3 2 Introduction to BackupAgent... 4 3 Configuring BackupAgent... 5 3.1 Create a BackupAgent account... 5 3.2 Download and install the BackupAgent
Improving Madcap Flare SEO
Improving Madcap Flare SEO Using a New Approach to HTML5 Webhelp Targets #1 Remote Support Solution for the Enterprise Trusted by 7,500+ customers around the world: What to expect in this webinar Flare
JavaFX Session Agenda
JavaFX Session Agenda 1 Introduction RIA, JavaFX and why JavaFX 2 JavaFX Architecture and Framework 3 Getting Started with JavaFX 4 Examples for Layout, Control, FXML etc Current day users expect web user
Note: Files contained within the root of My Files & Folders will always be synced.
New in this release: Selective Sync Users can now choose which top level folders within My Files & Folders they would like to sync, giving flexibility over the amount of disk space consumed by ShareFile.
Recording. http://www.qnap.com/nvr/compatibilityx01.html. Smart recording (depending on the camera models)
VS-2108L Hardware Spec. CPU Marvell 1.6GHz DRAM 512MB DDRIII RAM Flash Memory 512MB Hard Disk Drive 2 x 3.5" SATA I/II hard disk drive (HDD) NOTE: 1. The system is shipped without hard disk drives. 2.
McAfee Web Reporter Turning volumes of data into actionable intelligence
McAfee Web Reporter Turning volumes of data into actionable intelligence Business today is more Internet-dependent than ever before. From missioncritical services to productivity tools, Internet access
New Features SMART Sync 2009. Collaboration Feature Improvements
P L E A S E T H I N K B E F O R E Y O U P R I N T New Features SMART Sync 2009 SMART Sync (formerly SynchronEyes ) is easy-to-use classroom management software that allows teachers to monitor and control
