Houdini Parameter Interface Quick Facts by Deborah R. Fowler

Slides:



Advertisements
Similar presentations
Chapter 9 Working with Tabs and Tables. Chapter Objectives Work with tabs Create and format a table Format text in a table Place graphics in a table.
Advertisements

JustinMind: Dynamic Panels
Learning the Basics – Lesson 1
W2D1 Fluency with IT = to learn / figure out quickly to use the computer for whatever purpose skills (lab) concepts (lectures)
Bitmap Editing – Lesson 1
1 of 5 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
Putting Your PowerPoint into WebCT. To put your PowerPoint online Create an appropriate folder Upload the PowerPoint file to that folder Create a link.
Access Tutorial 10 Automating Tasks with Macros
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Another Method to Open WebSpace as a Web Folder Alternative Method for Creating Web Folder in WebSpace, Slide 1Copyright © 2004, Jim Schwab, University.
Enhancing a Document Part 2
BY Zachary Hamer. Step one  First you will need to go to your desktop and click on the START button. A box should pop up.
Quick guide on making PowerPoint slides  PowerPoint is a presentation program  A PowerPoint slideshow is a stack of slides being presented one after.
Creating Buttons – Lesson 51 Creating Buttons Lesson 5.
IReport Demo Spring 2008 OEDSA Conference. Report Properties.
OneNote 2007 Adding text and images from the web.
Creating and Calling Procedures Alice 3 Beta. A few choices to be made Right window, upper left hand corner start by clicking on Class “MyScene” button.
Lesson No: 6 Introduction to Windows XP CHBT-01 Basic Micro process & Computer Operation.
Graphical User Interface You will be used to using programs that have a graphical user interface (GUI). So far you have been writing programs that have.
Working in FreeHand – Lesson 21 Working in FreeHand Lesson 2.
CSC 157 (Blum)1 Hello World. CSC 157 (Blum)2 Start/Programs/Microsoft Visual Studio.NET 2003/Microsoft Visual Studio.NET 2003.
The material contained in this document is proprietary to Triniti Corporation (Triniti). This material may not be disclosed, duplicated or otherwise revealed,
Building the Events Components– Lesson 111 Building the Events Components Lesson 11.
1 Quiz Template: Using the ‘ask user’ functions By Deborah Nelson Duke University Under the direction of Professor Susan Rodger July 2009.
Step 1 1.) go up to the Layer menu in the Menu Bar at the top of the screen, choose New, and then choose Layer via Copy.
UNDERSTANDING “THE RIBBON” Bonnie Powell Assistant Administrative Computer Network Coordinator.
Microsoft Access Prepared by the Academic Faculty Members of IT.
ADOBE INDESIGN CS3 Chapter 9 WORKING WITH TABS AND TABLES.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
How to add Word-Art to a Word Document Purpose: To learn how to add WordArt to a Word Document.
1 Sophiebook 101: Exploring the interface. 2 Open a new book in Sophie 1.File > New Book 2.Click OK.
Integrating Components and Dynamic Text Boxes with the Animated Map– Lesson 101 Integrating Components and Dynamic Text Boxes with the Animated Map Lesson.
To Open BCF (Your hypermap). Now open Select your.BCF from NAS drive or the EDX computer, I have copies in both places for you!
Texas Skyward User Group Conference Helpful Hints Jennifer Speulda.
Lessons Copy and Paste Text Drag and Drop Text 2-Saving Documents 3- Printing 4-Inserting Tables Modifying Page Layout Format Page Margins Insert a Blank.
PowerPoint Adding Hyperlinks and Hiding Slides Learn to Link to websites and other slides in the presentation! Adding Hyperlinks and Hiding Slides Learn.
Adobe Premiere interface overview
Objectives Create a folder in Google Drive.
MS EXCEL PART 4.
Top 25 Lists.
How to automatise the grid production - using model builder in ArcGIS
Software Quality Assurance
Microsoft Windows XP Inside Out Second Edition
Unit Six: Labels In this unit… Review Adding Text to Maps
INTRODUCTION TO ADOBE ILLUSTRATOR
Word Lesson 6 Working with Graphics
Transition from Classic Interface Phoenix Interface to
Microsoft Publisher 2010.
A few tricks to take you beyond the basics of Microsoft Office 2010
Database Applications – Microsoft Access
Microsoft Project 2007 Demo Part 3
AC3274 CUIX Zen - Customizing the CUI
MicroSoft Word 2007 The purpose of this PowerPoint presentation is to show you some of the major differences in Word 2007 from the version we had here.
WEEBLY.COM Open Weebly.com and create an account. Create a site
Topic one text label Topic two text label Topic three text label
Inserting Pictures and Symbols in Word documents
A few tricks to take you beyond the basics of Microsoft Office 2007
A few tricks to take you beyond the basics of Microsoft Office
Software Quality Assurance
Microsoft Publisher 2010.
Visual C# - GUI and controls - 1
Introduction to PowerPoint
1. Drag the shapes down to make 2 different patterns.
To be able to create my first advert, I needed an image to go along of the bottom of my advert. I decided to use an image that match the colours on my.
PCP Super User.
Graphical User Interface off-line
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
A few tricks to take you beyond the basics of Microsoft Office
Core: Word-processing
Insert Transitions Between Slides
Presentation transcript:

Houdini Parameter Interface Quick Facts by Deborah R. Fowler

Click on the gear symbol to bring up the parameter dialog box This side contains all the types of parameters you can select from ie. int, float, button … drag them over to the “Existing Parameters” panel to add to your node

In this example, I’ve dragged an integer (I can always change it in the drop down ment too – under “Type”) Pay attention to the tab you are in – the parameter tab is where you set your parameter name (what you use to reference) and label (what the user sees)

Here I have used kermit for my parameter name and Kermit Name User Sees for my label for demo purposes only – use names/labels that make sense This means that anytime I want to reference this value I will use ch(“../kermit”) inside my network (later we will see how to use paths to access other parameters)

There is another tab that you must pay attention to – the Channels tab – this is where you are going to set the default value of the selected parameter here - type in the value you want the parameter to have by default

Inside your network, use the reference to this parameter (below the value of kermit is being as the number of copies). This way I can control the number of copies from the top level node. A user has no need to dive into the network and can control the object in ways you have designed. In essence you have created a GUI (graphics user interface) for your tool. These references to parameters can be used anywhere in an hscript expression. For example I could say 3 * ch(“../kermit”) or sin( ch(“../kermit” ) ) or rand( ch(“../kermit”) )