Adobe Flash Animation Trivia Questions! Quiz

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Megmcg
M
Megmcg
Community Contributor
Quizzes Created: 1 | Total Attempts: 628
| Attempts: 628 | Questions: 20
Please wait...
Question 1 / 20
0 %
0/100
Score 0/100
1. Where is the envelop distort tool located?

Explanation

The Envelop Distort tool is located at the bottom of the options box when the Free Transform tool is used with a shape selected.

Submit
Please wait...
About This Quiz
Adobe Flash Animation Trivia Questions! Quiz - Quiz

Below are some Adobe Flash Animation Trivia Questions! If you are a fan of making animations, you, for sure, have had the chance to use the adobe flash... see moreto make some of your own. Do you think you have what it takes to tackle this quiz on the basics of the app? Do give it a shot and see what more you may learn. see less

2. What does not qualify as a symbol?

Explanation

A bitmap is a type of image file format that represents graphics in the form of a grid of pixels. It is not considered a symbol because symbols are typically objects or elements that can be reused and manipulated in a design or programming environment. A bitmap is a static image and does not have the same interactive or dynamic properties as symbols like graphics, buttons, or movie clips.

Submit
3. Actionscript refers to movieclips via their...

Explanation

In Actionscript, movieclips are referred to by their instance name. The instance name is a unique identifier given to each movieclip instance on the stage. It allows the programmer to manipulate and control specific movieclips individually by referencing their instance names in the code. By using the instance name, properties and methods of the movieclip can be accessed and modified programmatically. The symbol name, on the other hand, refers to the name of the movieclip symbol in the library, and is used for creating new instances of the movieclip, rather than referring to existing instances.

Submit
4. Shape tweens can only

Explanation

Shape tweens are a feature in animation software that allow for smooth transitions between different shapes. However, they have certain limitations. In this case, the correct answer explains that shape tweens can only be used to transition between shapes on different frames, but they must be on the same layer. This means that you cannot use shape tweens to transition shapes on different layers or to change the shape of a symbol. The answer also dismisses the unrelated and incorrect option of "eating bunnies."

Submit
5. What is "stacking order?"

Explanation

The stacking order in Flash refers to the order in which elements are rendered within a scene. This includes the stacking of elements within layers, as well as the stacking of layers within the movie. When elements are stacked within a layer, shapes are placed at the bottom of the stack, while symbols and text objects are positioned at the top. Similarly, layers at the top of the stack in the timeline will be rendered first and be more visible, while those at the bottom will be hidden by content in layers above them. This ensures that the visual hierarchy and visibility of elements are maintained in the rendered scene.

Submit
6. What is not a possible value for a boolean variable?

Explanation

The value "on" is not a possible value for a boolean variable. Boolean variables can only have two possible values: true or false. The values 0 and 1 represent false and true respectively in many programming languages. However, "on" is not a standard boolean value and would not be recognized as a valid input for a boolean variable.

Submit
7. The difference between the black arrow and the white arrow in the tool box is...

Explanation

The explanation for the given answer is that the black arrow tool in the toolbox is used to manipulate the shape as a whole by repositioning it on the stage or fluidly transforming its shape by selecting the curves that define it and repositioning those. On the other hand, the white arrow tool allows for more precise control of the points that define the shape by allowing the manipulation of their anchor points and bezier curves. This means that the black arrow is used for overall shape manipulation, while the white arrow is used for fine-tuning and adjusting specific points and curves.

Submit
8. What is the most common user error (according to Meg) in writing actionscript?

Explanation

The correct answer is "all of the above". This means that according to Meg, the most common user error in writing actionscript is a combination of forgetting to name instances, misspelling instance names or variables, and forgetting to include opening and closing curly braces.

Submit
9. To apply a stroke to a shape that does not currently have one, you ...

Explanation

To apply a stroke to a shape that does not currently have one, you need to select the ink tool in the tool box. Then, choose the desired ink color from the color picker. After that, click on the shape near the outside of its fill. Once you have done that, you can edit the weight and style of the stroke in the properties window.

Submit
10. Functions need to be bracketed by....

Explanation

The correct answer is "{...}". In programming, functions are typically defined and enclosed within curly braces. This allows for better organization and readability of the code. The use of curly braces also helps to define the scope of the function, ensuring that it is executed as intended. Therefore, functions need to be bracketed by curly braces.

Submit
11. If you want a button to not be visible to the user but still listen for events, you would need to...

Explanation

Setting the property .alpha = 0 means that the button's opacity is set to 0, making it completely transparent and invisible to the user. However, the button will still listen for events, allowing it to respond to user interactions even though it cannot be seen.

Submit
12. What is a blank keyframe?

Explanation

A blank keyframe refers to a frame in an animation or video editing software that does not contain any content. In this case, it is represented by a white box with a white dot. This means that there is no change in content, such as scale, movement, rotation, or color, in this particular frame. It is essentially an empty frame that serves as a placeholder or a pause in the animation sequence.

Submit
13. What is dot syntax?

Explanation

Dot syntax in actionscript refers to the use of a dot or period (.) to access a property or method of an object. This allows programmers to interact with specific attributes or behaviors of an object by using the object's name followed by a dot and the property or method they want to access. This syntax is commonly used to manipulate and retrieve data from objects in actionscript programming.

Submit
14. If you want to have a loop animation nested with in a symbol that you can tween on the main stage, you would

Explanation

not-available-via-ai

Submit
15. Anticipation is...

Explanation

Anticipation is the animation principle that deals with the motion at the beginning of an action. It involves preparing the audience for an upcoming action by showing a small movement or change in the character or object before the main action takes place. This helps to create a sense of anticipation and makes the action more believable and engaging. By showing the initial movement, the animator can also convey the character's intention or motivation behind the action.

Submit
16. In order to refer to an imported sound in actionscript,

Explanation

To refer to an imported sound in ActionScript, you need to set its linkage properties to export for ActionScript and assign it a class by right-clicking on the sound in the library and pulling up the "linkage" dialogue box. This allows the sound to be recognized and accessed by its instance name in ActionScript code.

Submit
17. Which option represents the correct syntax for writing an event listener for a movie clip called "sandbox_mc"

Explanation

The correct syntax for writing an event listener for a movie clip called "sandbox_mc" is sandbox_mc.addEventListener(MouseEvent.CLICK, buildCastle).

Submit
18. What is an acceptable instance name?

Explanation

An acceptable instance name in this case would be "$01thumb" because it starts with a valid character ($), followed by alphanumeric characters (0-9, a-z, A-Z), and underscores (_). The other options do not meet these criteria.

Submit
19. To instruct a button to stop on the first frame of another scene, called "replay," you would need to call the following method

Explanation

The correct method to instruct a button to stop on the first frame of another scene called "replay" is "gotoAndStop(1, "replay");". This method will navigate to the specified scene ("replay") and stop at the first frame.

Submit
20. With a button symbol...

Explanation

The hit area of a button is not visible to the end user. It is a transparent area that determines the clickable area of the button. When a user clicks or hovers over the button, the hit area is used to detect the interaction. The "Hit" keyframe in Flash is used to define the hit area for the button. This allows the user to interact with the button accurately, even if the visible area of the button is smaller than the hit area.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 20, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 20, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Jul 15, 2009
    Quiz Created by
    Megmcg
Cancel
  • All
    All (20)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Where is the envelop distort tool located?
What does not qualify as a symbol?
Actionscript refers to movieclips via their...
Shape tweens can only
What is "stacking order?"
What is not a possible value for a boolean variable?
The difference between the black arrow and the white arrow in the tool...
What is the most common user error (according to Meg) in writing...
To apply a stroke to a shape that does not currently have one, you ...
Functions need to be bracketed by....
If you want a button to not be visible to the user but still listen...
What is a blank keyframe?
What is dot syntax?
If you want to have a loop animation nested with in a symbol that you...
Anticipation is...
In order to refer to an imported sound in actionscript,
Which option represents the correct syntax for writing an event...
What is an acceptable instance name?
To instruct a button to stop on the first frame of another scene,...
With a button symbol...
Alert!

Advertisement