IT Training - The Blog

Thursday, July 9, 2009

Why "Alpha?!"

The reason the transparency color option is called "Alpha" in Adobe Flash:

So you've sat through class; Adobe Flash Day 3. You're now making a slide show on your own. You've imported images, you've made them all symbols and now you're adding the fade in and fade out effects. You select your graphic symbol, cruise on down to the Properties tab and see "Color: None." Confidently, you select the drop-down menu to make your fade-out transition effects and see....Alpha? How does that even make sense?!

From what i can find, it all goes back to the development of a type of code made up of 0s and 1s that was created in the 70s. This code, which refers specifically to an element called the "alpha channel," is used for storing information about a 2D image in computer graphics. The 0s and 1s represent if there is any information to be saved per pixel. (A 0 indicates a fully transparent color and a 1 represents a fully opaque color.) I'm assuming they chose the word "Alpha" for this topmost channel because "alpha" is the first letter of the Greek alphabet (get it? ALPHAbet?) like the letter "A" (get it? A for ALPHA?!) Anyway - the process of Alpha compositing is adjusting the values in the alpha channel (the top layer where color information is stored on a per pixel basis) so as to combine the image with it's background to give it a transparent effect.

Get This!:
For the invention and development of the alpha channel, Smith, Catmull, Porter, and Duff won a technical Academy Award in 1996!!
Want to learn more about Adobe Flash or sign up for a class? Click here!

Sources:
1.http://en.wikipedia.org/wiki/Alpha_compositing
2.http://research.swtch.com/2008/01/alpha-compositing.html

Monday, July 6, 2009

Captivating Captivate

Need to train someone in your office on using Captivate? You can actually record Captivate within Captivate. And you don't even need to install a previous version to make it happen.

Because Captivate can record Application Windows, you just need to have two instances of Captivate open at once. You can do that by opening up Captivate the first time and then repeating those same steps to open it a second time. Once you've got two Captivate instances running, you'll be able to select one from the Application drop-down menu.


Captivate away!

Thursday, July 2, 2009

Resize a Captivate Project

Lots of times we have to make a full screen recording in order to capture all the necessary material for our project. However, when we publish our project, we want it to fit comfortably inside a web browser. For this to happen, you can actually resize a project after you have recorded it.
  1. Click on the Project menu at the top
  2. Select Rescale
  3. Resize your project by changing the height/width or the height/width percentages
Tip 1: If you don't want your project to become skewed, make sure the Maintain aspect ratio check box is checked.

Tip 2: You don't want to resize your project too much or too many times. Both drastic size changes and multiple changes will reduce the clarity and resolution of your project.

Learn more about Captivate in one of our great classes! Click here to register.

Wednesday, July 1, 2009

Create a Basic Report in Access

This tutorial will go through the basics of creating a report in Microsoft Access 2007. These skills are covered more in depth in our Access Foundations class and our Advanced Reports SkillBuilder.

To follow along with this tutorial, download the University Records database used in our classes. If you aren't familiar with this database, take a moment to open the tables and look around to see what we're working with.

The Report
We are going to make a report that lists Students, the basic information about the courses they are taking, and the faculty that teach those courses.

Note: As you are working throughout this tutorial, it will be best to have all objects (tables, queries, reports, etc.), except for the one you are working on, closed. This will save you some headaches caused by possible Access errors

Decide the Record Source
Where is the data for your report going to come from? Will the information on your report come from one table, or multiple tables? If it is only going to come from one table, select the table by clicking on it, and skip the next step. If the record source is going to by multiple tables, consider making a query to base the report off of. That's what we're going to do.

Make the query. Using the query wizard(Create tab -> Query Wizard), let's create the record source for our report.
  1. With Simple Query Wizard selected, click OK.
  2. In the Tables/Queries box, select Table: Students.
    1. Double click the essential fields (first and last name, byu_id, and net_id)
  3. Select Table: Courses
    1. Add these fields: course, transcript_title
  4. Select Table: Faculty
    1. Add these fields: first and last name
    2. Just for fun, lets add the teacher's salary. I think it would be nice for students to see how much their teachers are making :)
  5. Click Next.
  6. Detail or Summary Query? Choose Detail, and click next.
  7. Click Finish. Your query should look something like this...
Close the query, and make sure it is simply selected (It should be orange in the object navigation).

Create the Report
Okay, we're ready to make the report. Go to the Create tab and click Report (pictured below). This is to create an "Auto-Report."Grouping and Sorting
There is no need to see the same name over and over again, so we will group similar information, and then sort. We could have done the sorting in the query, but I wanted to keep the data as raw as possible.

To group classes by student, click Group and Sort (make sure you are in Layout view).At the bottom of your report, you will have a new section.Click Add Group.

We could group by name, but there are students with the same name, and it would group their schedules together. So let's group by something unique, like BYU ID. Click byu_id.To sort by last name, click Add a Sort, and then select Student_last_name.

Once you do, you'll notice that it is still sorting by BYU ID first. We need it to first sort by last name, and then group by BYU ID. To change the order of grouping and sorting, click the up arrow on the right.

We can still see information repeating over and over again, like the students' names. To put all the repeating information in the group header, we need to go to design view.Now that we are in design view, de-select the table by clicking in a blank spot of the report. All the orange-ness should go away.

We are going to delete a few things and add them back in a little bit. Click First name, and push delete. Do the same for last name, byu id, and net id.

Creating a new text box
In the "Controls" group of the ribbon, click Text Box. Then, your next click should be right under where it says "byu_id Header." Click where it now says Text 23, and push delete. Where it now says Unbound, type the following:

=[Students_first_name] & " " & [Students_last_name]

Format the text to look something like a header (bold, bigger font, etc.) It should look something like this:Now switch to layout view, and in the AutoFormat group, choose one of the prettiest formats you can find. Resize the columns so it all fits on one page by clicking one of the columns, and then clicking and dragging the right edge (the orange one) to the left.

The final report
Congratulations, that's it! Here is the final report (in the Print Preview view)