U s i n g F l a s h & S o u n d S l i d e s i n M u l t i m e d i a S t o r y t e l l i n g

Size: px
Start display at page:

Download "U s i n g F l a s h & S o u n d S l i d e s i n M u l t i m e d i a S t o r y t e l l i n g"

Transcription

1 Beyond Basic Soundslides for Photographers U s i n g F l a s h & S o u n d S l i d e s i n M u l t i m e d i a S t o r y t e l l i n g by Will Yurman Staff Photographer Rochester Democrat & Chronicle Don't tell me the moon is shining; show me the glint of light on broken glass. ~Anton Chekhov update march 2009

2 1. SoundSlides is a simple-to-use, fast method for creating audio slideshows for the web. 2. The program is available at for $39.95 or $69.95 depending on version, for Mac(PPC & Intel) and Windows. The applications Soundslides and Flash(MX2004 or later) are required for this tutorial. THIS TUTORIAL ASSUMES BASIC KNOWLEDGE OF BOTH SOUNDSLIDES AND FLASH. AN UNDERSTANDING OF THE FLASH INTERFACE IS ESSENTIAL. BASIC SKILLS SUCH AS CREATING BUTTONS AND SIMPLE ACTIONSCRIPTING ARE ALSO REQUIRED. Soundslides is the perfect program at the right moment. Just as publications were deciding to invest in multimedia storytelling, Soundslides came along and made the process simple. Soundslide s creator Joe Weiss calls it Ridiculously simple storytelling, and he s right. All of a sudden, audio slideshows built with the software are everywhere. Anyone with a few images and an audio track can create their very own show. BUT, the cost of simplicity is lack of control. The program itself offers a few, limited choices for appearance, Real control over the look, design, and functionality of a show is beyond the capability of the program. The joy and surprise readers have when they open their newspaper to a beautifully designed page is lost in the multimedia experience when every story is presented in the same way. Good design enhances the storytelling. SO, what do we do? Before Soundslides there was Flash. And Flash was good. And Flash was really hard to learn. We can still build shows from the ground up with Flash - but the learning curve is steep, and using the program can be time consuming. Luckily, the Soundslides component allows a way to integrate a Soundslides show with Flash, allowing much more control, with a little effort. Components in Flash Components in Flash are pre-built content with parameters that allow you to modify their appearance and behavior. In this case, Flash can control a Soundslides show through the Soundslides Component, allowing you to create a Flash shell with additional content, navigation and design. 2

3 Working with the Flash Component. 1. You must have the Soundslides application AND (free) component. Download both from 2. You must also have the Flash application, version MX2004 or later. Download from After installing both applications, install the Soundslides.mxp component into your Flash application using the Macromedia Extension Manager. Opening the.mxp file should install it automatically. Once the Component is installed you re ready to go. Building a Flash/Soundslides show Step 1 - Create your Soundslides show. A. Build your show in Soundslides exactly as you have in the past. B. Any parameters can be set within Soundslides, but can be overwritten, if you choose, from within Flash. C. Export the show. D. Rename your publish_to_web folder. The NAME of this folder is important. You will use the name to link to Flash. Step 2 - Build your Flash Shell Open the Flash application. Create a new Flash document. Your screen will look something like this(your version of Flash may look different): 3

4 You may also have different windows, called Panels, open with other Flash tools. The main panel above contains the Stage - content is placed on the stage. The timeline above the stage shows the layers and frames of the show. A new show has one layer, and no content. You can create and place any content you like within the Flash show photos, buttons, text, graphics. These can be used as introductions to your Soundslides show or as supplements to the audio slideshow. In essence, we let Soundslides do the heavy lifting of creating the slide show, and then use Flash to provide a custom appearance. Flash is used for the added value of more content and design. Placing the Component 1. Open the Component Panel -- Windows>Components 4

5 Components Panel(yours may look slightly different) 5

6 Select the component, from inside the Soundslides folder, and drag it to the stage onto the proper frame. Create separate layers for your content in Flash. Place the component on its own layer. Once the component has been placed on the stage, make sure it has the Instance Name soundslides. The Instance Name allows you to control that instance of the component. Click once on the component and enter the name soundslides in the instance name box in the properties box panel. To set parameters for the component, open the Component Inspector from the Window drop down menu. -- Windows> Component Inspector 6

7 The Component Inspector gives you control over the appearance of the Soundslides show. Most of the parameters are self explanatory. The first one is very important: project folder - enter the name you have given your publish_to_web folder. It must be entered exactly, and is case sensitive. This is what links your Soundslide show to the Flash shell. For other parameters, click on the box to the right to select an option or enter a value. If the option inherit is selected, Flash will use the settings you established when you built the SoundSlides show. Otherwise, Flash will override those settings. Controlling the Component Once in place, you can create actions and content that interact with the Soundslides show. Actionscript in Flash can control the show, and the show can trigger events back to Flash. Use Flash content for an introduction, then use a button to trigger the Soundslides show. Create your own customized navigation. Have multiple Soundslide shows, controlled from a master page or navigation buttons. Here is the list of actionscripts available for controlling Soundslides: (From the Soundslides wiki) Soundslides uses Actionscript 2 (not the newer Actionscript 3) If the component has an instance name of soundslides you can use the following functions: soundslides.ss_play(); //plays from the beginning soundslides.ss_stop(); //goes to the beginning and stops soundslides.ss_pause(); //toggles between pause and resume soundslides.ss_caption(); //toggles between show and hide caption //ss_caption was added with v140 of the component soundslides.ss_credit(); //toggles between show and hide credits //ss_credit was added with v140 of the component soundslides.ss_setvolume(0); 7

8 //volume can be set from (quiet - loud) trace(soundslides.ss_getvolume()); //returns volume as a number (quiet - loud) soundslides.ss_gotoandplayimage(imgnumber); //plays from a specific image soundslides.ss_gotoandstopimage(imgnumber); //advances the timeline to a specific image soundslides.ss_gotoandplaysec(second); //plays from from an audio position soundslides.ss_gotoandstopsec(second); //advances the timeline and stops soundslides.ss_gotoandplaypercent(percentage); //plays from a percentage of the timeline soundslides.ss_gotoandstoppercent(percentage); //advances the timeline and stops soundslides.ss_nextimage(); //advances and stops on the next image soundslides.ss_previmage(); //rewinds and stops on the previous image soundslides.ss_loadnew("project"); //loads a new project into the component... may be relative "relative/project"//or full url "/full/path/to/project" Note: The above functions cannot be used until after the component has loaded the soundslide project. To define the initial project BEFORE the component initializes, use this variable: soundslides.project = "project"; //may be relative "relative/project" //or full url "/full/path/to/project" Listener object. 8

9 The Soundslides component uses a listener object to communicate data from the component to the rest of your actionscript. The listener object must be defined in the component parameter listener object. Here s an example of the actionscript for onaudioend and onsoundslidedata. ss_listen = new Object(); //create an object for listening ss_listen.onsoundslidedata = function(project){ trace(project["headline"]); trace(project["credits"]); trace(project["totalimages"]); trace(project["totaltime"]); ss_listen.onaudioend = function(){ trace("audio end"); You can also use dot syntax on the array returns like this: ss_listen.onsoundslidedata = function(project){ trace(project.headline); trace(project.credits); Listener object functions All code assumes the component listener is named ss_listen You must create an object BEFORE assigning functions to it. ss_listen = new Object(); onstartup Triggered on initial start. Returns nothing. ss_listen.onstartup = function(){ trace("soundslide initializing"); oncontrolbutton Triggered when any button is pressed. Returns string. ss_listen.oncontrolbutton = function(control){ 9

10 trace("user pressed " + control); onfirstimageloaded Triggered when the first image is loaded and appears. ss_listen.onfirstimageloaded = function(){ trace("the first image is loaded and visible"); onsoundslidepreloaded Triggered when the Soundslides preloads, and the play button is activated. ss_listen.onsoundslidepreloaded = function(){ trace("images and audio are preloaded, play is enabled"); onaudioend Triggered when the audio track ends. ss_listen.onaudioend = function(){ trace("the audio has ended"); onsoundslidedata Triggered when the initial file data is loaded. Returns array: ss_listen.onsoundslidedata = function(project){ trace(project.headline); trace(project.credits); trace(project.totalimages); trace(project.totaltime); onimagechanged Triggered when the image changes. Returns array: ss_listen.onimagechanged = function(image){ trace(image.caption); trace(image.number); ontimer Triggered every frame. Returns array: ss_listen.ontimer = function(info){ trace(info.remaining); //0:30 10

11 trace(info.elapsed); //0:30 trace(info.remaining_nonformat); //30 trace(info.elapsed_nonformat); //30 trace(info.elapsed_percent); //50 formatted strings return as 0:00, nonformat return as int(seconds), percent returns as (2 decimal points) IF you are NOT familiar with Flash and actionscript this will look like Greek to you. In essence, you are using the actionscript language to either send messages to Soundslides or back from the slideshow. Example 1. You might have an introduction with photos or type or even a separate soundtrack, on Frame 1. On Frame 2, you ve placed the Soundslides component. You need to get from Frame 1 to Frame 2. Create a button with a script that says: on (release) { gotoandstop(2); This simple script says, Click and release the button and the show will go to frame 2 and stop. Once there, the Soundslides show will load automatically. Example 2 You want a credit page to show up, when the show ends. You would create a frame with the credit information, in this case on frame 3. Place the following code on the same frame as the component. The script says, when the audio ends, send the show to frame 3. Example 3 ss_listen = new Object(); 11

12 ss_listen.onaudioend = function() { ; _root.gotoandstop(3); You want to give viewers more control over the show. You could create buttons for advancing to the next, or previous image. Simply create a button and add the actionscript. on (release) { soundslides.ss_nextimage(); A second button could have: on (release) { soundslides.ss_previmage(); Now you have an easy way for people to click through your show and admire your photography. With Soundslides and some relatively basic Flash skills, you can tell stories in ways that aren t possible with Soundlsides alone. The possibilities are endless and now can be driven by the content of your story. The goal is to NOT let the ease of use of Soundslides limit your ability to tell stories. Your (renamed) publish_to_web folder and the.swf file from Flash must be kept together when you post them on your website. If you need more information on using Flash, there are many good reference books and websites. 12

GarageBand Tutorial

GarageBand Tutorial GarageBand Tutorial OVERVIEW Apple s GarageBand is a multi-track audio recording program that allows you to create and record your own music. GarageBand s user interface is intuitive and easy to use, making

More information

Physics 105. Spring Handbook of Instructions. M.J. Madsen Wabash College, Crawfordsville, Indiana

Physics 105. Spring Handbook of Instructions. M.J. Madsen Wabash College, Crawfordsville, Indiana Physics 105 Handbook of Instructions Spring 2010 M.J. Madsen Wabash College, Crawfordsville, Indiana 1 During the Middle Ages there were all kinds of crazy ideas, such as that a piece of rhinoceros horn

More information

OVERVIEW. 1. Getting Started Pg Creating a New GarageBand Song Pg Apple Loops Pg Editing Audio Pg. 7

OVERVIEW. 1. Getting Started Pg Creating a New GarageBand Song Pg Apple Loops Pg Editing Audio Pg. 7 GarageBand Tutorial OVERVIEW Apple s GarageBand is a multi-track audio recording program that allows you to create and record your own music. GarageBand s user interface is intuitive and easy to use, making

More information

Word Tutorial 2: Editing and Formatting a Document

Word Tutorial 2: Editing and Formatting a Document Word Tutorial 2: Editing and Formatting a Document Microsoft Office 2010 Objectives Create bulleted and numbered lists Move text within a document Find and replace text Check spelling and grammar Format

More information

INTRODUCTION TO ENDNOTE

INTRODUCTION TO ENDNOTE INTRODUCTION TO ENDNOTE What is it? EndNote is a bibliographic management tool that allows you to gather, organize, cite, and share research sources. This guide describes the desktop program; a web version

More information

Customization of Net Colors

Customization of Net Colors Customization of Net Colors Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related Video PCB Highlighting The Summer 09 release brings even greater control over the highlighting

More information

What's new in EndNote Version 6?

What's new in EndNote Version 6? LIBRARY COURSES 2003 ENDNOTE March 2003 What's new in EndNote Version 6? Table of Contents Upgrading to Version 6... 2 New Menu Organization... 2 Working with Images, Graphics and Figures... 4 Inserting

More information

R H Y T H M G E N E R A T O R. User Guide. Version 1.3.0

R H Y T H M G E N E R A T O R. User Guide. Version 1.3.0 R H Y T H M G E N E R A T O R User Guide Version 1.3.0 Contents Introduction... 3 Getting Started... 4 Loading a Combinator Patch... 4 The Front Panel... 5 The Display... 5 Pattern... 6 Sync... 7 Gates...

More information

How to create a video of your presentation mind map

How to create a video of your presentation mind map How to create a video of your presentation mind map Creating a narrated video of your mind map and placing it on YouTube or on your corporate website is an excellent way to draw attention to your ideas,

More information

VIBRIO. User Manual. by Toast Mobile

VIBRIO. User Manual. by Toast Mobile VIBRIO User Manual by Toast Mobile 1 Welcome Why Vibrio? Vibrio is a lighting control software for the ipad. One intuitive solution to handle lighting for your venue or show. It connects to the lights

More information

USER GUIDE V 1.6 ROLLERCHIMP DrumStudio User Guide page 1

USER GUIDE V 1.6 ROLLERCHIMP DrumStudio User Guide page 1 USER GUIDE V 1.6 ROLLERCHIMP 2014 DrumStudio User Guide page 1 Table of Contents TRANSPORT... 3 SONG NAVIGATOR / SECTION EDITING...4 EDITOR...5 TIMING OPTIONS...6 PLAYBACK OPTIONS... 7 RECORDING OPTIONS...8

More information

BullCharts BullScan Manager a Tutorial

BullCharts BullScan Manager a Tutorial BullCharts BullScan Manager a Tutorial August 2007 (revised) (c) Copyright August 2007 - Prepared by Robert Brain for Melbourne BullCharts User Group 1 Discussion Guidelines One person to lead the discussion

More information

Linkage 3.6. User s Guide

Linkage 3.6. User s Guide Linkage 3.6 User s Guide David Rector Friday, December 01, 2017 Table of Contents Table of Contents... 2 Release Notes (Recently New and Changed Stuff)... 3 Installation... 3 Running the Linkage Program...

More information

Kaltura CaptureSpace. University Information Technology Services. Learning Technologies, Training & Audiovisual Outreach

Kaltura CaptureSpace. University Information Technology Services. Learning Technologies, Training & Audiovisual Outreach Kaltura CaptureSpace University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information Technology Services This document

More information

Pictures To Exe Version 5.0 A USER GUIDE. By Lin Evans And Jeff Evans (Appendix F By Ray Waddington)

Pictures To Exe Version 5.0 A USER GUIDE. By Lin Evans And Jeff Evans (Appendix F By Ray Waddington) Pictures To Exe Version 5.0 A USER GUIDE By Lin Evans And Jeff Evans (Appendix F By Ray Waddington) Contents 1. INTRODUCTION... 7 2. SCOPE... 8 3. BASIC OPERATION... 8 3.1 General... 8 3.2 Main Window

More information

User's Guide. Version 2.3 July 10, VTelevision User's Guide. Page 1

User's Guide. Version 2.3 July 10, VTelevision User's Guide. Page 1 User's Guide Version 2.3 July 10, 2013 Page 1 Contents VTelevision User s Guide...5 Using the End User s Guide... 6 Watching TV with VTelevision... 7 Turning on Your TV and VTelevision... 7 Using the Set-Top

More information

SUGAR fx. Punchline User Manual

SUGAR fx. Punchline User Manual SUGAR fx Punchline User Manual Installation.... 3 Installing SUGARfx... 3 Contents What is Punchline?... 4 Using Punchline... 5 Punchline Transitions... 6 Parameters... 6 Punchline Titles.... 8 Parameters...

More information

Manual for TV software. TT-Viewer version Figure: TT-budget S2-3200

Manual for TV software. TT-Viewer version Figure: TT-budget S2-3200 Manual for TV software TT-Viewer version 2.7.0 Figure: TT-budget S2-3200 Index Manual TT-Viewer 3 1. Starting TT-Viewer software 3 2. General settings 5 3. Assignment of hardware 6 3.1 Unicable 7 4. Renderer

More information

Using different reference quantities in ArtemiS SUITE

Using different reference quantities in ArtemiS SUITE 06/17 in ArtemiS SUITE ArtemiS SUITE allows you to perform sound analyses versus a number of different reference quantities. Many analyses are calculated and displayed versus time, such as Level vs. Time,

More information

Igaluk To Scare the Moon with its own Shadow Technical requirements

Igaluk To Scare the Moon with its own Shadow Technical requirements 1 Igaluk To Scare the Moon with its own Shadow Technical requirements Piece for solo performer playing live electronics. Composed in a polyphonic way, the piece gives the performer control over multiple

More information

Editing Reference Types & Styles: Macintosh. EndNote Support & Training October 2017

Editing Reference Types & Styles: Macintosh. EndNote Support & Training October 2017 Editing Reference Types & Styles: Macintosh EndNote Support & Training October 2017 EndNote X8 Editing Reference Types & Styles: Macintosh 1 October 18, 2017 Introduction One of the most powerful features

More information

WAVES Cobalt Saphira. User Guide

WAVES Cobalt Saphira. User Guide WAVES Cobalt Saphira TABLE OF CONTENTS Chapter 1 Introduction... 3 1.1 Welcome... 3 1.2 Product Overview... 3 1.3 Components... 5 Chapter 2 Quick Start Guide... 6 Chapter 3 Interface and Controls... 7

More information

Multimedia with Flash MX: The FUN Stuff

Multimedia with Flash MX: The FUN Stuff Multimedia with Flash MX: The FUN Stuff In this session, we will create an electronic greeting card with several scenes. We will use a variety of more advanced Flash techniques. It is possible that we

More information

Physics 277:Special Topics Medieval Arms and Armor. Fall Dr. Martin John Madsen Department of Physics Wabash College

Physics 277:Special Topics Medieval Arms and Armor. Fall Dr. Martin John Madsen Department of Physics Wabash College Physics 277:Special Topics Medieval Arms and Armor Fall 2011 Dr. Martin John Madsen Department of Physics Wabash College Welcome to PHY 277! I welcome you to this special topics physics course: Medieval

More information

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Lecture Capture Setup... 6 Pause and Resume... 6 Considerations... 6 Video Conferencing Setup... 7 Camera Control... 8 Preview

More information

Contents. Welcome to LCAST. System Requirements. Compatibility. Installation and Authorization. Loudness Metering. True-Peak Metering

Contents. Welcome to LCAST. System Requirements. Compatibility. Installation and Authorization. Loudness Metering. True-Peak Metering LCAST User Manual Contents Welcome to LCAST System Requirements Compatibility Installation and Authorization Loudness Metering True-Peak Metering LCAST User Interface Your First Loudness Measurement Presets

More information

After Effects Compositing Basics

After Effects Compositing Basics This tutorial is a continuation of the VIllus Capillary tutorial where you went through the basics of creating a Maya scene from A-to-Z. You re now ready to stitch together a final movie from the individual

More information

Cisco StadiumVision Defining Channels and Channel Guides in SV Director

Cisco StadiumVision Defining Channels and Channel Guides in SV Director Cisco StadiumVision Defining Channels and Channel Guides in SV Director Version 2.3 March 2011 Corporate Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

The road ahead: a dynamic, interactive, and multidimensional Flash website

The road ahead: a dynamic, interactive, and multidimensional Flash website Rochester Institute of Technology RIT Scholar Works Theses Thesis/Dissertation Collections 2008 The road ahead: a dynamic, interactive, and multidimensional Flash website Hung-Ju Hsia Follow this and additional

More information

MULTIMEDIA STORYTELLING

MULTIMEDIA STORYTELLING MULTIMEDIA STORYTELLING GATHERING CONTENT FOR NONLINEAR VERSUS LINEAR PRODUCTIONS Five Steps to Multimedia Storytelling (Source: News University - www.newsu.org and Chad A. Stevens) n step one: choosing

More information

Camtasia for Mac. Create Your First Video Guide. Release 1.1. February TechSmith Corporation. All rights reserved.

Camtasia for Mac. Create Your First Video Guide. Release 1.1. February TechSmith Corporation. All rights reserved. Camtasia for Mac Create Your First Video Guide Release 1.1 February 2009 2009 TechSmith Corporation. All rights reserved. Contents Contents Planning your video... 1 Should I record my entire screen or

More information

S Y B Voc Printing Technology Syllabus

S Y B Voc Printing Technology Syllabus S Y B Voc Printing Technology Syllabus Course Level Course Name: Duration: Pattern: Eligibility: Medium of Instruction: Level-VI Printing Technology 3 years full time Semester 10+2 or equivalent English

More information

Why Does it Have to Be So Hard?

Why Does it Have to Be So Hard? With RICHARD M. HARRINGTON Richard M. Harrington Author s Bio/Description A certified instructor for Adobe, Apple, and Avid, Rich is a practiced expert in motion graphic design and digital video. His producing

More information

Basic Terrain Set Up in World Machine:

Basic Terrain Set Up in World Machine: Basic Terrain Set Up in World Machine:! World Machine can be quickly become complex for the new user, there are many devices to learn and their actions are not always apparent. However you can do a lot

More information

Dewesoft Instructions: Chapter Needed files. Contents:

Dewesoft Instructions: Chapter Needed files. Contents: Dewesoft Instructions: Chapter 10 This document presents basic functionality of Chapter 10 plugin in DEWESoft software. We show how to enable and use needed plugins for decoding streams and perform measurement.

More information

ARRI Look Creator. Quick Guide / Release Notes for Open Beta Test v1.0

ARRI Look Creator. Quick Guide / Release Notes for Open Beta Test v1.0 ARRI Look Creator Quick Guide / Release Notes for Open Beta Test v1.0 Introduction Starting with ALEXA Software Update Packet (SUP) 4.0, ARRI ALEXA cameras can apply userdefined looks to customize the

More information

CLIPSTER. 3D LUT File Generation with the Kodak Display Manager. Supplement

CLIPSTER. 3D LUT File Generation with the Kodak Display Manager. Supplement Supplement: CLIPSTER 3D LUT File Generation with the Kodak Display Manager (Version 1.0) CLIPSTER 3D LUT File Generation with the Kodak Display Manager Supplement Supplement for the CLIPSTER Documentation:

More information

TIATracker v1.0. Manual. Andre Kylearan Wichmann, 2016

TIATracker v1.0. Manual. Andre Kylearan Wichmann, 2016 TIATracker v1.0 Manual Andre Kylearan Wichmann, 2016 andre.wichmann@gmx.de Table of Contents 1 Quickstart...2 2 Introduction...3 3 VCS Audio...3 4 For the Musician...4 4.1 General Concepts...4 4.1.1 Song

More information

Mendeley. By: Mina Ebrahimi-Rad (Ph.D.) Biochemistry Department Head of Library & Information Center Pasteur Institute of Iran

Mendeley. By: Mina Ebrahimi-Rad (Ph.D.) Biochemistry Department Head of Library & Information Center Pasteur Institute of Iran In the Name of God Mendeley By: Mina Ebrahimi-Rad (Ph.D.) Biochemistry Department Head of Library & Information Center Pasteur Institute of Iran What is Mendeley? Mendeley is a reference manager allowing

More information

Cisco Spectrum Expert Software Overview

Cisco Spectrum Expert Software Overview CHAPTER 5 If your computer has an 802.11 interface, it should be enabled in order to detect Wi-Fi devices. If you are connected to an AP or ad-hoc network through the 802.11 interface, you will occasionally

More information

Next Generation Software Solution for Sound Engineering

Next Generation Software Solution for Sound Engineering Next Generation Software Solution for Sound Engineering HEARING IS A FASCINATING SENSATION ArtemiS SUITE ArtemiS SUITE Binaural Recording Analysis Playback Troubleshooting Multichannel Soundscape ArtemiS

More information

RefWorks Using Write-N-Cite

RefWorks Using Write-N-Cite Write-N-Cite allows you to write your paper in Microsoft Word and insert citation placeholders directly from RefWorks with the click of a button. Then, Write-N-Cite will create your in-text citations and

More information

BoxIO User Manual Updated Applies to BoxIO Firmware Version 1.51 IP Remote Utility Version 1.0

BoxIO User Manual Updated Applies to BoxIO Firmware Version 1.51 IP Remote Utility Version 1.0 BoxIO User Manual Updated 09.25.2017 Applies to BoxIO Firmware Version 1.51 IP Remote Utility Version 1.0 Flanders Scientific, Inc. 6215 Shiloh Crossing Suite G Alpharetta, GA. 30005 Phone: +1.678.835.4934

More information

Chapter 40: MIDI Tool

Chapter 40: MIDI Tool MIDI Tool 40-1 40: MIDI Tool MIDI Tool What it does This tool lets you edit the actual MIDI data that Finale stores with your music key velocities (how hard each note was struck), Start and Stop Times

More information

PYROPTIX TM IMAGE PROCESSING SOFTWARE

PYROPTIX TM IMAGE PROCESSING SOFTWARE Innovative Technologies for Maximum Efficiency PYROPTIX TM IMAGE PROCESSING SOFTWARE V1.0 SOFTWARE GUIDE 2017 Enertechnix Inc. PyrOptix Image Processing Software v1.0 Section Index 1. Software Overview...

More information

General Contest Rules for All Categories

General Contest Rules for All Categories CONTEST RULES General Contest Rules for All Categories Rule #1: All contestants must be in Grades 6-12. Students in Grades 6, 7, and 8 must enter the Junior Division. Students in Grades 9, 10, 11, and

More information

Customization of Net Colors Related Video PCB Highlighting. Contents

Customization of Net Colors Related Video PCB Highlighting. Contents Customization of Net Colors Related Video PCB Highlighting Contents Defining Net Coloring Override Patterns Enabling Net Color Override Using Net Override Color in PCB Prints The Summer 09 release brings

More information

SkyEye Viewer Instruction Manual

SkyEye Viewer Instruction Manual SkyEye Viewer Instruction Manual The SkyEye Viewer program provides an easy and convenient method to view images captured with the SkyEye camera system. Images can be viewed one frame at a time or played

More information

Thesis/Dissertation Collections

Thesis/Dissertation Collections Rochester Institute of Technology RIT Scholar Works Theses Thesis/Dissertation Collections 9-1-2009 Colors of the music Meng-Tieh Fang Follow this and additional works at: http://scholarworks.rit.edu/theses

More information

Fraction by Sinevibes audio slicing workstation

Fraction by Sinevibes audio slicing workstation Fraction by Sinevibes audio slicing workstation INTRODUCTION Fraction is an effect plugin for deep real-time manipulation and re-engineering of sound. It features 8 slicers which record and repeat the

More information

User Guide Version 1.1.0

User Guide Version 1.1.0 obotic ean C R E A T I V E User Guide Version 1.1.0 Contents Introduction... 3 Getting Started... 4 Loading a Combinator Patch... 5 The Front Panel... 6 On/Off... 6 The Display... 6 Reset... 7 Keys...

More information

EndNote X6 Workshop Michigan State University Libraries

EndNote X6 Workshop Michigan State University Libraries EndNote X6 Workshop Michigan State University Libraries http://libguides.lib.msu.edu/endnote/ endnote@mail.lib.msu.edu Contents What is EndNote?... 2 Building an EndNote Library... 2 Starting EndNote...

More information

Claymation Workshop Kit Materials

Claymation Workshop Kit Materials Kit Materials [ 1 ] Full day workshop While participants can make claymations on any topic, providing a specific topic helps focus effort and save time. This full-day agenda is based on animating idioms

More information

ZYLIA Studio PRO reference manual v1.0.0

ZYLIA Studio PRO reference manual v1.0.0 1 ZYLIA Studio PRO reference manual v1.0.0 2 Copyright 2017 Zylia sp. z o.o. All rights reserved. Made in Poland. This manual, as well as the software described in it, is furnished under license and may

More information

Written Tutorial and copyright 2016 by Open for free distribution as long as author acknowledgment remains.

Written Tutorial and copyright 2016 by  Open for free distribution as long as author acknowledgment remains. Written Tutorial and copyright 2016 by www.miles-milling.com. Open for free distribution as long as author acknowledgment remains. This Tutorial will show us how to do both a raster and cutout using GPL

More information

imso-104 Manual Revised August 5, 2011

imso-104 Manual Revised August 5, 2011 imso-104 Manual Revised August 5, 2011 Section 1 Getting Started SAFETY 1.10 Quickstart Guide 1.20 SAFETY 1.30 Compatibility 1.31 Hardware 1.32 Software Section 2 How it works 2.10 Menus 2.20 Analog Channel

More information

ecast for IOS Revision 1.3

ecast for IOS Revision 1.3 ecast for IOS Revision 1.3 1 Contents Overview... 5 What s New... 5 Connecting to the 4 Cast DMX Bridge... 6 App Navigation... 7 Fixtures Tab... 8 Patching Fixtures... 9 Fixture Not In Library... 11 Fixture

More information

Digital Video Recorder From Waitsfield Cable

Digital Video Recorder From Waitsfield Cable www.waitsfieldcable.com 496-5800 Digital Video Recorder From Waitsfield Cable Pause live television! Rewind and replay programs so you don t miss a beat. Imagine coming home to your own personal library

More information

Wilkes Repair: wilkes.net River Street, Wilkesboro, NC COMMUNICATIONS

Wilkes Repair: wilkes.net River Street, Wilkesboro, NC COMMUNICATIONS 1 Wilkes COMMUNICATIONS 336.973.3103 877.973.3104 Repair: 336.973.4000 Email: wilkesinfo@wilkes.net wilkes.net 1400 River Street, Wilkesboro, NC 28697 2 Table of Contents REMOTE CONTROL DIAGRAM 4 PLAYBACK

More information

NX-series User Manual

NX-series User Manual NX-series User Manual http://www.iviewtech.com 1 CONTENT INDEX 1 NX-SERIES OVERVIEW... 4 1.1. NX-Series Features 4 1.2. NVR CONTROL PANEL 5 1.3. NVR BACK PANEL 5 2 GETTING STARTED... 8 3 LIVE VIEW... 10

More information

Channel calculation with a Calculation Project

Channel calculation with a Calculation Project 03/17 Using channel calculation The Calculation Project allows you to perform not only statistical evaluations, but also channel-related operations, such as automated post-processing of analysis results.

More information

INTRODUCTION SELECTIONS. STRAIGHT vs PREMULTIPLIED Alpha Channels

INTRODUCTION SELECTIONS. STRAIGHT vs PREMULTIPLIED Alpha Channels Creating a Keyable Graphic in Photoshop for use in Avid Media Composer ǀ Software Using Photoshop CC (Creative Cloud) 2014.2.2 and Avid Media Composer ǀSoftware 8.3 INTRODUCTION Choosing the correct file

More information

Outback STX. User Guide Supplement. Parts List. STX Terminal Overview

Outback STX. User Guide Supplement. Parts List. STX Terminal Overview Outback STX User Guide Supplement This supplement details the following changes from STX v1.0 to STX v1.1: Parts List below STX Terminal Overview below Connection Diagram on page 2 AC110 Power Up and Power

More information

The Kaffeine Handbook. Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab

The Kaffeine Handbook. Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab 2 Contents 1 Kaffeine Player 5 1.1 The Start Window...................................... 5 1.2 Play a File..........................................

More information

ENDNOTE X4. Service Desk Health Sciences Library Main Campus EndNote Contacts:

ENDNOTE X4. Service Desk Health Sciences Library Main Campus EndNote Contacts: ENDNOTE X4 Service Desk Health Sciences Library hslibr@ucalgary.ca 403-220-6855 Main Campus EndNote Contacts: Saundra Lipton lipton@ucalgary.ca 220-3793 Leslie Potter ljpotter@ucalgary.ca 220-3446 Health

More information

UNIVERSITY OF PRETORIA. Dept of Library Services RefWorks (Pt 2) 2011

UNIVERSITY OF PRETORIA. Dept of Library Services RefWorks (Pt 2) 2011 UNIVERSITY OF PRETORIA Dept of Library Services RefWorks (Pt 2) 2011 STEPS TO GET GOING IN REFWORKS Pt 2 USING WRITE AND CITE: - Download Write-n-Cite book marklet in MSWord - Creating Place holders in

More information

ENDNOTE QUICK START GUIDE

ENDNOTE QUICK START GUIDE Citing your Reference(s) continued... Using EndNote with other Word Processors Cite While You Write M in OpenOffice for Windows OpenOffice now intergrates with EndNote in the same way as Microsoft Word.

More information

Mini Gear Indicator Manual SW024

Mini Gear Indicator Manual SW024 General Mini Gear Indicator Manual SW024 This Gear Indicator is designed to work on motorbikes with digital rev and speed signals. The current gear is displayed on a 7 segment LED display. The Gear Indicator

More information

Data Acquisition Using LabVIEW

Data Acquisition Using LabVIEW Experiment-0 Data Acquisition Using LabVIEW Introduction The objectives of this experiment are to become acquainted with using computer-conrolled instrumentation for data acquisition. LabVIEW, a program

More information

Bibliographic Compass. Ângela Santos Neves Cláudia Basto Joana Matos da Silva

Bibliographic Compass. Ângela Santos Neves Cláudia Basto Joana Matos da Silva Bibliographic Compass Ângela Santos Neves Cláudia Basto Joana Matos da Silva Making References EndNote References manager References creation Software for automatic generation of bibliographies, by managing

More information

Pre-processing of revolution speed data in ArtemiS SUITE 1

Pre-processing of revolution speed data in ArtemiS SUITE 1 03/18 in ArtemiS SUITE 1 Introduction 1 TTL logic 2 Sources of error in pulse data acquisition 3 Processing of trigger signals 5 Revolution speed acquisition with complex pulse patterns 7 Introduction

More information

Operating Procedures for RECO1 & RECO2

Operating Procedures for RECO1 & RECO2 Operating Procedures for RECO1 & RECO2 Reconstruction of Data 1) Open CT Pro 3D a. Remember, when the computer you are working on is receiving files from the scanner, it cannot reconstruct data b. You

More information

Linrad On-Screen Controls K1JT

Linrad On-Screen Controls K1JT Linrad On-Screen Controls K1JT Main (Startup) Menu A = Weak signal CW B = Normal CW C = Meteor scatter CW D = SSB E = FM F = AM G = QRSS CW H = TX test I = Soundcard test mode J = Analog hardware tune

More information

Broadcast Graphics ACSR BG400 Webinar Table Of Content

Broadcast Graphics ACSR BG400 Webinar Table Of Content Broadcast Graphics ACSR BG400 Webinar Table Of Content Broadcast Graphics ACSR BG400 Webinar 1 In this edited recording you can view the first section of the Broadcast Graphics ACSR webinar BG400. It includes

More information

USER GUIDE. Get the most out of your DTC TV service!

USER GUIDE. Get the most out of your DTC TV service! TV USER GUIDE Get the most out of your DTC TV service! 1 800-367-4274 www.dtccom.net TV Customer Care Technical Support 615-529-2955 615-273-8288 Carthage Area Carthage Area 615-588-1277 615-588-1282 www.dtccom.net

More information

Explore your new TiVo Service only from Cogeco

Explore your new TiVo Service only from Cogeco TiVo Quick Tips Guide Explore your new TiVo Service only from Cogeco Discover the most personalized TV experience TiVo Service gives you total control of the TV programming you love and it s so much more

More information

Supplement to the Operating Instructions. PRemote V 1.2.x. Dallmeier electronic GmbH. DK GB / Rev /

Supplement to the Operating Instructions. PRemote V 1.2.x. Dallmeier electronic GmbH. DK GB / Rev / Supplement to the Operating Instructions PRemote V 1.2.x 1 DK 180.000.000 GB / Rev. 1.2.3 / 030416 PRemote V 1.2.x Copyright All rights reserved. This document may not be copied, photocopied, reproduced,

More information

Dashboard Lesson 3: Cite Right with APA Palomar College, 2014

Dashboard Lesson 3: Cite Right with APA Palomar College, 2014 Lesson 3 Cite Right with APA 1. Get Started 1.1 Welcome Welcome to Dashboard. This tutorial is designed to help you use information accurately and ethically within your paper or project. This section of

More information

ENGR 1000, Introduction to Engineering Design

ENGR 1000, Introduction to Engineering Design ENGR 1000, Introduction to Engineering Design Unit 2: Data Acquisition and Control Technology Lesson 2.4: Programming Digital Ports Hardware: 12 VDC power supply Several lengths of wire NI-USB 6008 Device

More information

How to Optimize Ad-Detective

How to Optimize Ad-Detective How to Optimize Ad-Detective Ad-Detective technology is based upon black level detection. There are several important criteria to consider: 1. Does the video have black frames to detect? Are there any

More information

TASKI Service Tool Edition: V5.10/2014

TASKI Service Tool Edition: V5.10/2014 Edition: V5.10/2014 Index 1 General 1.1 General information 1 1.1.1 Part reference 1 1.1.2 Consumable supplies 1 1.1.3 Direction description 1 1.1.4 Power source 1 1.2 Required material 2 1.2.1 Tools 2

More information

Swinburne University of Technology

Swinburne University of Technology Swinburne University of Technology EndNote X9 for Mac Swinburne Library EndNote resources page: http://www.swinburne.edu.au/library/referencing/references-endnote/endnote/ These notes include excerpts

More information

TABLE OF CONTENTS TABLE OF CONTENTS TABLE OF CONTENTS. 1 INTRODUCTION 1.1 Foreword 1.2 Credits 1.3 What Is Perfect Drums Player?

TABLE OF CONTENTS TABLE OF CONTENTS TABLE OF CONTENTS. 1 INTRODUCTION 1.1 Foreword 1.2 Credits 1.3 What Is Perfect Drums Player? TABLE OF CONTENTS TABLE OF CONTENTS 1 INTRODUCTION 1.1 Foreword 1.2 Credits 1.3 What Is Perfect Drums Player? 2 INSTALLATION 2.1 System Requirments 2.2 Installing Perfect Drums Player on Macintosh 2.3

More information

1. Presentation of the software. 2. The different screens of the software. 3. About sounds in Imagemo. 1. Presentation of the software

1. Presentation of the software. 2. The different screens of the software. 3. About sounds in Imagemo. 1. Presentation of the software Imagemo 1.0 Documentation 1. Presentation of the software. 2. The different screens of the software. 3. About sounds in Imagemo. 1. Presentation of the software Imagemo is a software which helps to learn

More information

Using DICTION. Some Basics. Importing Files. Analyzing Texts

Using DICTION. Some Basics. Importing Files. Analyzing Texts Some Basics 1. DICTION organizes its work units by Projects. Each Project contains three folders: Project Dictionaries, Input, and Output. 2. DICTION has three distinct windows: the Project Explorer window

More information

Import and quantification of a micro titer plate image

Import and quantification of a micro titer plate image BioNumerics Tutorial: Import and quantification of a micro titer plate image 1 Aims BioNumerics can import character type data from TIFF images. This happens by quantification of the color intensity and/or

More information

SigPlay User s Guide

SigPlay User s Guide SigPlay User s Guide . . SigPlay32 User's Guide? Version 3.4 Copyright? 2001 TDT. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means, electronic or

More information

Using EndNote Online to Manage your References. Workbook

Using EndNote Online to Manage your References. Workbook Using EndNote Online to Manage your References Workbook Edition 5 October 2017 Document Reference: 3814-2017 Using EndNote Online to Manage your References Contents 1. Create an EndNote Online Account...

More information

DETEXI Basic Configuration

DETEXI Basic Configuration DETEXI Network Video Management System 5.5 EXPAND YOUR CONCEPTS OF SECURITY DETEXI Basic Configuration SETUP A FUNCTIONING DETEXI NVR / CLIENT It is important to know how to properly setup the DETEXI software

More information

Should you have any questions that aren t answered here, simply call us at Live Connected.

Should you have any questions that aren t answered here, simply call us at Live Connected. Interactive TV User Guide This is your video operations manual. It provides simple, straightforward instructions for your TV service. From how to use your Remote Control to Video On Demand, this guide

More information

Table of Contents Introduction

Table of Contents Introduction Page 1/9 Waveforms 2015 tutorial 3-Jan-18 Table of Contents Introduction Introduction to DAD/NAD and Waveforms 2015... 2 Digital Functions Static I/O... 2 LEDs... 2 Buttons... 2 Switches... 2 Pattern Generator...

More information

Netflix on the IMC IMC and up. User guide for viewing Netflix Content

Netflix on the IMC IMC and up. User guide for viewing Netflix Content Netflix on the IMC IMC 1.1.0 and up User guide for viewing Netflix Content NETFLIX FOR IMC BASIC USER GUIDE Subscribers to Netflix s Unlimited DVD service are granted an unlimited number of hours for watching

More information

Background. About automation subtracks

Background. About automation subtracks 16 Background Cubase provides very comprehensive automation features. Virtually every mixer and effect parameter can be automated. There are two main methods you can use to automate parameter settings:

More information

EndNote on Windows: Class Notes. EndNote Training

EndNote on Windows: Class Notes. EndNote Training EndNote on Windows: Class Notes EndNote Training EndNote on Windows: Class Notes Page 2 1 After the Class 1.1 The Little EndNote How-To Book The Little EndNote How-To Book is a reference ebook with detailed

More information

TELEVISION. Star Plans. Interactive Guide and DVR (Digital Video Recorder) Manual ARVIG arvig.net

TELEVISION. Star Plans. Interactive Guide and DVR (Digital Video Recorder) Manual ARVIG arvig.net TELEVISION Star Plans Interactive Guide and DVR (Digital Video Recorder) Manual 888.99.ARVIG arvig.net TABLE OF CONTENTS DVR Remote Control Button Features...3 Arvig Digital TV i-guide Quick Reference

More information

3 CHOPS - LIP SYNCHING

3 CHOPS - LIP SYNCHING 3 CHOPS - LIP SYNCHING In this Lesson you will use CHOPs to match lip movements with an existing audio file. You will use blend operations in the SOP editor to create the different facial shapes when saying

More information

MODFLOW - Grid Approach

MODFLOW - Grid Approach GMS 7.0 TUTORIALS MODFLOW - Grid Approach 1 Introduction Two approaches can be used to construct a MODFLOW simulation in GMS: the grid approach and the conceptual model approach. The grid approach involves

More information

COMP2611: Computer Organization Building Sequential Logics with Logisim

COMP2611: Computer Organization Building Sequential Logics with Logisim 1 COMP2611: Computer Organization Building Sequential Logics with COMP2611 Fall2015 Overview 2 You will learn the following in this lab: building a SR latch on, building a D latch on, building a D flip-flop

More information

NOTICE: This document is for use only at UNSW. No copies can be made of this document without the permission of the authors.

NOTICE: This document is for use only at UNSW. No copies can be made of this document without the permission of the authors. Brüel & Kjær Pulse Primer University of New South Wales School of Mechanical and Manufacturing Engineering September 2005 Prepared by Michael Skeen and Geoff Lucas NOTICE: This document is for use only

More information

PSC300 Operation Manual

PSC300 Operation Manual PSC300 Operation Manual Version 9.10 General information Prior to any attempt to operate this Columbia PSC 300, operator should read and understand the complete operation of the cubing system. It is very

More information