An Introduction To Presentation MACCS

Size: px
Start display at page:

Download "An Introduction To Presentation MACCS"

Transcription

1 An Introduction To Presentation MACCS

2 Outline Experiment structure Tabs SDL and PCL Script structure: Settings and setup in your script Events PCL, logic and loops page 2

3 Experiment Structure An overall 'Experiment' file Composed of one or a number of 'Scenario' files Scenario files are played in order one after another page 3

4 Experiment Structure Scenario files may be separate SDL and PCL files more on this later Experiment Scenario 1 (SDL) PCL 1 Scenario 2 (SDL) PCL 2 page 4

5 Experiment Structure Or both SDL and PCL can be encompassed in the one scenario file Experiment Scenario 1 (SDL/ PCL) Scenario 2 (SDL/ PCL) page 5

6 Experiment Structure Depends on personal preference/ style Having SDL and PCL scripts in the same file makes it easier for me to edit Easier to open all you need if all in one file I tend not to use SDL only as very limited, therefore will not be covered here page 6

7 Tabs The Experiment file contains tabs to cover all of the needed components and settings: page 7

8 Tabs The Main tab shows the name of the experiment and location to place log files, both of which can be edited in this tab: page 8

9 Tabs - Scenarios The Scenarios tab allows you to add stimulus directory and scenarios: page 9

10 Tabs Settings (General) Check 'Wait for return to start scenario': page 10

11 Tabs Settings (Response) Best to add buttons to 'default', then 'test': page 11

12 Tabs Settings (Video) Your PC will probably only have one video card available. This is fine for testing When you get to either the ERP or MEG lab this will need to be changed to the 'Radeon' driver 'Current setting' experiments should be fine for most page 12

13 Tabs Settings (Audio) 'Primary Sound Driver' is the typical setting page 13

14 Tabs Settings (Port) Port codes in the ERP and MEG labs are sent by parallel port Your PC probably won't have a parallel port so you will need to change these settings in the lab ask for help To test and run your script on your own PC, click 'Add' Select an available port, usually 'COM1' page 14

15 Tabs Settings (Logfiles) You can typically leave most of these settings alone A very useful function is the prompt for Subject ID When you run the experiment you will see a window in which to type the subject's ID, and press 'enter' It's not necessary to adjust any settings in the 'Advanced' tab page 15

16 Tabs - Summary Save your experiment name Add LOG and STIM folders Add scenarios 'Wait for return to start scenario' Add buttons Add an output port Select 'Prompt' for Subject ID page 16

17 SDL and PCL Two language styles implemented in Presentation script SDL is most useful for: Implementing initial settings Loading and preparing stimuli Creating 'Events' PCL is most useful for: Logic functions Loops Output files 'Doing the work' page 17

18 SDL and PCL SDL = WHAT PCL = HOW page 18

19 Script Structure - SDL Settings Load Stimuli Arrange Stimuli Define Events page 19

20 Script Structure SDL - example Settings example: ISI RGB Sends port codes Note comments marked with a # page 20

21 Settings and Setup Port code pulse width: Onset Pulse width page 21

22 Settings and Setup You can define your own parameters. Easy to find Make changes in only one location Here is the substitutions: same example with parameter page 22

23 Script Structure - SDL Settings Load Stimuli Arrange Stimuli Define Events page 23

24 Load Stimuli A visual stimulus example: Can be '.bmp' or '.jpg' Your own shortcut page 24

25 Load Stimuli An auditory stimulus example: Must be '.wav' file; up to 8 channels; 8, 16 or 24 bit page 25

26 Script Structure - SDL Settings Load Stimuli Arrange Stimuli Define Events page 26

27 Arrange Stimuli Back to our visual stimulus example... It can be very useful for easier later reference to arrange stimuli into arrays: An array is just a type of LIST page 27

28 Arrange Stimuli Instead of having to call up the right filename, simply call the next item in the appropriate array Can also call up an item based on it's reference number in the array Especially useful for randomisation page 28

29 Script Structure - SDL Settings Load Stimuli Arrange Stimuli Define Events page 29

30 Define Events Example including response dependent trials: Some text Picture within an event within a trial page 30

31 Define Events Note that you don't need a separate trial for each stimulus or stimulus type: Duration may be left as default, be some other fixed length, or depend on response This trial includes response commands only button 1 is correct page 31

32 Define Events We use a photodetector in the MEG lab for greater timing accuracy It detects a white box presented in the corner of the screen You should include a white box for any stimulus presentation that also has a port code Just add this box command to appropriate trials, as well as the $VISTRIG... parameters to the top of the script. We will ensure it works correctly in the lab page 32

33 SDL - Summary Provides settings, stimulus loading and arrangement, and events or trials # can be used for comments, or to temporarily remove lines Custom parameters can be used ( $ABC... ) Useful to arrange stimuli into arrays Stimulus commands are arranged within events, which are arranged within trials You don't need a separate trial for each stimulus or even each stimulus group Add 'box' command for MEG experiments page 33

34 PCL If you include PCL in the Scenario file, you must use the begin_pcl command Open an output port in order to send port codes Include a command to automatically name your logfile so it doesn't get lost You can use # as a line break or box If you keep your PCL separate, tell the scenario file about it in the header: page 34

35 PCL, Logic and Loops In this example, we will present each image twice, in random order A good way to accomplish this is to use an array, with index numbers representing categories Note that in PCL, many commands are in the form name.command(settings) ( sequencea is a name, not a command) We're filling an array with 8 ones and 8 twos. The remaining 8 will be zeros shuffle() randomises the array page 35

36 PCL, Logic and Loops Start item Increment End item First number page 36

37 A Word About Randomisation When you use random functions, you don't always get what you expect i.e. Clumping You generally won't get all your items shown about the same number of times You will therefore generally want to constrain the random! Here we have arrays of ones, twos threes and fours serving as indexes for our stimulus arrays We can now be sure all our images will be shown the same number of times each page 37

38 PCL, Logic and Loops We're ready to commence the main task of presenting stimuli The introduction screen and fixation cross are presented easily enough: Trials are generally presented using loops: page 38

39 PCL, Logic and Loops A typical loop: The index i is only valid inside the loop You must increment the index manually Has both pros and cons page 39

40 PCL, Logic and Loops Note that new lines and spacing are irrelevant in Presentation, so this is exactly the same loop: page 40

41 PCL, Logic and Loops We will need more indexes to loop through the arrays for each category: faces, cars and butterflies We set the picture to be one of the faces We give the logfile the description of that face from the beginning of the script We tell the port we want 1 to be sent for faces We present the face, increment the face index, and present a fixation cross == means is equivalent to * * * * page 41

42 PCL, Logic and Loops Note the use of elseif and else statements Repeat the above procedure using the arrays and indexes for cars and for butterflies Note that we want responses to be valid for butterflies, so we use the trial that includes a target button page 42

43 PCL Output File Stimulus manager && = logic and = logic or page 43

44 Testing and Debugging 'Analyze' 'Run Scenario' 'Error Box' page 44

45 Run Your Experiment 'Run Experiment' page 45

46 Experimental Design Considerations Repetition Signal-to-noise-ratio AT LEAST 60 trials per condition. Breaks Happy and comfortable subjects Tiring Procedure length Compromise between ideal number of trials and subject fatigue Performance of the conductive gel will decline with time About two hours or less. At MEG, maximum block length is 20 min page 46

47 Experimental Design Considerations Sufficient port codes Allocate different port codes to each category Err on the side of excessive port codes 256 in ERP lab, about 16 in MEG lab Visual offset and ISI Visual ERP component Do not overlap with epoch or pre-stimulus (baseline) interval. Assuming the allocation of a 200ms baseline interval, and adding to this the 100ms offset component, you need an ISI of at least 300ms. Add some more just to be sure! page 47

48 Resources Presentation help file is okay, but confusing Neurobehavioral Systems forum: ERP Lab Server Library: \\Currawong\ERP\LIBRARY page 48

General Purpose Psychology Laboratory Dr. Robert Goldstone Psychology Department/Program in Cognitive Science Indiana University

General Purpose Psychology Laboratory Dr. Robert Goldstone Psychology Department/Program in Cognitive Science Indiana University General Purpose Psychology Laboratory Dr. Robert Goldstone Psychology Department/Program in Cognitive Science Indiana University Introduction This laboratory is designed to run many different kinds of

More information

Working with Screencast-O-Matic (SOM)

Working with Screencast-O-Matic (SOM) Working with Screencast-O-Matic (SOM) Screencast-O-Matic (SOM) is a fast and easy browser-based screen capture and editing program used to create and share screen recordings. PREPARATIONS There are a few

More information

CONTENTS. How to create a new account and login 2. Create a new Smart project..3. Create a new project..3. How to select the setup options.

CONTENTS. How to create a new account and login 2. Create a new Smart project..3. Create a new project..3. How to select the setup options. CONTENTS How to create a new account and login 2 HOW TO GET STARTED Create a new Smart project..3 Create a new project..3 FEATURES How to select the setup options. 4 How to fill in the spreadsheet.. 6

More information

PowerPoint Slide Basics. Introduction

PowerPoint Slide Basics. Introduction PowerPoint 2016 Slide Basics Introduction Every PowerPoint presentation is composed of a series of slides. To begin creating a slide show, you'll need to know the basics of working with slides. You'll

More information

CpSc 101, Fall 2015 Lab7: Image File Creation

CpSc 101, Fall 2015 Lab7: Image File Creation CpSc 101, Fall 2015 Lab7: Image File Creation Goals Construct a C language program that will produce images of the flags of Poland, Netherland, and Italy. Image files Images (e.g. digital photos) consist

More information

PsyAcoustX Manual (v1)

PsyAcoustX Manual (v1) PsyAcoustX Manual (v1) - 2015 Skyler Jennings, PhD Contents Getting started: Experiment Menu and Calibration Opening the GUI:... 2 Experiment Menu... 2 The SystemInfo.mat file... 3 Calibration:... 4 Calibration

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

How do we use Superlab conceptually.

How do we use Superlab conceptually. How do we use Superlab conceptually. Superlab is constructed in 4 sections: 1. The compilation of the stimuli. This takes place outside of Superlab by the researcher producing pict file pictures in a paint

More information

PowerPoint Introduction. Video: Slide Basics. Understanding slides and slide layouts. Slide Basics

PowerPoint Introduction. Video: Slide Basics. Understanding slides and slide layouts. Slide Basics PowerPoint 2013 Slide Basics Introduction PowerPoint presentations are made up of a series of slides. Slides contain the information you will present to your audience. This might include text, pictures,

More information

ClipArt and Image Files

ClipArt and Image Files ClipArt and Image Files Chapter 4 Adding pictures and graphics to our document not only breaks the monotony of text it can help convey the message quickly. Objectives In this section you will learn how

More information

ZP NEWS ZONEPRO CUSTOMER SUPPORT NEWSLETTER. August 2010 Volume 14, Number 2

ZP NEWS ZONEPRO CUSTOMER SUPPORT NEWSLETTER. August 2010 Volume 14, Number 2 ZP NEWS ZONEPRO CUSTOMER SUPPORT NEWSLETTER August 2010 Volume 14, Number 2 HOPPING ON THE GO-TO-MEETING BANDWAGON Maybe you've seen the commercials or read the ads. GoToMeeting.com is everywhere these

More information

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan that is shown below. Logo Page Heading

More information

ProLog. Creating BrainVoyager protocol files out of Presentation log files

ProLog. Creating BrainVoyager protocol files out of Presentation log files ProLog Creating BrainVoyager protocol files out of Presentation log files Index Introduction... 4 Manual protocol creation... 5 Step 1 Creating and reading BrainVoyager Template Protocol... 5 Step 2 Reading

More information

Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows

Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows Lesson 1: Getting Familiar with Microsoft Word 2007 for Windows Microsoft Word is a word processing software package. You can use it to type letters, reports, and other documents. This tutorial teaches

More information

EthaSample! By Nick Johnson

EthaSample! By Nick Johnson EthaSample! By Nick Johnson The purpose of this documentation is to get you started in EthaSample as quickly as possible. Each menu will be outlined and explained with a minimum of technodrivel. Upon typing

More information

How to Create Greeting Cards using LibreOffice Draw

How to Create Greeting Cards using LibreOffice Draw by Len Nasman, Bristol Village Ohio Computer Club If you want to create your own greeting cards, but you do not want to spend a lot of money on special software, you are in luck. It turns out that with

More information

Data Processing Software for Zeeman Effect Apparatus 1 INTRODUCTION

Data Processing Software for Zeeman Effect Apparatus 1 INTRODUCTION Data Processing Software for Zeeman Effect Apparatus 1 INTRODUCTION 1. Overview This program is an intelligent software developed for Zeeman Effect Apparatus. Used with advanced hardware, it will process

More information

Quite Imposing Plus 4.0: Release Notes, Manual Updates

Quite Imposing Plus 4.0: Release Notes, Manual Updates Quite Imposing Plus 4.0: Release Notes, Manual Updates Release Notes 2 Compatibility 2 Preferences and sequences 2 What s new? 2 New features full list 3 Stick on text and numbers 6 Shortcuts 6 Embedding

More information

Organizing a storage hierarchy (creating folders etc).such as: keeping all related files in a sub folder. Reviewers: REF No:

Organizing a storage hierarchy (creating folders etc).such as: keeping all related files in a sub folder. Reviewers: REF No: Title: Organizing a storage hierarchy (creating folders etc).such as: keeping all related files in a sub folder. Contributers: Dhanya.P Std: IV Reviewers: Submission Date: Approval Date: REF No: Brief

More information

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America.

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. Exsys RuleBook Selector Tutorial Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. This documentation, as well as the software described in it, is furnished under license

More information

Contents. Launching Word

Contents. Launching Word Using Microsoft Office 2007 Introduction to Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Winter 2009 Contents Launching Word 2007... 3 Working with

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Microsoft Word

Microsoft Word OBJECTS: Shapes (part 1) Shapes and the Drawing Tools Basic shapes can be used to graphically represent information or categories. The NOTE: Please read the Objects (add-on) document before continuing.

More information

Mach4 CNC Controller Screen Editing Guide Version 1.0

Mach4 CNC Controller Screen Editing Guide Version 1.0 Mach4 CNC Controller Screen Editing Guide Version 1.0 1 Copyright 2014 Newfangled Solutions, Artsoft USA, All Rights Reserved The following are registered trademarks of Microsoft Corporation: Microsoft,

More information

When you first launch CrushFTP you may be notified that port 21 is locked. You will be prompted to fix this.

When you first launch CrushFTP you may be notified that port 21 is locked. You will be prompted to fix this. This is a quick start guide. Its intent is to help you get up and running with as little configuration as possible. This walk through should take less than 10 minutes until you are able to login with your

More information

1 of 11. TUTORIAL - Content Creator Plus (CCP) (for Trainz 2006) Written Aug. 21, By Jytte Christrup. HOW TO MAKE A SOUND FILE, Step by Step

1 of 11. TUTORIAL - Content Creator Plus (CCP) (for Trainz 2006) Written Aug. 21, By Jytte Christrup. HOW TO MAKE A SOUND FILE, Step by Step 1 of 11 TUTORIAL - Content Creator Plus (CCP) (for Trainz 2006) Written Aug. 21, 2008. By Jytte Christrup. HOW TO MAKE A SOUND FILE, Step by Step Before you get started, you will need 5 files: - the wav

More information

Tobii Pro Lab Release Notes

Tobii Pro Lab Release Notes Tobii Pro Lab Release Notes Release notes 1.89 2018-05-23 IMPORTANT NOTICE! Projects created or opened in this version will not be possible to open in older versions than 1.89 of Tobii Pro Lab Panels for

More information

3.3 Audio Import Manager (AIM)

3.3 Audio Import Manager (AIM) 162 STORQ Technical Operation 3.3 Audio Import Manager (AIM) The Audio Import Manager or AIM offers multiple ways of ingesting audio content into the STORQ system. Files can be imported multiple ways using

More information

Ascii Art. CS 1301 Individual Homework 7 Ascii Art Due: Monday April 4 th, before 11:55pm Out of 100 points

Ascii Art. CS 1301 Individual Homework 7 Ascii Art Due: Monday April 4 th, before 11:55pm Out of 100 points CS 1301 Individual Homework 7 Ascii Art Due: Monday April 4 th, before 11:55pm Out of 100 points Files to submit: 1. HW7.py THIS IS AN INDIVIDUAL ASSIGNMENT! You should work individually on this assignment.

More information

D CLIENT for DIRECTOR/DIRECTOR PRO Series Publishing System Operator s Guide

D CLIENT for DIRECTOR/DIRECTOR PRO Series Publishing System Operator s Guide D CLIENT for DIRECTOR/DIRECTOR PRO Series Publishing System Operator s Guide The DIRECTOR/DIRECTOR PRO is a state-of-the-art CD/DVD publishing system and duplicator. It is designed to create, duplicate

More information

Photoshop tutorial: Final Product in Photoshop:

Photoshop tutorial: Final Product in Photoshop: Disclaimer: There are many, many ways to approach web design. This tutorial is neither the most cutting-edge nor most efficient. Instead, this tutorial is set-up to show you as many functions in Photoshop

More information

Introduction. Watch the video below to learn more about getting started with PowerPoint. Getting to know PowerPoint

Introduction. Watch the video below to learn more about getting started with PowerPoint. Getting to know PowerPoint PowerPoint 2016 Getting Started With PowerPoint Introduction PowerPoint is a presentation program that allows you to create dynamic slide presentations. These presentations can include animation, narration,

More information

Standard File Formats

Standard File Formats Standard File Formats Introduction:... 2 Text: TXT and RTF... 4 Grapics: BMP, GIF, JPG and PNG... 5 Audio: WAV and MP3... 8 Video: AVI and MPG... 11 Page 1 Introduction You can store many different types

More information

Getting Familiar with Microsoft Word 2010 for Windows

Getting Familiar with Microsoft Word 2010 for Windows Lesson 1: Getting Familiar with Microsoft Word 2010 for Windows Microsoft Word is a word processing software package. You can use it to type letters, reports, and other documents. This tutorial teaches

More information

Creating a Basic A/V presentation

Creating a Basic A/V presentation Morriston Camera Club Pictures to Exe Version 6.5 Creating a Basic A/V presentation Setting the Project Options. Main Ensure Synchronize music and slides is checked, and set the time interval to 5secs.

More information

Introducing Skype for Business

Introducing Skype for Business Introducing Skype for Business Before you get started... You may already have Skype for Business installed on your Windows computer. Do a quick check to see following the instructions for your operating

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Getting started with Franson GpsGate 2.0

Getting started with Franson GpsGate 2.0 Franson GpsGate http://franson.com/gpsgate 2004-2006 Franson Technology AB, All rights reserved User's Guide Franson GpsGate v2.0 for Pocket PC Getting started with Franson GpsGate 2.0 How you install

More information

Pre Lab (Lab-1) Scrutinize Different Computer Components

Pre Lab (Lab-1) Scrutinize Different Computer Components Pre Lab (Lab-1) Scrutinize Different Computer Components Central Processing Unit (CPU) All computer programs have functions, purposes, and goals. For example, spreadsheet software helps users store data

More information

Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish

Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish This document outlines the process of creating a streaming presentation using PowerPoint 2007. Note: Before beginning

More information

Course Description This one-day instructor-led course provides students with an overview of the features and functions of Microsoft Word 2010.

Course Description This one-day instructor-led course provides students with an overview of the features and functions of Microsoft Word 2010. Module Title : Course 50541A : Learn Microsoft Word 2010 Step by Step, Level 1 Duration : 1 day Course Description This one-day instructor-led course provides students with an overview of the features

More information

Quite Imposing Plus 4 (QI+4)

Quite Imposing Plus 4 (QI+4) Quite Imposing Plus 4 (QI+4) 27 April 2015 Beta 2 Release Notes This is a beta version offered WITHOUT WARRANTY. Please report any problems to help@quite.com Compatibility This beta is compatible with

More information

Getting Started. ATP 08 Online Analyzer. Introduction. Starting the Online Analyzer. HEAD Getting Started

Getting Started. ATP 08 Online Analyzer. Introduction. Starting the Online Analyzer. HEAD Getting Started ATP 08 Introduction With the ArtemiS (ATP08) you can analyze signals in real time with an extensive range of analysis functions, and you can average the signals and save the analysis results. The signals

More information

AE LAB: Listening & Tagging Guide

AE LAB: Listening & Tagging Guide AE LAB: Listening & Tagging Guide This is a comprehensive guide to beginning the listening and tagging process for the Acoustic Ecology lab, it will list the programs and methods we regularly use to document

More information

Austin Community College Google Apps Calendars Step-by-Step Guide

Austin Community College Google Apps Calendars Step-by-Step Guide The topics that will be covered in this workshop: Access (p.2) Calendar Settings (p.2) o General Tab (p.2) o Calendar Tab (p.3) Change Calendar Color (p.3) Calendar Notifications (p.4) Sharing (p.4) o

More information

Microsoft Access 2013 Lab #01 Part #01

Microsoft Access 2013 Lab #01 Part #01 Microsoft Access 2013 Lab #01 Part #01 In this exercise, you ll start Access and explore the Backstage view and ribbon. SET UP You need the GardenCompany01 database located in the Chapter01 practice file

More information

Custom Car Creation. Custom Car Creation. By Frankyx, 2 January 2007

Custom Car Creation. Custom Car Creation. By Frankyx, 2 January 2007 Custom Car Creation First of all, let me congratulate you on getting the drive to create a car. Object making is definitely not easy but with the right tools, tutorials, and determination, it is possible.

More information

PediGait IP. Users Manual

PediGait IP. Users Manual PediGait IP Users Manual April 2012 Table of Contents Clients Tab... 2 Open a Client file... 2 Delete Client file(s)... 2 Edit a Client... 3 Add a new client... 3 Add Comments to client files... 4 Profiles

More information

Pyxis Imposed Features

Pyxis Imposed Features USER MANUAL Pyxis Imposed Features Application Logic When the Logic check-box is ticked, it is ticked by default (top centre of main window), Pyxis Imposed will attempt to automatically apply various

More information

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

More information

Building linguistic experiments in PsychoPy: AX discrimination task

Building linguistic experiments in PsychoPy: AX discrimination task Building linguistic experiments in PsychoPy: AX discrimination task Department of Linguistics University of Toronto Oct 07 Na-Young Ryu Building an experiment is like a building a house! Building an experiment

More information

Advanced Tutorial: Script This tutorial will modify the Tutorial.es3 experiment file created in the Getting Started Guide to introduce jitter in the

Advanced Tutorial: Script This tutorial will modify the Tutorial.es3 experiment file created in the Getting Started Guide to introduce jitter in the Advanced Tutorial: Script This tutorial will modify the Tutorial.es3 experiment file created in the Getting Started Guide to introduce jitter in the duration of the Fixation. The duration of the Fixation

More information

Work with Shapes. Concepts CHAPTER. Concepts, page 3-1 Procedures, page 3-5

Work with Shapes. Concepts CHAPTER. Concepts, page 3-1 Procedures, page 3-5 3 CHAPTER Revised: November 15, 2011 Concepts, page 3-1, page 3-5 Concepts The Shapes Tool is Versatile, page 3-2 Guidelines for Shapes, page 3-2 Visual Density Transparent, Translucent, or Opaque?, page

More information

Image Optimisation. Image Dimensions...1 Image File Formats...2 Adding Images...5 Thumbnails...13 Summary...15

Image Optimisation. Image Dimensions...1 Image File Formats...2 Adding Images...5 Thumbnails...13 Summary...15 Table of Contents Image Optimisation Image Dimensions...1 Image File Formats...2 Adding Images...5 Thumbnails...13 Summary...15 Introduction Images are placed on a website to enhance its appearance. However,

More information

TMSEEG Tutorial. Version 4.0. This tutorial was written by: Sravya Atluri and Matthew Frehlich. Contact:

TMSEEG Tutorial. Version 4.0. This tutorial was written by: Sravya Atluri and Matthew Frehlich. Contact: TMSEEG Tutorial Version 4.0 This tutorial was written by: Sravya Atluri and Matthew Frehlich Contact: faranak.farzan@sfu.ca For more detail, please see the Method article describing the TMSEEG Toolbox:

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

#AS201 - Using "SuperLab" with AcqKnowledge

#AS201 - Using SuperLab with AcqKnowledge BIOPAC Systems, Inc. 42 Aero Camino Goleta, CA 93117 Ph (805)685-0066 Fax (805)685-0067 www.biopac.com info@biopac.com #AS201 - Using "SuperLab" with AcqKnowledge This application note describes how to

More information

Tutorial: GNU Radio Companion

Tutorial: GNU Radio Companion Tutorials» Guided Tutorials» Previous: Introduction Next: Programming GNU Radio in Python Tutorial: GNU Radio Companion Objectives Create flowgraphs using the standard block libraries Learn how to debug

More information

Contents Advanced Tutorial: Sound... 1 Task 1: Open Tutorial.es3 and save to a new filename... 3 Task 2: Modify the instructions...

Contents Advanced Tutorial: Sound... 1 Task 1: Open Tutorial.es3 and save to a new filename... 3 Task 2: Modify the instructions... Advanced Tutorial: Sound This tutorial will modify the Tutorial.es3 experiment file created in the Getting Started Guide to present a sound (i.e., spoken color word) in addition to the color word presented

More information

Skill Area 323: Design and Develop Website. Multimedia and Web Design (MWD)

Skill Area 323: Design and Develop Website. Multimedia and Web Design (MWD) Skill Area 323: Design and Develop Website Multimedia and Web Design (MWD) 323.1 Design and Plan a Web site (7 hrs) 323.1.1 Web Authoring Tool 323.1.2 List and Use various features to make a Website 323.1.3

More information

CSCI 1100L: Topics in Computing Spring 2018 Web Page Project 50 points

CSCI 1100L: Topics in Computing Spring 2018 Web Page Project 50 points CSCI 1100L: Topics in Computing Spring 2018 Web Page Project 50 points Project Due (All lab sections): Check on elc Assignment Objectives: Lookup and correctly use HTML tags. Lookup and correctly use CSS

More information

Building linguistic experiments in PsychoPy: Production task

Building linguistic experiments in PsychoPy: Production task Building linguistic experiments in PsychoPy: Production task Department of Linguistics University of Toronto Oct 07 Na-Young Ryu Building an experiment is like a building a house! Building an experiment

More information

Choosing Paper Size and Layout. UP TO SPEED Of Menus and Boxes

Choosing Paper Size and Layout. UP TO SPEED Of Menus and Boxes Choosing Paper Size and Layout When you edit a document in Word, what you see on your computer screen looks almost exactly like the final printed page. To get that correct preview, Word needs to know some

More information

Building linguistic experiments in PsychoPy: Production task

Building linguistic experiments in PsychoPy: Production task Building linguistic experiments in PsychoPy: Production task Department of Linguistics University of Toronto Oct 07 Na-Young Ryu Building an experiment is like a building a house! Building an experiment

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Creating Hair Textures with highlights using The GIMP

Creating Hair Textures with highlights using The GIMP Creating Hair Textures with highlights using The GIMP Most users out there use either Photoshop or Paint Shop Pro, but have any of you ever actually heard of The GIMP? It is a free image editing software,

More information

Setting Up the Fotosizer Software

Setting Up the Fotosizer Software Setting Up the Fotosizer Software N.B. Fotosizer does not change your original files it just makes copies of them that have been resized and renamed. It is these copies you need to use on your website.

More information

Tutorial: Bryce Instancing Without the Instancing Lab

Tutorial: Bryce Instancing Without the Instancing Lab http://www.daz3d.com/forums/discussion/67986/tutorial-bryce-instancing-without-the-instancing-lab Fencepost52, 23. December 2015. Note: Use the zoom option in your PDF viewer to enlarge the pictures if

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018

CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018 CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018 Deliverables: Your code (submit to PLC server). A13 participation survey (on Moodle, by the day after the A13 due date). This is

More information

For VW new Polo: Slide the 1 switch to the ON position or DOWN position. : Slide the 1 switch to the OFF position or UP position.

For VW new Polo: Slide the 1 switch to the ON position or DOWN position. : Slide the 1 switch to the OFF position or UP position. This interface can be worked for two kinds of car: For VW new Polo: Slide the 1 switch to the ON position or DOWN position. For VW Golf 7 : Slide the 1 switch to the OFF position or UP position. Starting

More information

Magic Set Editor 2 Template Creation Tutorial

Magic Set Editor 2 Template Creation Tutorial Magic Set Editor 2 Template Creation Tutorial Basics Several types of folders, called packages, must be set up correctly to create any template for MSE. (All files related to MSE template creation are

More information

CIGAL. CIGAL Workshop. Jim Voyvodic May 13, 2015

CIGAL. CIGAL Workshop. Jim Voyvodic May 13, 2015 CIGAL CIGAL Workshop Jim Voyvodic May 13, 2015 Advanced topics These CIGAL topics will not be covered in this session: Showplay s modular design - How to replace standard components with your own Structured

More information

Hotel Reader Board Documentation Version 1.3

Hotel Reader Board Documentation Version 1.3 Version 1.3 January 2015 Table of Contents Introduction... 3 SignWave and Hotel Reader Board... 4 Media Zone Pro Editor... 5 Overwrite File... 6 Hotel Reader Board Interface... 7 Starting the Program...

More information

Intermediate Training

Intermediate Training Intermediate Training The material in this handout is taken directly from the Picasa Website. It was decided to add all the information in one place so it could be viewed at one time. However, what is

More information

Zello Quick Start Guide for Kyocera TORQUE

Zello Quick Start Guide for Kyocera TORQUE Zello Quick Start Guide for Kyocera TORQUE Install Zello Tap Zello in your apps screen then tap UPDATE to start install. When you miss Zello icon in your TORQUE, please search for Zello in Google Play

More information

Scripting with Praat. Day 3: Make Praat make decisions for you! 1

Scripting with Praat. Day 3: Make Praat make decisions for you! 1 Scripting with Praat Day 3: Make Praat make decisions for you! 1 Housekeeping Please sign your name on this sheet and indicate Audit, P/F or letter grade Office Hours: moved to Library basement still Tuesday

More information

For today, choose Format: NTSC Rate: Use: DV-NTSC Anamorphic (North American, widescreen)

For today, choose Format: NTSC Rate: Use: DV-NTSC Anamorphic (North American, widescreen) Final Cut Pro Final Cut Pro is a sophisticated video-editing program made by Apple. It is the editing software of choice for multimedia journalists using Apple computers, and is comparable to Adobe's Premiere

More information

Simplify the Way You Work: Enhancing Microsoft Office with MindManager 7

Simplify the Way You Work: Enhancing Microsoft Office with MindManager 7 Simplify the Way You Work: Enhancing Microsoft Office with MindManager 7 2007 Mindjet LLC, USA All rights reserved. Mindjet and MindManager are registered trademarks of Mindjet LLC in the United States

More information

WinLog v1.1 Users Guide

WinLog v1.1 Users Guide WinLog v1.1 Users Guide DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY AND FITNESS

More information

Web-Friendly Sites. Planning & Design 1

Web-Friendly Sites. Planning & Design 1 Planning & Design 1 This tutorial presents useful tips and tricks to help you achieve a more Web-friendly design and make your sites more efficient. The following topics are discussed: How Z-order and

More information

Function. Description

Function. Description Function Check In Get / Checkout Description Checking in a file uploads the file from the user s hard drive into the vault and creates a new file version with any changes to the file that have been saved.

More information

All textures produced with Texture Maker. Not Applicable. Beginner.

All textures produced with Texture Maker. Not Applicable. Beginner. Tutorial for Texture Maker 2.8 or above. Note:- Texture Maker is a texture creation tool by Tobias Reichert. For further product information please visit the official site at http://www.texturemaker.com

More information

CS Final Exam Review Suggestions - Spring 2014

CS Final Exam Review Suggestions - Spring 2014 CS 111 - Final Exam Review Suggestions p. 1 CS 111 - Final Exam Review Suggestions - Spring 2014 last modified: 2014-05-09 before lab You are responsible for material covered in class sessions, lab exercises,

More information

PICTURES FOR BEGINNERS MANUAL

PICTURES FOR BEGINNERS MANUAL DIGITAL MOTION PICTURES FOR BEGINNERS MANUAL The first item we have to address is: What are we trying to show The second item is how are we going to display this show Motion Picture format Content of Clips

More information

Presents: PowerPoint 101. Adapted from the Texas State Library s TEAL for All Texans Student Resources Manual

Presents: PowerPoint 101. Adapted from the Texas State Library s TEAL for All Texans Student Resources Manual Presents: PowerPoint 101 Adapted from the Texas State Library s TEAL for All Texans Student Resources Manual PowerPoint Topics Intro to PowerPoint Designing a Presentation The Next Level Goals and Objectives

More information

Summary Table Voluntary Product Accessibility Template. Supporting Features. Supports. Supports. Supports. Supports. Supports

Summary Table Voluntary Product Accessibility Template. Supporting Features. Supports. Supports. Supports. Supports. Supports Date: May 3, 2016 Name of Product: ThinkPad 13 (Chrome) Summary Table Voluntary Product Accessibility Template Section 1194.21 Software Applications and Operating Systems Section 1194.22 Web-based Internet

More information

Summary Table Voluntary Product Accessibility Template. Supporting Features. Supports. Supports. Supports. Supports VPAT.

Summary Table Voluntary Product Accessibility Template. Supporting Features. Supports. Supports. Supports. Supports VPAT. Date: 8 May 2018 Name of Product: Lenovo IdeaPad 330-15IKB, 330-17IKB Summary Table Voluntary Product Accessibility Template Section 1194.21 Software Applications and Operating Systems Section 1194.22

More information

Introduction to DMDX

Introduction to DMDX Introduction to DMDX Sonja Eisenbeiss (seisen@essex.ac.uk), University of Essex 1 DMDX 1 DMDX is an experimental presentation control and RT-measurement software, designed and supported by Jonathan and

More information

Adobe Premiere Pro - How to Make a 5.1 HD 1920 x 1080 QuickTime using your Surround Sound Mix

Adobe Premiere Pro - How to Make a 5.1 HD 1920 x 1080 QuickTime using your Surround Sound Mix Adobe Premiere Pro - How to Make a 5.1 HD 1920 x 1080 QuickTime using your Surround Sound Mix Right Click on your sequence and choose select it for exporting a self contained quicktime Right Click and

More information

Outlook Navigation

Outlook Navigation Outlook 2010 Email Navigation Reading Pane Navigation Pane Inbox Navigation Pane Access your mail folders, view your calendar(s), and more. Inbox Browse through emails and meeting invites that have not

More information

Organizing your Outlook Inbox

Organizing your Outlook Inbox Organizing your Outlook Inbox Tip 1: Filing system Tip 2: Create and name folders Tip 3: Folder structures Tip 4: Automatically organizing incoming emails into folders Tip 5: Using Colors Tip 6: Using

More information

Designing a track in Adams/Car:

Designing a track in Adams/Car: Warning: Remember to change your working directory before you begin this lesson. If you do not, Adams may not work correctly. Also remember to move everything you wish to keep from the working directory

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

Practical 4: The Integrate & Fire neuron

Practical 4: The Integrate & Fire neuron Practical 4: The Integrate & Fire neuron 2014 version by Mark van Rossum 2018 version by Matthias Hennig and Theoklitos Amvrosiadis 16th October 2018 1 Introduction to MATLAB basics You can start MATLAB

More information

From time to time Google changes the way it does things, and old tutorials may not apply to some new procedures.

From time to time Google changes the way it does things, and old tutorials may not apply to some new procedures. From time to time Google changes the way it does things, and old tutorials may not apply to some new procedures. This is another tutorial which, in about 6 months, will probably be irrelevant. But until

More information

The LENA Advanced Data Extractor (ADEX) User Guide Version 1.1.2

The LENA Advanced Data Extractor (ADEX) User Guide Version 1.1.2 The LENA Advanced Data Extractor (ADEX) User Guide Version 1.1.2 ADEXUG20110602 Copyright 2011 LENA Foundation The LENA Advanced Data Extractor User Guide ii The LENA Advanced Data Extractor (ADEX) User

More information

The Monitor Window. 3.The Monitor Window Premiere Pro 1.5 H O T

The Monitor Window. 3.The Monitor Window Premiere Pro 1.5 H O T 3.The Monitor Window Premiere Pro 1.5 H O T 3 The Monitor Window Source vs. Program Playing Source Video In and Out Points Setting In and Out Points Clearing In and Out Points H O T Premiere Pro HOT DVD

More information

Windows Live Movie Maker: Project Organization

Windows Live Movie Maker: Project Organization Windows Live Movie Maker: Project Organization Before starting a project in Windows Live Movie Maker, make sure you have the organization structure in place to support it. I have found it very important

More information

Bridges To Computing

Bridges To Computing Bridges To Computing General Information: This document was created for use in the "Bridges to Computing" project of Brooklyn College. You are invited and encouraged to use this presentation to promote

More information