April 8th – Jeff Galak (CMU)

Slides:



Advertisements
Similar presentations
Building Web Pages With Microsoft Office. Introduction This tutorial is for the beginning web builder. It utilizes software that you already have, Microsoft.
Advertisements

Click to add your Title Click to Write your name. Make sure it looks like this. Author: Nancy Power Point.
Images By Tara Frieszell By Tara Frieszell. Adding images to your website will make it more interesting and add to the design. However, some viewers aren’t.
Web Publishing TutorialIS for Management1 Tutorial: Web Publishing.
A Cursory Look—for more help, ask!.  Find Window’s Movie Maker and open it  It looks like this:
Roentgen photo effect. This detailed, thoroughly explained lesson will show you how to create very attractive roentgen photo effect. You can use this.
ONLINE DATA STORAGE & DOCUMENTS Lesson 3. Lesson 3 – Online documents In this lesson we will be covering:  Online documents  Compression and expansion.
Chapter 17 Putting It All Together. Viewing the Preloader To view the preloader, 1.CTRL-Enter to test the movie. 2.View > Simulate Download.
Unit 1 – Improving Productivity Jake Carey. 1.1Why did you use a computer? What other systems / resources could you have used? I used a computer to finish.
Programming Behavioral Experiments in Flash Session 3 of 3 Advanced Topics if Flash (Sounds, Videos, and Real Time Ratings) January 30, 2009 – Jeff Galak.
Introduction to Flash FYS100 Creative Discovery in Digital Art Forms Spring 2007 Burg.
Programming Behavioral Experiments in Flash Intro to Web Programming, PhP, and Flash July 23 rd and 24 th, 2009– Jeff Galak (CMU)
Exercise : Animated Navigation Structure in Flash 1.Develop Answers to “What did you learn in ITI program?” “What do you have to offer?” “What are your.
London April 2005 London April 2005 Creating Eyeblaster Ads The Rich Media Platform The Rich Media Platform Eyeblaster.
Guidelines for Homework 6. Getting Started Homework 6 requires that you complete Homework 5. –All of HW5 must run on the GridFarm. –HW6 may run elsewhere.
Interface & navigation (How to build a simple presentation interface) Flash ActionScript Introduction to Thomas Lövgren
Programming Behavioral Experiments in Flash Session 1 of 3 Intro to Web Programming, PhP, and Flash January 29 th – Jeff Galak (NYU)
Go to your school’s web locker site school name.schoolweblockers.com) Your user name is the first letter of your first name, the first four.
Our Examples Video Capture Working With Interactive Video Objects Buttons symbols – are areas on the monitor that a sensitive to user actions such.
Programming games Reflection Bouncing things, Memory Server-side: Survey. ActionScript 2 examples. Homework: Finish Video or Audio. Post proposal for your.
Programming games Show your version of Bo the dog. Start cannonball Preview: video, audio work session (cannonball) Homework: Cannonball with ball in a.
Creating Buttons – Lesson 71 Creating Buttons Lesson 7.
FILES AND ASSETS PANELS
More Tips on Flash CSC361/661 Digital Media Spring 2007 Burg.
AGENDA – DIGITAL COMPUTER 1B MARCH 21, WEDNESDAY  MS PowerPoint Advance Course Lesson 3: Working with Visual and Sound Objects (Applications) 
Agenda – Week 8, Day 2 Tuesday Intro to Flash Animation process Computer animation Lesson 1 – Overview Lesson 2 – Drawing Lesson 4 – Layers Lesson 8 –
Website Editing From Gingerweb The Image Gallery.
Introduction to Flash Animation CS 318. Topics Introduction to Flash and animation The Flash development environment Creating Flash animations  Layers.
Your Final Concert Movie Project How you will create a movie about the song you took “pictures” of.
Programming Behavioral Experiments in Flash Advanced Topics if Flash (Sounds, Videos, and Real Time Ratings) July 23 rd and 24 th, 2009– Jeff Galak (CMU)
Building the Events Components– Lesson 111 Building the Events Components Lesson 11.
Uploading Information to the Website. Uploading Information Uploading information to the website is very simple. Our website is updated through a system.
CIS Intro to JAVA Lecture Notes Set July-05 GUI Programming – Home and reload buttons for the webbrowser, Applets.
Creating a Historical Tour in Alice By Jenna Hayes May 2010.
Programming Behavioral Experiments in Flash Session 2 of 3 Building Your First Flash Experiment January 30, 2009 – Jeff Galak (NYU)
Amy Jo Harrell 2006 Making your own web site Yes, I mean you!
Pictures, Pictures, Pictures!. Load your pictures:  Open your and save each picture to your computer. I suggest saving to the My Documents or My.
Programming games Flash concepts. Coin toss. Filezilla: upload your project(s) Homework: Enjoy Spring Break.
Basic ActionScript and PHP Cis 126. Getting Started set up a basic folder structure so we can keep our files organized. Mirror this structure on your.
Website Design:. Once you have created a website on your hard drive you need to get it up on to the Web. This is called "uploading“ or “publishing” or.
Debugging tools in Flash CIS 126. Debugging Flash provides several tools for testing ActionScript in your SWF files. –The Debugger, lets you find errors.
PHP Form Processing * referenced from
Let’s Make a Movie The Basics. Goals Storyboard Take Video Upload Video.
ICT Dept Coopers year 10 DLD Day – Video News Production.
Agenda • 1 - Play Button redo, tutorial What is ActionScript
Senior Project Introduction
Hillsborough Community College
Part 3 – Remote Connection, File Transfer, Remote Environments
Year 7 E-Me Web design.
Using the Mouse Dead Application
Flash animation For beginners.
SEEM4570 Tutorial 07: Filezilla and PHP
Getting Started with Scratch
Interface Programming 2 Week 1
Walk-In WELCOME TO THE 4TH QUARTER!
Inserting Pictures and Symbols in Word documents
Programming games Classes and objects (used for Jigsaw, Bouncing stuff, other projects) Homework: Complete cannonball. Video or Audio. Your own project.
Version: Macromedia Dreamweaver CS3 Updated: April 2008
Change sound track.
Comparing and Ordering Decimals
Creating an Interactive Quiz
Getting Started with Scratch
TC 310 The Computer in Technical Communication
10/30 Topic: Research Continues Aim: How do I use a video as a source?
Flash Demonstration – Unit 5 – ActionScript 3.0
MIS 3200 – Unit 6.1 Moving between pages by redirecting
Exercise : Animated Navigation Structure in Animate (= Flash)
Kapi’olani Community College
Creating an Interactive Quiz
Exercise : Animated Navigation Structure in Flash
Presentation transcript:

April 8th – Jeff Galak (CMU) Programming Behavioral Experiments in Flash Session 2 of 3 Building Your First Flash Experiment April 8th – Jeff Galak (CMU)

Agenda for the Week Session 1: Thursday, April 8th (10-12pm): Intro to Web Programming, PhP, and Flash Session 2: Thursday, April 8th (2-4pm): Building Your First Flash Experiment Session 3: Friday, April 9th (10-12pm): Advanced Topics if Flash (Sounds, Videos, and Real Time Ratings) Session 2 - 04/09/2010

Agenda for Today Working with Pictures Reaction Times Create a new experiment from “scratch” Session 2 - 04/09/2010

Two Ways To Get Pictures Into Your Program “Hard Code” them Drag an image file from a folder directly onto the stage. Note that Flash adds it to the library. File -> Import to Stage/Library Use ActionScript Session 2 - 04/09/2010

Pictures and ActionScript Use the “empty movie clip” place holder Name it something: “imageLoader1” Save an image file in the same folder as the program In ActionScript, use the following code: loadMovie(“img.jpg", "imageLoader1"); Name of image file. Can be variable or string. Name of place holder. Can be variable or string. Session 2 - 04/09/2010

Reaction Times in Actionscript gettimer() Starttime = gettimer() Put this somewhere in the main part of the frame Endtime = gettimer() Put this wherever you exit the frame (e.g. when a button is clicked) storedate(“reactiontime”,endtime-starttime); Put this just below the endtime=gettimer() line Done! Session 2 - 04/09/2010

Creating a New Experiment: Steps Duplicate existing experiment Rename all the files to the new experiment name Update “experiment”.php Change experimentname Set the right number of conditions Session 2 - 04/09/2010

Creating a New Experiment: Steps Program your experiment Update the preamble to reflect the correct conditions Do everything else Test your program in Flash (use Trace when needed) Compile your experiment: Shift + F12 Create debriefing Session 2 - 04/09/2010

Creating a New Experiment: Steps Server Stuff Connect to your server via FileZilla Create a directory with the same name as your experiment Upload everything CHMOD the folder and files to 777 Test your program online Check that the data file is created and looks right CHMOD the data file to 777 Session 2 - 04/09/2010

Homework 1. Install software!! 2. Try and upload the existing files to your webserver and see if everything works Make sure to check permissions (CHMOD 777 works well)…ask me for help 3. Take any simple questionnaire you have and try to turn it into a program (at least 2 conditions) If you can’t get the web version to work just yet, try and get it to work locally (e.g. with CTRL+ENTER) If you don’t have a questionnaire, I will give you one Session 2 - 04/09/2010

Next Session Session 3: Friday, April 9th (10 – 2pm): Advanced Topics if Flash (Sounds, Videos, and Real Time Ratings) Session 2 - 04/09/2010