(NOTE: This image above shows the first mouse, which was used by Douglas Engelbart during the Mother of All Demos in 1968.)
OVERVIEW
We've now gotten familiar with the Adobe Animate interface, particularly where creating an animation is concerned. Now let's move onto interactivity. For something to be interactive it needs to have an interface that allows a user to input a response to the content.
On screens, this input often takes the form of clicks, taps, swipes, scrolls, etc. We'll focus on the "click" for this project. Before the graphical user interface (GUI), it was done by typing in lines of code.
Essentially, we will create triggers, or buttons, that offer some kind of response to a user when clicked. It will be a graphical user interface (GUI). Let's build up to it.
For this exercise, we will learn how to create a button that is linked to an action (the reveal of a popup) on the screen.
(NOTE: The next image shows Engelbart holding the first mouse. Engelbart died in 2013.)
BUTTON BASICS
Remember classes from the Web Design course? For example, we would create a class called .bodyText and we would write rules for it (font-family, font-size, color, padding, etc.). That was a class we created. We defined variables of the class, as well as how it would function.
Some classes, like the paragraph class <p> had built-in rules that we had to take into account, like built-in padding on the top and bottom, as well as a built-in line break.
Adobe Animate uses a button class, which a pre-defined class that comes with certain built-in variables, or features. When you make something a button symbol (we've been using the movie clip symbol for everything until now), it inherits all the built-in features of the button class.
Most notably, when you look at its symbol timeline, you'll see that it has four states that movieclip symbols don't have. They are UP, OVER, DOWN and HIT. (Remember that there are three kinds of symbols: movieclip, graphic and button.)
Watch how we can use these states to create a rollover (or hover) effect for the user when we create our buttons.
(NOTE: The picture below shows a researcher using the set-up that was featured in the Mother of All Demos in 1968, in which the world got their first look at the mouse, the graphical user interface (GUI), hypertext, windows, and other innovations that are part of the computing landscape to this day.)
POPUPS TRIGGERED BY BUTTONS
Now that we've created a button, we need to connect it to some kind of action, or function. You saw in the video how I was able to make it open a new tab in the browser and go to a specific URL.
For our project, we want to create some kind of action when the button is clicked. So, basically, we will create popups that will be revealed when we click the button. We will create a button and a popup to go with that button. Then we will use code to connect them.
Watch the step-by-step video that shows how to create a popup.
(NOTE: The picture above shows the keyboard, mouse and keyset that Engelbart demoed in 1969. The keyset did not survive the evolution of the GUI and the personal computer.)
USING INSTANCE NAMES
Now we are moving into the coding aspect of the project. It's really easier than you may think. Here's what we're going to do:
- Give an instance name to each of the buttons and popups on the stage.
- Apply an "event listener" to each button that listens for a "click".
- Write a simple function that says when the button is clicked the popup should play.
- That's it.
The resulting code is simple, yet very powerful. It looks like this:
This video shows how to do it and explains the code.
Your assignment is to create a button and a popup, then connect them with code. You should be able to make a popup animate (slide in, drop in, fade in, scale in, etc) onto the stage when the button is clicked. You might have already done it by following these videos. If so, submit it.
Once you can do this, we are ready to move on to creating multiple buttons and popups on an interface.