Building Memory… Day 3 – April 9, 2007.

Slides:



Advertisements
Similar presentations
Introduction to PowerPoint
Advertisements

Finding Slope – Intercept From an Equation STEPS : 1. Equation must be in y = mx + b form 2. The slope is the coefficient of “x” ( m ) 3. The y - intercept.
Talai Est Deo The Tao of Dice Sample Concept (Maybe a good running title is “Lord of the Chance”??
Alfredo Perez Resident Mathematician Texas A&M University GK-12 Program.
Code 2 Layers. Step 1 Using 2 Layers Step 2: There are 2 layers Using 2 Layers.
Building Memory… Day 5 – November 27, Need to flip cards Create a remove method to remove from drawing canvas Call a show method to show on the.
Building Memory… Day 3 – November 17, Two options to make Game graphical Game should extend some graphical component to allow us to put it on the.
Building Memory… Notes from class on 4/4/07. The Game First understand what we are trying to build. Then, create a list of requirements/functionality.
Using Powerpoint to Create Interface Prototype Copy & Paste Interface Designs –Use Screen Capture to Copy Existing Interface –“Print Screen / SysRq” Button:
CS3157 Java UI Recitation. Material Covered: Overview of AWT components, Event Handling, creating applets, and sample UI. Not covered in recitation: Drawing,
Building Memory… Day 4 – November 20, Some clean up from last time Applet class can now be run as either an Applet or an Application Made picture.
Building Memory… Notes from class on 11/13/06. The Game Think about what types of objects we will need in our system and some of the properties and capabilities.
Building Memory… Day 7 – April 18, Mouse Listener Attached listeners to each card (but the back image only) When click event is generated, simply.
CSE 115 Week 12 March 31 – April 4, Announcements March 31 – Exam 8 March 31 – Exam 8 April 6 – Last day to turn in Lab 7 for a max grade of 100%,
Building Memory… Day 2 – November 15, What do we want the game to look like? Window to appear Start game button Difficulty level selection Number.
Building Memory… Day 5 – April 13, Cards on Screen How can we arrange cards in a row/column manner? Use the Position class to help us translate.
Input Devices. Keyboard Keyboard is used to type text Application Application Word- Processing Word- Processing.
Steps to start Have a good clear photograph of your face or Head and shoulders from the front and the side (profile)
Jeopardy Start Click the Start button to go to the Category Board and begin the game. On the Category Board, click the button of your choice to select.
Appleworks Draw Let’s get started…. With the drawing program, you can create… Mathematically calculated objects Mathematically calculated objects Each.
Chapter 9.1 Translations.
Finding Slope – Intercept From an Equation STEPS : 1. Equation must be in y = mx + b form 2. The slope is the coefficient of “x” ( m ) 3. The y - intercept.
Getting Started With HTML HTML code needs an editor for a programmer to be able to use. We can use Notepad on a PC or TextEdit on a Mac. However, it is.
Creating With Code.
Mapwing Tutorial By: Jake Quilliams 11/7/ First, Go to this website 2. Start your Virtual Tour here by choosing CREAT A.
Methods for Multiplying. Standard Algorithm Partial Products Draw table with dimensions of digits in each number. Ex.
Multiplication Jared and Jessie. Critical Thinking  How do patterns in our place value system assist in comparing whole numbers? (Whole numbers are numbers.
LAURIE STEINHORST Images of Student Work Painting I. Drawing I. Figure Drawing.
Image #1 Getting Started
Multiples and Factors. Multiples A multiple is a number that is in the times tables. A multiple is a number that is in the times tables. Multiples of.
EDUC 560 Class #1. Large Group Icebreaker n You will be given a letter of the alphabet. Please post it to the front of you. n You have 5 minutes to form.
Area & Perimeter BINGO Area = l x w Perimeter = S + S + S + S.
Resources & Bitmaps Adding clip art to your application.
Long multiplication – column method
Image from
Title of your site Title of your page Text and images arranged on the page in the design of your choice. Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Page.
By VANIKA.  Keyboards – you can type and it makes the letters come up on the screen.  Mouse – it takes your movement and control the cursor.  Scanner.
Click the mouse button or press the Space Bar to display the answers.
Customise & Explain your game
Flash Memory Drills I. Flash Memory Drills I.
POLYNOMIALS – Sum and Difference
Splash Screen.
Board Game Editor and Player Framework
PHP Image Manipulation
ENGN103 Engineering Drawing
Online Gifts Buy for wishes happy mother's day to yours choice and with happy gifts find here:
Orthographic Projection
BYOB – Costumes.
DIRECTIONS: 1. Click Enable Editing in the yellow bar above.
Extend Text Editor to Draw shapes
Surface Area Tutorial.
What is the function of the graph? {applet}
A PICTURE IS WORTH A THOUSAND WORDS
Alphabet Bingo BINGO r g j l o d h s i n m f b y w q e BINGO f j s g m
Thanks so much for downloading my resource!
Surface Area.
Chemistry – Jan 16, 2019 P3 Challenge – Objective – Assignment: Agenda
Image #1 Getting Started
ENGN103 Engineering Drawing
Vocabulary Cards Front Side: -Term spelled correctly
ADD TITLE IN CAPS ADD SUBTITLE IN CAPS Type presentation author here
Discussions in the classroom
Donegal Women in Business Network 2019
[We] ain't afraid of no [retrospective]
Unit 9. Day 17..
Symbian OS Programming
Sketch the curve. {image}
I have… I have… Who has 3:40? Who has 12:20? I have… I have…
Students should click on “Get Started”
The figure shows the graphs of {image} , {image} , {image}
Presentation transcript:

Building Memory… Day 3 – April 9, 2007

Created menus Menus worked a little differently depending on Applet/Application choice. We needed to make two constructors for the Game class. Put other menu code in separate method.

Put Drawing Canvas on Screen Same for both Applets and Applications, made a common method that both will call to get the Drawing Canvas set up.

Now we need Cards Create Card class Needs an image for the front and for the back. Set the dimension, location, add to drawing canvas

Open Questions How do we get each card to have its own unique face image? How do we position the cards nicely on the screen? How do we flip the cards?