Adobe Flash

  Home  Adobe  Adobe Flash


“Adobe Flash was previously called Macromedia Flash. This Flash Interview Questions and Answers guide is a platform to learn that Flash is a multimedia a application originally acquired by Macromedia and currently developed and distributed by Adobe Systems. Learn Adbobe Flash by our Flash Interview Questions and Answers.”



132 Adobe Flash Questions And Answers

47⟩ To what does object drawing model refer?

A. drawing of regular shaped objects only

B. drawing of irregular shaped objects only

C. drawing of objects within symbol editing mode

D. drawing of objects that merge with other shapes

E. drawing of objects that cannot merge with other shapes

 115 views

48⟩ Which two statements about device fonts are true? (Choose two)?

A. rotated text set in a device font can be rendered

B. device fonts are NOT embedded in the Flash SWF file

C. device fonts cannot be masked by using a mask layer on the Stage

D. device fonts can only be used with static horizontal text and input text

E. using device fonts results in a somewhat smaller SWF fi le then all of the other font options

 124 views

50⟩ What is the purpose of the break statement?

A. to cause a function to stop executing immediately and not run any other

lines of code in a function

B. to cause a conditional loop to stop executing immediately and exit the loop

without running any other lines of code in the loop

C. to stop executing the code in a frame immediately and go to the next frame

without executing any other lines of code in the frame

D. to cause a conditional loop to stop executing immediately, return to the top

of the conditional loop and continue with the next pass of the loop

 143 views

56⟩ Where to Start the Adobe Flash?

After you have installed Flash at your computer, you should go through the flash help that are included in the program. Start Adobe Flash, click Help in the menu and choose Lessons.

These lessons will teach you the basics of Flash.

 118 views

57⟩ What is the output of the following code?

Code:

var fruits:Array = new Array(“apple”, “strawberry”, “orange”);

fruits.unshift(“orange”);

trace(fruits);

A. apple,strawberry

B. apple,strawberry,orange

C. apple,strawberry,orange,orange

D. orange,apple,strawberry,orange

 127 views

58⟩ What is Flash Tweening?

Tweening comes from the words "in between".

With Tweening you can go from one keyframe to another and specify changes in the animation and let the Flash program create the frames in between.

 124 views

59⟩ How to embed Flash in HTML?

After creating a Flash movie you choose File > Save As from the top menu to save your movie. Save the file as "YourFlahFileName.fla".

To embed the Flash movie you just made into an HTML page, you should go back to your Flash program and do the following steps:

Step 1

Choose File > Open. Open a Flash movie you have created.

Step 2

Choose File > Export Movie.

Step 3

Name the file "YourFlahFileName.swf". Choose the location where the file is to be stored (in your Web folder). Click OK.

Step 4

Open the HTML page where you want to insert your Flash movie. Insert this code:

<object width="550" height="400">

<param name="movie" value="YourFlahFileName.swf">

<embed src="YourFlahFileName.swf" width="550" height="400">

</embed>

</object>

 117 views