Articulate Presenter 5.0 Player SDK

Size: px
Start display at page:

Download "Articulate Presenter 5.0 Player SDK"

Transcription

1 Note - this is the preview version of the documentation and excludes certain details required for implementation. The full documentation and the associated sample files are available to Articulate Platinum Membership Plan members at no charge. The gives Flash developers the ability to create custom Flash movies that extend and interact with the Articulate Presenter 5.0 Player. With the SDK, developers are able to: Add functionality by developing custom player tabs. Add player features by creating custom player toolbar items. Customize certain player assets. Communicate with the player via runtime API methods. This documentation, along with the included sample files will provide you with tools to get you started. creating custom tabs Articulate Presenter 5.0 ships with four tabs - Outline, Thumbnails, Notes and Search. In addition, you can create your own custom tabs to provide additional features and functionality for the Player. You create custom tabs by modifying the supplied.fla file in Flash MX and also editing an XML file. Locate the sample tab in the folder named Test_Tab. This folder contains the source FLA file TestTab.fla, the compiled SWF file TestTab.swf, and the art_plugins.xml file that references the TestTab.swf file. To add this test tab to any presentation simply copy the SWF and XML file to the player folder of any published presentation. Create your own custom tab by first modifying the FLA file in Flash MX. Publish your SWF for Flash Player 6. Tabs are then added to the Player by modifying the file art_plugins.xml. Within the modules section, define an item for each custom tab in your presentation. A typical item will look the following: <item> <id>5050</id> <type>navmod</type> <file>newtab.swf</file> <labeltext>new Tab</labeltext> <scrollenabled>true</scrollenabled> </item> Below is a quick description of the tags: id An internally used ID. It must be a number and unique among all item IDs. type Determines whether the custom item is a toolbar or a tab item. Use navmod for tab items; use toolmod for toolbar items. file Defines the SWF the Player will display when the item is activated. labeltext The text that is displayed on the tab or toolbar button. scrollenabled If the item is a tab, this value enables or disables the scrollbar. - 1 of 8 -

2 All tags are required except for scrollenabled. You may add more tags to provide the item with more information. Once built, your custom tabs and toolbar items can be added to any presentation by simply copying your SWF and XML files to the published output s player folder. You can also automatically include your custom tabs and toolbar items in every publish by copying them to the player folder within the program. This way, they will be included in the published output with each future publish. Assuming you installed Articulate Presenter 5 to the default location, the folder will live here: C:\Program Files\Articulate\Presenter\players 5.0\core\player creating custom toolbar items Articulate Presenter 5.0 Player includes several toolbar items accessed from the upper-right of the Player. The standard toolbar items include Attachments, Bookmark, Send Link, and Exit. Like tabs, you can create your own custom toolbar items to provide additional features and functionality to the Player. Adding a custom toolbar item is similar to adding a custom tab. Locate the sample toolbar item in the folder named Test_Tool. This folder contains the source FLA file TestTool.fla, the compiled SWF file TestTool.swf, and the art_plugins.xml file that references the TestTool.swf file. To add this toolbar item to any presentation simply copy the SWF and XML file to the player folder of any published presentation. Create your own custom toolbar item by first modifying the FLA file in Flash MX. When creating your Custom toolbar item, you must implement a function named artmoduleapi. This function is a command handler that should handle events from the Player. It should handle the following commands: activate_onclick activate deactivate A typical implementation of this command handler follows: function artmoduleapi( command ) { switch(command) { case activate_onclick : case activate : gotoandplay( activate ); break; case deactivate : gotoandplay( deactivate ); break; } } - 2 of 8 -

3 Additionally, it is the responsibility of the toolbar item to define a Boolean variable named artmoduleisactive at the item s base level and set the value of this variable based on whether or not the toolbar item is active or not. When finished authoring your custom toolbar item, publish your SWF for Flash Player 6. As with tabs, create a new item tag within art_plugins.xml for each custom toolbar item you wish to add to your presentation. A typical toolbar item will look similar to the following: <item> <id>5050</id> <type>navtool</type> <file>newtoolbaritem.swf</file> <labeltext>new Tool</labeltext> </item> modifying assets An asset is a Player component that resides outside of the core player files. Assets are usually required for the Player to function normally. Asset file names contain the prefix ast_. Not all assets can be modified; you will find all modifiable assets in the included Assets folder. Below is a list of the supplied FLA files followed by a brief description. ast_loader.fla A preloader for inserted Flash Movies that buffers the movie and allows the player controls to control the inserted movie. ast_navicons.fla Defines the icons that are displayed in the Outline view of the navigation used to expand and collapse the list. ast_remote.fla Defines a floating control to replace the normal controls that are in view mode three. To enable the floating controls add the following XML to your published playerproperties.xml file: <floatcontrols> <left>10000</left> <top>10000</top> <inneralpha>100</inneralpha> <outeralpha>100</outeralpha> </floatcontrols> You will find an example of ast_remote.fla in use in the included sample presentation; toggle to the slide-only display mode to view it. Contained within each FLA file on the layer named Implementation Notes, you will find any special instructions needed to modify or create your own asset. - 3 of 8 -

4 the articulate api object The Articulate API object is a global variable and is accessible to a Flash movie loaded within the playershell.swf simply by referencing API. However, if the loaded SWF was published for a different version of Flash then version 6, the global object may not be accessible. For this reason we strongly encourage you to reference the API Object at _level0. You can find a sample movie that implements the API in the folder Flash_Object. This folder contains the source FLA and the generated SWF. methods Below is a list of the methods exposed by the API: Play() Causes the player to continue playing. If the player is already playing then it does nothing. Pause() Pauses the player if it is currently playing. If the player is already paused then it has no effect. LockPlay(bLocked) Locks the play /pause button so that the user can t start or stop the presentation until it is unlocked. PlayNext() Plays the next slide. PlayPrevious() Plays the previous slide. PlaySlideNum(nSlideNum) Plays the slide specified by nslidenum. nslidenum must be an integer greater then 0 and less then or equal to the number of slides in the presentation. GotoFrame(nFrameNum) Goes to the frame specified by nframenum in the current slide. - 4 of 8 -

5 SetDisplayMode(strDisplayMode) Changes the display mode to the mode specified by strdisplaymode. strdisplaymode can have the following values: 1 The standard view 2 The no sidebar view 3 The slide only view next toggles the display mode to the next enabled view previous toggles the display mode previous enabled view GetDisplayMode() Returns a number representing the current display mode. For more details see Set- DisplayMode. GetCurrentSlide() Returns the index of the currently displayed slide IsPlaying() Returns true if the slide is playing and false if it has been paused. GetCurrentSlideTime() Returns the current position in seconds within the slide. GetCurrentPresentationTime() Returns the current position in seconds within the presentation. GetSlideCount() Returns the number of slide contained within the presentation. GetVolume() Returns the Volume setting. SetVolume(nVolume) Sets the volume to the value specified by nvolume. nvolume should be a number between 0 and of 8 -

6 GetSlideInfo(nSlideNum) Returns a slide info object. Supported properties: oslideinfo.strfilename The slide file SWF name oslideinfo.strbgswf The slide background SWF name oslideinfo.nplaylistid The slide s playlist id oslideinfo.strtitle The slide title oslideinfo.strslidetext The slide text oslideinfo.strnotes The slide notes oslideinfo.nslidetime The slide duration oslideinfo.bwaitforuser Determines if the slide waits when it reaches the end or plays the next slide oslideinfo.nframerate The slide framerate oslideinfo.nlevel The nesting level of the slide GetModuleData(nModuleId) Returns a reference to the array representation of the xml for the specified module ID. The structure of this array may vary depending on the data included in the modules xml. GetPlayerData() Returns a reference to the array representation of the xml data contained within playerproperties.xml. GetPresentationData() Returns a reference to the an array representation of the xml data contained within presentation.xml. EnableKeyboardShortcuts(bEnable) Enables or disables keyboard shortcuts based on the value of benable. IsColorized() Returns true if a color scheme has been enabled for the player. - 6 of 8 -

7 GetColorInfo() Returns a color info object. Properties supported: ColorInfo.Core.strText ColorInfo.Core.strSlideBg ColorInfo.Core.strAccentLines ColorInfo.Core.strSideBarBg ColorInfo.Core.strPlayerBg ColorInfo.Sidebar.strTouch ColorInfo.Sidebar.strIcon ColorInfo.Sidebar.strSeperator ColorInfo.Sidebar.strSlideSelected ColorInfo.Sidebar.strSlideRollover ColorInfo.Button.strText ColorInfo.Button.strFace ColorInfo.Button.strRollover ColorInfo.Tab.strText ColorInfo.Tab.strBorder ColorInfo.Tab.strRollover ColorInfo.Tab.strTopGrad ColorInfo.Tab.strBottomGrad ColorInfo.Scrollbar.strFace ColorInfo.Scrollbar.strTrack ColorInfo.Scrollbar.strArrows ColorInfo.TopBar.strGradTop ColorInfo.TopBar.strGradBottom ColorInfo.BottomBar.strGradTop ColorInfo.BottomBar.strGradBottom ColorInfo.Tooltip.strText ColorInfo.Tooltip.strBackground ColorInfo.Tooltip.strBorder ColorInfo.Playback.strGradTop ColorInfo.Playback.strGradBottom - 7 of 8 -

8 adding your custom api swf to your presentation When inserting a Flash movie that contains the API into a slide, follow the steps: 1. From the PowerPoint menubar, Click Articulate Insert Flash Movie. 2. Click Next. 3. Select Display in slide. 4. Browse and select the Flash movie that contains the API 5. Click Next. 6. Select the radio button Show Flash Movie seconds into the slide. 7. Change the other options to your preference. 8. Click Next. 9. Click Finish. Visit us at ABOUT ARTICULATE Articulate is the global leader in rapid e-learning. Thousands of corporate, government and academic customers in more than 50 countries use our powerful, intuitive technologies to train and communicate rapidly, widely and effectively. We know how people learn. We understand how organizations work. We believe that superior learning and communications technology, widely available across your enterprise, provides competitive advantage. That s what Articulate is all about putting the power of rapid e-learning in the hands of anyone who needs to share knowledge. Our goal is to ensure that you can train, motivate, inform and persuade the people who will move your organization forward. Copyright 2005, Articulate Global, Inc. All rights reserved. Read End-User License Agreement for terms and conditions. Articulate and all other trademarks mentioned in this document are the property of their respective owners.

Table of Contents. Articulate Presenter 5 Documentation -

Table of Contents. Articulate Presenter 5 Documentation - Articulate Presenter 5 Documentation - Table of Contents A. Welcome to Articulate Presenter 5 Documentation 2 B. Installing Articulate Presenter... 2 C. Lauching The Program... 2 D. Library and Options...

More information

Table Of Contents. iii

Table Of Contents. iii Table Of Contents About Articulate Engage... 1 About Articulate... 1 Installing Articulate Engage... 2 To install Articulate Engage:... 2 Launching Articulate Engage... 3 To launch Articulate Engage:...

More information

Microsoft Office PowerPoint 2007: Basic Course 01 - Getting Started

Microsoft Office PowerPoint 2007: Basic Course 01 - Getting Started Microsoft Office PowerPoint 2007: Basic Course 01 - Getting Started Slide 1 Getting started Course ILT Course objectives Explore the PowerPoint environment Get help by using PowerPoint s Help options Slide

More information

ispring Converter CLIPP Help Documentation

ispring Converter CLIPP Help Documentation How to use ispring Converter to produce a narrated PowerPoint presentation There are three components to producing online compatible narrated PowerPoint presentations: Step 1 Record narration and timings

More information

PRESENTER 09 Documentation

PRESENTER 09 Documentation a PRESENTER 09 Documentation Presenter 09 Documentation General 3 System Requirements for Presenter 09 3 Installing Presenter 09 4 Activating Presenter 09 5 Send to Articulate Presenter Package 7 Managing

More information

Table Of Contents. iii

Table Of Contents. iii Table Of Contents Welcome... 1 Using the Content Repository... 3 Content Repository Overview... 3 Description... 3 Repository File Types... 4 Working with the Repository... 6 Content Repository Interface...

More information

CHAPTER 1. Interface Overview 3 CHAPTER 2. Menus 17 CHAPTER 3. Toolbars and Tools 33 CHAPTER 4. Timelines and Screens 61 CHAPTER 5.

CHAPTER 1. Interface Overview 3 CHAPTER 2. Menus 17 CHAPTER 3. Toolbars and Tools 33 CHAPTER 4. Timelines and Screens 61 CHAPTER 5. FLASH WORKSPACE CHAPTER 1 Interface Overview 3 CHAPTER 2 Menus 17 CHAPTER 3 Toolbars and Tools 33 CHAPTER 4 Timelines and Screens 61 CHAPTER 5 Panels 69 CHAPTER 6 Preferences and Printing 93 COPYRIGHTED

More information

Quick Start. (For SlideShowPro for Flash 1.8+ and SlideShowPro Director 1.1+)

Quick Start. (For SlideShowPro for Flash 1.8+ and SlideShowPro Director 1.1+) (For SlideShowPro for Flash 1.8+ and SlideShowPro Director 1.1+) Contents Introduction...3 Your first slideshow with SlideShowPro for Flash...4 Your first slideshow with SlideShowPro for Flash and SlideShowPro

More information

PowerPoint Essentials 1

PowerPoint Essentials 1 PowerPoint Essentials 1 LESSON SKILL MATRIX Skill Exam Objective Objective Number Working with an Existing Presentation Change views of a presentation. Insert text on a slide. 1.5.2 2.1.1 SOFTWARE ORIENTATION

More information

PowerPoint Essentials

PowerPoint Essentials Lesson 1 Page 1 PowerPoint Essentials Lesson Skill Matrix Skill Exam Objective Objective Working with an Existing Change views of a Insert text on a slide. 1.5.2 2.1.1 Software Orientation Normal View

More information

Lenovo TAB A User Guide V1.0. Please read the safety precautions and important notes in the supplied manual before use.

Lenovo TAB A User Guide V1.0. Please read the safety precautions and important notes in the supplied manual before use. Lenovo TAB A10-70 User Guide V1.0 Please read the safety precautions and important notes in the supplied manual before use. Chapter 01 Lenovo TAB A10-70 Overview 1-1 Appearance 1-2 Buttons 1-3 Turning

More information

This document describes the installation procedure for Embed-SE (Simulation Edition)

This document describes the installation procedure for Embed-SE (Simulation Edition) Installation Guide This document describes the installation procedure for Embed-SE (Simulation Edition) 2016.3. Main Installer Before you begin the installation, please read step 7. If you will be using

More information

Pearson Inform 5.1. User Guide. Basic Navigation. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Basic Navigation. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Basic Navigation Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced or transmitted

More information

How to View a Video CHAPTER

How to View a Video CHAPTER CHAPTER 4 This chapter discusses how to view a video and to use the player controls in the Video Portal. Related video content is also discussed. Follow any of the three methods below to start viewing

More information

Sony Ericsson W850i Quick Start Guide

Sony Ericsson W850i Quick Start Guide Sony Ericsson W850i Quick Start Guide In just a few minutes we ll show you how easy it is to use the main features of your phone. This is a Vodafone live! with 3G phone, so you can take advantage of the

More information

PowerPoint 2 (Office 2007)

PowerPoint 2 (Office 2007) Reference Services Division Presents PowerPoint 2 (Office 2007) In this class, we will continue to work with PowerPoint and explore more advanced features through a class exercise. This handout covers

More information

PresenterPLUS Quick Start

PresenterPLUS Quick Start PresenterPLUS Quick Start 1.1 Overview The following is a Quick Start for Accordent s PresenterPLUS presentation authoring software. This document will guide you through installation of PresenterPLUS and

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

IdeaTab A1000L-F. User Guide V1.0. Please read the Important safety and handling information in the supplied manuals before use.

IdeaTab A1000L-F. User Guide V1.0. Please read the Important safety and handling information in the supplied manuals before use. IdeaTab A1000L - UserGuide IdeaTab A1000L-F User Guide V1.0 Please read the Important safety and handling information in the supplied manuals before use. file:///c /Users/xieqy1/Desktop/EN UG/index.html[2013/8/14

More information

Manage and Edit Sessions

Manage and Edit Sessions Manage and Edit Sessions With TurningPoint, you can stop and save a session, and pick up where you left off at a later time. You can also use a TurningPoint setting to create back-up files of your session.

More information

QUICK START GUIDE. LGmobilephones.com/Tritan

QUICK START GUIDE. LGmobilephones.com/Tritan QUICK START GUIDE Touch UI (Touch Screen) Customizing the Home Screens Transferring Music Connecting Bluetooth Wireless Technology Document Viewer Browsing the Web Accelerometer Taking a Picture Recording

More information

Acrobat XI Pro Accessible Forms and Interactive Documents

Acrobat XI Pro Accessible Forms and Interactive Documents Contents 2 Types of interactive PDF Form Fields 2 Automatic Field Detection using the Acrobat Form Wizard 5 Creating a Form without the Forms Wizard 6 Forms Editing Mode 6 Selecting a New Form Field to

More information

Using Safari on the imac

Using Safari on the imac Using Safari on the imac Like most applications, you look to the Dock (near the bottom of the display) to start Safari: The Safari icon looks like a compass. Click it once to start Safari. As with all

More information

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6 SCHULICH MEDICINE & DENTISTRY Website Updates August 30, 2012 Administrative Web Editor Guide v6 Table of Contents Chapter 1 Web Anatomy... 1 1.1 What You Need To Know First... 1 1.2 Anatomy of a Home

More information

User Manual of VeryDOC Advanced PDF Tools User Handbook

User Manual of VeryDOC Advanced PDF Tools User Handbook User Manual of VeryDOC Advanced PDF Tools User Handbook VeryDOC 2/2/2013 Contents User Manual of VeryDOC Advanced PDF Tools... 0 Introduction... 2 Operating System... 2 How to add PDF files... 2 How to

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

SI Training for Online Sessions

SI Training for Online Sessions SI Training for Online Sessions WebEx Follow the instructions below to schedule, conduct, and record online SI sessions. Logging In 1. Open a web browser and go to https://tamucc.webex.com, click Log In

More information

Customized Net Conference with Cisco WebEx Training Center

Customized Net Conference with Cisco WebEx Training Center Customized Net Conference with Cisco WebEx Training Center This Quick Start User Guide for Customized Net Conference with Cisco WebEx Training Center details how to access the Cisco WebEx Training Center

More information

This guide is designed to give new users a brief overview of Learn360. It will review how to Figure 1. Figure 9 Figure 8

This guide is designed to give new users a brief overview of Learn360. It will review how to Figure 1. Figure 9 Figure 8 Quick Start Guide This guide is designed to give new users a brief overview of Learn360. It will review how to begin using the many tools, features and functionality Learn360 has to offer. Login Figures

More information

myngconnect.com Teacher User Manual

myngconnect.com Teacher User Manual myngconnect.com Teacher User Manual Table of Contents Teacher & Student eeditions... 2 Resources... 6 Accessing Resources... 6 Digital Library... 6 Teacher Resource Directory... 7 Assessment Resource Directory...

More information

Quick Start Guide. Sony Ericsson K800i

Quick Start Guide. Sony Ericsson K800i Quick Start Guide Sony Ericsson K800i Contents 1. Getting started 3 2. Using the handset 5 3. Voice calls, UMTS and video calls 7 4. Using the camera 10 5. Picture and video messaging (MMS) 13 6. Vodafone

More information

CUSTOMIZING GUIDES USING ADOBE FLASH BUILDER. Note, this document will be updated for version 10.0 soon.

CUSTOMIZING GUIDES USING ADOBE FLASH BUILDER. Note, this document will be updated for version 10.0 soon. CUSTOMIZING GUIDES USING ADOBE FLASH BUILDER Note, this document will be updated for version 10.0 soon. Copyright 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Customizing Guides

More information

Microsoft Office Outlook 2007: Basic Course 01 - Getting Started

Microsoft Office Outlook 2007: Basic Course 01 - Getting Started Microsoft Office Outlook 2007: Basic Course 01 - Getting Started Slide 1 Getting Started Course objectives Identify the components of the Outlook environment and use Outlook panes and folders Use Outlook

More information

Recording Narration in PowerPoint using ispring Free

Recording Narration in PowerPoint using ispring Free Recording Narration in PowerPoint using ispring Free Narrated PowerPoint shows saved as-is tend to be very large files. This makes them cumbersome and difficult to upload and share with your students or

More information

FastTracker. Version 1.0 QuickStart Guide

FastTracker. Version 1.0 QuickStart Guide FastTracker Version 1.0 QuickStart Guide 1 Overview The Facilis FastTracker is a server and client application for cataloging, searching and viewing any media type within the Facilis TerraBlock Shared

More information

Google Video store (beta)

Google Video store (beta) Google Video store (beta) Google Video enables you to find the videos you are looking for all formats, lengths and subjects and now the first open video marketplace, the Google Video store, offers even

More information

Content. The topics in this section provide information about Content. To access the Content options, click Content in the Navigation bar.

Content. The topics in this section provide information about Content. To access the Content options, click Content in the Navigation bar. Content The topics in this section provide information about Content. To access the Content options, click Content in the Navigation bar. To manage courses, click the Courses tab. 2017 Intradiem Page 380

More information

Entropy Software General Administration & Configuration

Entropy Software General Administration & Configuration Entropy Software General Administration & Configuration V1.02 1 of 34 Contents 1. Customising your Entropy system... 4 1.1 Entering or editing your Organisation s name into Entropy... 4 1.2 Adding a Watermark...

More information

To install the Texas Instruments CCS Compiler, follow these steps: 1. Go to the TI Wiki page (http://processors.wiki.ti.com/index.

To install the Texas Instruments CCS Compiler, follow these steps: 1. Go to the TI Wiki page (http://processors.wiki.ti.com/index. Installation Guide This document describes the installation procedure for Embed 2017. Main Installer Before you begin the installation, you must install the following on your computer: Texas Instruments

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Creating a Recording Using Panopto

Creating a Recording Using Panopto Creating a Recording Using Panopto Table of Contents Accessing Panopto... 2 Panopto Recording Screen... 3 Recording a PowerPoint Presentation... 3 Recording Your Desktop... 4 Manage Recordings... 5 Viewing/Managing

More information

SG Project OnePage User Guide

SG Project OnePage User Guide SG Project OnePage User Guide Simple Genius Software November 2012 Document Version 4.0.1 Table of Contents Overview...3 Introduction...3 Data Management...3 Key Concepts...3 12-by-12 Project Management...

More information

Lesson 9. XII COMPUTER SCIENCE D. AGILAN. M.Sc., M.Ed., M.Phil., Page 1

Lesson 9.   XII COMPUTER SCIENCE D. AGILAN. M.Sc., M.Ed., M.Phil., Page 1 Lesson 9 STAR OFFICE PRESENTATION 1. Which key is used to create a new presentation using a template? a. Shift+ Alt+ N b. Shift+ Ctrl+ N c. Ctrl+ Alt+ N d. shift+ Tab 2. Which of the following view allows

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

Nero Recode Manual. Nero AG

Nero Recode Manual. Nero AG Nero Recode Manual Nero AG Copyright and Trademark Information The Nero Recode manual and all its contents are protected by copyright and are the property of Nero AG. All rights reserved. This manual contains

More information

Overview NOTE: Listing Overview. User Profile. Language Selection. Asset(s) View. Asset(s) Details. Editing Mode

Overview NOTE: Listing Overview. User Profile. Language Selection. Asset(s) View. Asset(s) Details. Editing Mode Overview Listing Overview User Profile Language Selection Asset(s) View Asset(s) Details Editing Mode NOTE: Some functions may not be available to all users depending on permissions granted. Some of the

More information

Work with the Premium Video App. Schoolwires Centricity2

Work with the Premium Video App. Schoolwires Centricity2 Work with the Schoolwires Centricity2 Trademark Notice Schoolwires, the Schoolwires logos, and the unique trade dress of Schoolwires are the trademarks, service marks, trade dress and logos of Schoolwires,

More information

Asset Management. for OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

Asset Management. for OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 Asset Management for v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com

More information

VI ViewerPlus Copyright 2018 Panasonic System Solutions Company of North America Version Last updated:

VI ViewerPlus Copyright 2018 Panasonic System Solutions Company of North America Version Last updated: VI ViewerPlus Copyright 2018 Version 7.3.0 Last updated: 11.15.2018 Panasonic VI ViewerPlus TABLE OF CONTENTS TABLE OF CONTENTS... 0 OVERVIEW... 1 USER INTERFACE... 1 WORKSPACE... 2 LAYOUTS... 2 Setting

More information

User Guide

User Guide User Guide 03.10.2016 Contents 1 Introduction...3 1.1 IT Requirements...3 1.2 Installing efireservice Video...4 1.3 Login to efireservice Video...4 2 Video Library...5 2.1 Additional Video Details...5

More information

My Mediasite Guide (V7.2) Create and Share Videos from Your Desktop

My Mediasite Guide (V7.2) Create and Share Videos from Your Desktop My Mediasite Guide (V7.2) Create and Share Videos from Your Desktop Introduction: Your My Mediasite Portal provides instructors access to the Mediasite desktop Recorder (MDR) for creation of presentations

More information

Work with the Premium Video App

Work with the Premium Video App Work with the Premium Video App Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc.

More information

Unit 1: Overview of the LINCC Cataloging Module

Unit 1: Overview of the LINCC Cataloging Module LINCC Cataloging Unit 1 Unit 1: Overview of the LINCC Cataloging Module The LINCC Cataloging module consists of three components or modes : Cataloging, Items, and Search. These modes can be accessed by

More information

Sony Ericsson W880i Quick Start Guide

Sony Ericsson W880i Quick Start Guide Sony Ericsson W880i Quick Start Guide In just a few minutes we ll show you how easy it is to use the main features of your phone. This is a Vodafone live! with 3G phone, so you can take advantage of the

More information

Articulate Presenter Pro

Articulate Presenter Pro Articulate Presenter Pro Summary Articulate Presenter converts PowerPoint to Flash. It allows the user to integrate narration and interactivity into any PowerPoint presentation. It uses templates to embed

More information

Filtering - Zimbra

Filtering  - Zimbra Filtering Email - Zimbra Email filtering allows you to definite rules to manage incoming email. For instance, you may apply a filter on incoming email to route particular emails into folders or delete

More information

Headlines & Features App Guide

Headlines & Features App Guide Headlines & Features App Guide Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress

More information

my news on the go Tutorial

my news on the go Tutorial my news on the go Multi-Media Media Electronic Edition Tutorial What is my news on the go? My News On the Go is an electronic replica of the newspaper accessed through the internet with a secure login

More information

CONTENT PLAYER 9.6_CA_BBP_EN_1.0

CONTENT PLAYER 9.6_CA_BBP_EN_1.0 CONTENT PLAYER 9.6_CA_BBP_EN_1.0 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names

More information

Cumulus 11.0 Release Notes

Cumulus 11.0 Release Notes The Cumulus version 11.0 is a major release with new features and bug fixes that improves all Cumulus products, including Workgroup, Enterprise,, and. With this release, Canto s Cumulus is now more efficient

More information

Cumulus InDesign Client

Cumulus InDesign Client When working with Adobe InDesign you can access assets cataloged in Cumulus via native InDesign panels provided by the Cumulus InDesign Client. Which assets are available to you depends based on your permissions

More information

OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5

OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5 OPTOTERMINAL QLARITY FOUNDRY USER'S MANUAL REVISION 2.5 Opto 22 43044 Business Park Drive Temecula, CA 92590-3614 USA Phone 800.321.OPTO (6786) or 951.695.3000 Fax 800.832OPTO (6786) or 951.695.2712 Email:

More information

THIS PAGE INTENTIONALLY LEFT BLANK

THIS PAGE INTENTIONALLY LEFT BLANK release 6.2.3 THIS PAGE INTENTIONALLY LEFT BLANK Contents Contents Contents... i Introduction... iii 1. Initial Startup...1 Log In... 1 2. Basic TV Controls...2 Change the Channel... 2 View Current Channel

More information

Display Screen User Guide. Last Updated: October 28, 2016

Display Screen User Guide. Last Updated: October 28, 2016 Display Screen User Guide Last Updated: October 28, 2016 Table of Contents Before you Begin... 2 Create content in Microsoft PowerPoint... 2 Convert your content in Microsoft PowerPoint to images... 3

More information

Flash MP3 Player DMXzone.com Flash MP3 Player Manual

Flash MP3 Player DMXzone.com Flash MP3 Player Manual Flash MP3 Player Manual Page 1 of 16 Index Flash MP3 Player Manual... 1 Index... 2 About Flash MP3 Player... 3 Features in Detail... 3 Before you begin... 7 Installing the extension... 7 Creating a MP3

More information

InterPSS OpenCIM User s Guide Software Release 1.2.1

InterPSS OpenCIM User s Guide Software Release 1.2.1 InterPSS OpenCIM User s Guide Software Release 1.2.1 March, 2010 i Important Information USE OF INTERPSS SOFTWARE AND THIS DOCUMENT IS SUBJECT TO THE TERMS AND CONDITIONS OF A LICENSE AGREEMENT FOUND IN

More information

Download & Installation Instructions

Download & Installation Instructions Chief Architect X9 Download & Installation Instructions Chief Architect, Inc. 6500 N. Mineral Dr. Coeur d Alene, Idaho 83815 chiefarchitect.com Chief Architect X9 Contents Chapter 1: Installation What

More information

Set-Top Box Guide. Got Questions? Get Answers Online: Or Call Us At:

Set-Top Box Guide. Got Questions? Get Answers Online:  Or Call Us At: Set-Top Box Guide Got Questions? Get Answers Online: www.execulink.ca/support Or Call Us At: 1.877.393.2854 v4 STB GUIDE Table of Contents Menubar Guide Reminder & Auto- Tune Reminders Infobar Cloud DVR

More information

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at

FIREFOX MENU REFERENCE This menu reference is available in a prettier format at FIREFOX MENU REFERENCE This menu reference is available in a prettier format at http://support.mozilla.com/en-us/kb/menu+reference FILE New Window New Tab Open Location Open File Close (Window) Close Tab

More information

-Remember to always hit Command + S every time you make a change to your project going forward.

-Remember to always hit Command + S every time you make a change to your project going forward. -Open Animate -Under Create New - Select ActionScript 3.0 -Choose Classic as the Design type located in the upper right corner -Animate workspace shows a toolbar, timeline, stage, and window tabs -From

More information

Widgets. Widgets Widget Toolkits. User Interface Widget

Widgets. Widgets Widget Toolkits. User Interface Widget Widgets Widgets Widget Toolkits 2.3 Widgets 1 User Interface Widget Widget is a generic name for parts of an interface that have their own behavior: buttons, drop-down menus, spinners, file dialog boxes,

More information

Microsoft PowerPoint Presentation Element

Microsoft PowerPoint Presentation Element Microsoft PowerPoint Presentation Element CommonSpot s PowerPoint element provides for the rendering of a Microsoft PowerPoint presentation just like any other element within the context of a Web page.

More information

YuJa Enterprise Video Module Training 1. Getting Oriented

YuJa Enterprise Video Module Training 1. Getting Oriented YuJa Enterprise Video Module Training 1 Getting Oriented Module 1 Getting Oriented Goal Time Establish a foundational understanding of each of the main suites in the YuJa Enterprise Video Platform. 1 hour

More information

Print Station. Point-and-Click Printing WHITE PAPER

Print Station. Point-and-Click Printing WHITE PAPER Print Station Point-and-Click Printing WHITE PAPER Contents Overview 3 Printing with Print Station 4 Easy-to-use Browser Interface 4 Familiar Folder Navigation 5 Search Functionality 6 Informative Display

More information

Impress Guide Chapter 10 Printing, ing, exporting, and saving slide shows

Impress Guide Chapter 10 Printing,  ing, exporting, and saving slide shows Impress Guide Chapter 10 Printing, e-mailing, exporting, and saving slide shows This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an

More information

Customized Net Conference with Cisco WebEx Training Center

Customized Net Conference with Cisco WebEx Training Center Customized Net Conference with Cisco WebEx Training Center This Quick Start Guide for Customized Net Conference with Cisco WebEx Training Center details how to access the Cisco WebEx Training Center service

More information

BSI User Guide Searching. support.ebsco.com

BSI User Guide Searching. support.ebsco.com BSI User Guide Searching Basic, Advanced & Visual Searching, Result List, Article Details, Company Information, Additional Features Last Updated 5/3/12 Table of Contents What is the Business Searching

More information

Impatica OnCue User s Manual. Version 3.3.3

Impatica OnCue User s Manual. Version 3.3.3 Impatica OnCue User s Manual Version 3.3.3 Copyright 2005 Impatica Inc. All rights reserved. Impatica OnCue User s Manual The contents of this manual and associated Impatica OnCue software are the property

More information

iwireless Freedom V35 Android 4.4, KitKat

iwireless Freedom V35 Android 4.4, KitKat iwireless Freedom V35 Android 4.4, KitKat CONTENTS 1. Introduction to basic commands... 3 2. Phone App Features... 6 3. Paste/copy... 7 4. Email Settings... 7 5. Desktop Features... 9 6. BT/Wi-fi Features...

More information

IBM Lotus Notes 8.5 Version to Version Comparison IBM Corporation

IBM Lotus Notes 8.5 Version to Version Comparison IBM Corporation IBM Lotus Notes 8.5 Version to Version Comparison Overview This presentation highlights the evolutionary value provided across selected releases of IBM Lotus Notes software by outlining selected enhancements

More information

Blackboard Portfolio System Owner and Designer Reference

Blackboard Portfolio System Owner and Designer Reference Blackboard Learning System Blackboard Portfolio System Owner and Designer Reference Application Pack 2 for Blackboard Learning System CE Enterprise License (Release 6) Application Pack 2 for Blackboard

More information

Creating an Image Gallery Asset in OU Campus 4/23/15

Creating an Image Gallery Asset in OU Campus 4/23/15 Creating an Image Gallery Asset in OU Campus 4/23/15 IMPORTANT: To create a new image gallery, you must first crop all of your images to the same dimensions and save them to a folder on your computer.

More information

Salesforce.com Summer '10 Release Notes

Salesforce.com Summer '10 Release Notes Salesforce.com: Summer '10 Salesforce.com Summer '10 Release Notes Last updated: July 20, 2010 Copyright 2000-2010 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of

More information

Scholastic Interactive Teaching System User s Guide

Scholastic Interactive Teaching System User s Guide Scholastic Interactive Teaching System User s Guide For use with READ 180 Next Generation version 2.1 or later, READ 180 Enterprise Edition version 2.1 or later, System 44 version 2.1 or later, Expert

More information

TAI Indicator Database User Instructions for Version 1.0

TAI Indicator Database User Instructions for Version 1.0 TAI Indicator Database User Instructions for Version 1.0 Table of Contents QUICK HELP... 4 How do I get started?...4 Where can I find research guidelines and background information for this assessment?...5

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

Creating Content in a Course Area

Creating Content in a Course Area Creating Content in a Course Area After creating a course area, such as a Content Area, Learning Module, Lesson Plan, or folder, you create content in it by pointing to its Action Bar to reveal menus for

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Exam : 9A Title : Certified Macromedia Flash MX 2004 Designer Exam. Version : DEMO

Exam : 9A Title : Certified Macromedia Flash MX 2004 Designer Exam. Version : DEMO Exam : 9A0-502 Title : Certified Macromedia Flash MX 2004 Designer Exam Version : DEMO 1. What technique will NOT add curvature to an existing straight-line segment? A. Free Transform tool with Distort

More information

Quark XML Author October 2017 Update for Platform with Business Documents

Quark XML Author October 2017 Update for Platform with Business Documents Quark XML Author 05 - October 07 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository...3 Creating a new document from

More information

Little Math User Manual

Little Math User Manual Little Math User Manual Learn how to Maximize your Little Math System Get to know more about the important features and screens Our help manuals feature step-by-step guides on how to navigate all the new

More information

NTP Software File Reporter Analysis Server

NTP Software File Reporter Analysis Server NTP Software File Reporter Analysis Server Installation Guide Version 8.2 This guide provides quick instructions for installing NTP Software File Reporter Analysis Server from an administrator s perspective.

More information

Pearson Inform 5.1. User Guide. Adding, Editing and Deleting Folders. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Adding, Editing and Deleting Folders. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Adding, Editing and Deleting Folders Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced

More information

Reporting and Printing Guide

Reporting and Printing Guide Enterprise Studio Reporting and Printing Guide 2017-03-17 Applies to: Enterprise Studio 2.3 and Team Server 2.3 Table of contents 1 About reporting and printing models 4 2 Reporting models to HTML and

More information

Microsoft Powerpoint 2007

Microsoft Powerpoint 2007 Microsoft Powerpoint 2007 Getting started Select the Start button towards the bottom left of the screen. Select each of the following: Programs; Microsoft Office > Microsoft Powerpoint 2007. Within a few

More information

NMS Spectrum Analyzer Application

NMS Spectrum Analyzer Application NMS Spectrum Analyzer Application Spectrum View Window... 3 Context Sensitive Menus for Spectrum View Window... 3 Add Horizontal Line... 4 Add Vertical Line... 4 Show Lines... 4 Hide Lines... 4 Delete

More information

EasyMAM V USER MANUAL. Ver.1.0 MAY Easy MAM

EasyMAM V USER MANUAL. Ver.1.0 MAY Easy MAM USER MANUAL Ver.1.0 MAY 2016 Easy MAM 1 USER MANUAL EasyMAM V.1.0 Mayıs 2016 İçindekiler 1.SETTINGS MENU... 4 1.1 SETTINGS WINDOW... 4 1.1.1 Database Settings... 4 1.1.2 Filter Settings... 5 2.HELP MENU...

More information

Batch Monitor User Manual

Batch Monitor User Manual Batch Monitor User Manual You can use the Batch Monitor to view or adjust the status of batches and jobs processed by Compressor or Apple Qmaster. You can also use the Batch Monitor to view detailed history

More information

Enabling Turnitin Turnitin Additional Options Creating Rubrics Viewing and Assessing Assignments Feedback Studio FAQs

Enabling Turnitin Turnitin Additional Options Creating Rubrics Viewing and Assessing Assignments Feedback Studio FAQs 1 Turnitin TurnItIn/Grademark is the contracted third-party tool integrated with D2L that checks for plagiarism (originality checking) and enables faculty to grade and provide feedback online. Turnitin

More information

Video Everywhere. What is it? Why Would I use it? How do I use it?

Video Everywhere. What is it? Why Would I use it? How do I use it? Video Everywhere use Video Everywhere allows you to record videos from your webcam and post them to any area of the course that uses the text editor. This includes: Discussion Boards Items within your

More information