Day: June 2, 2016

Adobe 9A0-602 Actual Test,Easily To Pass Adobe 9A0-602 Guide Provider Is Your Best ChoiceAdobe 9A0-602 Actual Test,Easily To Pass Adobe 9A0-602 Guide Provider Is Your Best Choice

Flydumps provides guarantee of Adobe 9A0-602 exam because Flydumps is an authenticated IT certifications site and the high class of the products are developed due to extensive hiring of the experts staff.Adobe 9A0-602 study guide is updated with regular basis and the answers are rechecked of every exam.What’s more,you can download the free demos in PDF file,it would be a great help for your exam.All the dumps are updated and cover every aspect of the examination

QUESTION 30
What method of the Color object is used to change the Alpha property of a movie clip with ActionScript?
A. _alpha
B. setProperty
C. setRGB
D. setTransform

Correct Answer: D QUESTION 31
What is the valid syntax to set a property named “id” for an object defined below? (Choose TWO) var myObject:Object = new Object();
A. var myObject.id:String = “myString”;
B. myObject[id] = “myString”;
C. myObject.id = “myString”;
D. var id:String = myObject[“myString”];
E. myObject.id.string = “myString”;
F. myObject[“id”] = “myString”;
G. myObject(id) = “myString”;

Correct Answer: CF
QUESTION 32
What is true of the relationship between a subclass and a superclass? A subclass
A. is a simplified interface for a complex superclass.
B. does not have a constructor and a superclass has multiple constructors.
C. receives the properties and methods from a superclass.
D. is a class with only properties while a superclass is a class with both properties and methods.

Correct Answer: C
QUESTION 33
What native object allows two separate Flash movies to communicate with each other?
A. SharedConnection
B. LocalConnection
C. LocalObject
D. SharedObject

Correct Answer: B
QUESTION 34
What are examples of absolute target paths? (Choose TWO)
A. mcCircle
B. _level0.mcCircle
C. this._parent.mcCircle
D. _root.mcCircle
E. this.mcCircle

Correct Answer: BD
QUESTION 35
Code on the main Timeline of a movie:
stop_btn.onRelease = function() {
this.stop();
stop();
}
What code will halt the movie on the main Timeline when the button is clicked?

A. stop()
B. both this.stop() and stop()
C. neither this.stop() nor stop()
D. this.stop()
Correct Answer: A QUESTION 36
When using the loadVars() object, the Flash Player is restricted to loading variables that
A. use the same Middleware.
B. have the same target.
C. have ASP or SWF suffix.
D. are from the same domain.

Correct Answer: D
QUESTION 37
What defines a function that returns no value?
A. function writeMessage:Null (sMessage) { tMessageField.text = sMessage; }
B. function writeMessage(sMessage):Void { tMessageField.text = sMessage; }
C. function writeMessage:Void (sMessage) { tMessageField.text = sMessage; }
D. function writeMessage(sMessage):Null { tMessageField.text = sMessage; }

Correct Answer: B
QUESTION 38
What is the value of myResult?
var my_array:Array = new Array(‘one’,’two’,’three’,’four’); myResult = my_array[2];

A. one
B. two
C. four
D. three
Correct Answer: D
QUESTION 39
What item can be added to the Flash Player’s context menu?
A. About
B. Settings
C. Download
D. Flash Player

Correct Answer: C
QUESTION 40
When can Flash Player 7 access data served from a different domain than the domain serving the SWF file?
A. anytime the System.security.allowDomain() method is used
B. only when an HTTPS connection is used
C. when a cross-domain policy file is used that specifies the SWFs originating server
D. never

Correct Answer: C
QUESTION 41
What is used to create frame rate independent script-based animations?
A. while
B. setInterval
C. onEnterFrame
D. gotoAndPlay

Correct Answer: B
QUESTION 42
What best defines the debuggers Watch list?
A. list of variables you mark to view in a separate pane
B. list of variables that the debugger determines do not match the declared type for that variable
C. undefined/problem variables
D. series of time increments between breakpoints

Correct Answer: A
QUESTION 43
What property of the TextField class is used to define the text in a text field?
A. myTextField.variable
B. myTextField.text
C. myTextField.txt
D. text boxes cannot have instance names

Correct Answer: B
QUESTION 44
Five movie clips are placed on the main Timeline of a movie, each with an onMouseDown event handler. When the movie plays and the Stage is clicked, which of the five movie clips onMouseDown event handlers will be invoked?
A. movie clip on the topmost layer in the timeline
B. all movie clips under the mouse pointer at the time of the click
C. all of the movie clips
D. only the topmost movie clip under the mouse pointer at the time of the click

Correct Answer: C
QUESTION 45
Onstage there is one movie clip with an instance name “myClip” and one button instance (not a
component) with an instance name “myButton”. The “myButton” button has the following coding.
on(press) { this._alpha=10; }
When testing the movie, what happens when the user presses the button?

A. button turns to 10% alpha
B. button and the clip turn to 10% alpha
C. nothing happens because no object is addressed
D. nothing happens because there’s a script error
Correct Answer: A QUESTION 46
What statement generates an error that can be handled by a finally{} code block?
A. catch
B. trace
C. break
D. throw

Correct Answer: D
QUESTION 47
What is the value of “myValue”? var myValue = Math.ceil(54.22);
A. 54.2
B. 54
C. 54.3
D. 55

Correct Answer: D
QUESTION 48
If the local date is Sunday, June 2, 2003 and the lines of ActionScript are executed, what is the value of
myDay?
var my_date:Date = new Date();
var myDay:Number = my_date.getDay();

A. 1
B. Sunday
C. 0
D. 2
E. Sun

Correct Answer: C
QUESTION 49
What is added to the Actions panel to include ActionScript in an external file named “actionlib.as”?
A. #include “actionlib.as”;
B. #include actionlib.as;
C. #include(“actionlib.as”)
D. include(“actionlib.as”);
E. #include “actionlib.as”

Correct Answer: E
QUESTION 50
When playing from a projector, what sends the name and value of the variable “username” using the
POST method?
username = “fred”;

A. getURL (“http://localhost/flashtest.asp?username=” + username, “_blank”);
B. getURL (“http://localhost/flashtest.asp”, “_blank”, “POST”);
C. getURL (“http://localhost/flashtest.asp”, “_blank”, “GET”);
D. Flash MX 2004 is unable to POST from a projector.
Correct Answer: D QUESTION 51
What ActionScript error will occur for the code below? function snap {
k = 42 % 0;
}

A. % is not a valid operator
B. function declarations missing parenthesis
C. function must return a value
D. there is no exception processing for a division by zero error

Correct Answer: B QUESTION 52
How many interfaces can a single class implement?
A. 2
B. 0
C. 1
D. no limit

Correct Answer: D QUESTION 53
What type of animation is NOT available for a shape until it is converted into a symbol?
A. frame-by-frame animation
B. shape tweening
C. onion skinning
D. motion tweening

Correct Answer: D QUESTION 54
What is true when using the duplicate Movie Clip() method?
A. duplicated movie clip can have a different parent than the source movie clip
B. movie clip that is at a depth of 4 will appear to be in front (or on top of) a movie clip that has a depth of 7
C. two movie clips can exist at the same depth and have the same parent provided they have unique instance names
D. _visible property of a movie clip is set to true upon duplication

Correct Answer: D QUESTION 55
What type of object does the setDataProvider() method of the ComboBox component accept?
A. MovieClip object
B. TextField object
C. Object object
D. Array object

Correct Answer: D QUESTION 56
What code creates an object named “person” with the two properties “name” and “age”?
A. person = new Object(name=”fred”, age=24);
B. person = new Array(name:”fred”,age:24);
C. person = {name:”fred”,age:24};
D. person = (name=”fred”,age=24);

Correct Answer: C
QUESTION 57
What shows a valid data provider assigned to a List component instance named “clProducts”?
A. clProducts.dataProvider = {label: “Flash MX 2004”, data: “flash”};
B. clProducts.dataProvider = [label: “Flash MX 2004”, data: “flash”];
C. clProducts.dataProvider = {[label: “Flash MX 2004”, data: “flash”]};
D. clProducts.dataProvider = [{label: “Flash MX 2004”, data: “flash”}];

Correct Answer: D
QUESTION 58
What assigns an array of three elements to the variable myList?
A. myList = “a,b,c”.split(“,”);
B. myList = [“a,b,c”];
C. myList = new Array(“a,b,c,”);
D. myList = “a,b,c”;

Correct Answer: A
QUESTION 59
What does Flash Remoting use to communicate with the Flash client?
A. WSDL
B. XHTML
C. SOAP
D. AMF

Correct Answer: D
QUESTION 60
What changes are represented by DeltaPackets?
A. DataSets
B. SharedObjects
C. RecordSets
D. DataHolders

Correct Answer: A
QUESTION 61
What is the value of x?
function doJoin (a, b) {
return a + b;
}
x = doJoin(5, doJoin(3, 2));

A. 5
B. “return a + b”
C. “doJoin(5, doJoin(3, 2))”
D. 10

Correct Answer: D
QUESTION 62
What file formats can be loaded into a Flash MX 2004 movie dynamically at runtime? (Choose TWO)
A. JPG
B. GIF
C. MP3
D. FLA
E. BMP

Correct Answer: AC
QUESTION 63
What ActionScript commands allow sending data out of a Flash application to a server-side application? (Choose TWO)
A. loadData
B. onSend
C. getURL
D. onLoad
E. loadMovie

Correct Answer: CE
QUESTION 64
Where are variables that are loaded via a LoadVars object referenced?
A. within an array
B. in properties of the LoadVars object where they are loaded
C. directly into a TextField object
D. on the timeline where they are loaded

Correct Answer: B
QUESTION 65
What is the most efficient method to remove trace statements from compiled code?
A. manually delete trace statements
B. comment out trace statements
C. remove only the contents of the trace statements but leave the trace function call
D. select “Omit trace actions” from the publish dialog box

Correct Answer: D
QUESTION 66
What is a valid property of the new Flash MX 2004 Error class that contains information about an error that occurred within a script. (Choose TWO)
A. Error.number
B. Error.value
C. Error.message
D. Error.output
E. Error.name
Correct Answer: CE QUESTION 67
What is the main use of the TextSnapshot class?
A. Captures the dynamic text used in a movie clip for export to a screen reader.
B. Returns text measurement information (width, height, kerning, etc.) for specified text strings within a movie clip.
C. Outputs a list of the fonts used within the text fields of a movie clip.
D. Allows static text in a movie clip.

Correct Answer: D QUESTION 68
After a ScrollPane component instance completes loading external content (SWF or JPG), what event does it dispatch to its listener objects?
A. loaded
B. success
C. complete
D. finished

Correct Answer: C QUESTION 69
What code is inserted on the first frame of a Flash document to make sure that _root references work properly when the movie is loaded into a parent movie?
A. this._lockroot = true;
B. _root = this;
C. this.enabled = true;
D. this.rootlocked = true;

Correct Answer: A QUESTION 70
Where must ActionScript 2 classes be located?
A. frame 1 of _root
B. external files
C. top layer of timeline
D. components

Correct Answer: B

Adobe 9A0-602 tests containing questions that cover all sides of tested subjects that help our members to be prepared and keep high level of professionalism.The main purpose of Adobe 9A0-602 exam is to provide high quality test that can secure and verify knowledge, give overview of question types and complexity that can be represented on real exam certification

Adobe 9A0-502 Practice Exam,Helpful Adobe 9A0-502 Q&A On Our StoreAdobe 9A0-502 Practice Exam,Helpful Adobe 9A0-502 Q&A On Our Store

Are you struggling for the Adobe 9A0-502 exam? Good news,Flydumps IT technical experts have collected and certified 445 questions and answers which are updated to cover the knowledge points and enhance candidates’abilities.With Adobe 9A0-50 preparation tests you can pass the exam easily and go further on Microsoft career path.

QUESTION 11
What is a benefit of using the Trace Bitmap to convert simple bitmap files to vector art?
A. smaller file sizes
B. larger blocks of color are easier to edit
C. vector art can be converted to symbols
D. vector art is reusable and will not add file size when it is copied and pasted

Correct Answer: A
QUESTION 12
What Color Swatches option will always display web-safe colors?
A. Default
B. Web 216
C. Web 256
D. Web Custom

Correct Answer: B
QUESTION 13
What are correct statements concerning text fields? (Choose TWO)
A. Embedded font outlines are shared by text fields using the same font.
B. Font outlines for input text fields are embedded in the SWF file by default.
C. Font outlines for static text fields are embedded in the SWF file by default.
D. Font outlines for dynamic text fields are embedded in the SWF file by default.
E. Individual font outlines are embedded into the SWF file for each text field in the FLA file.

Correct Answer: AC
QUESTION 14
How can a text field display a font that is NOT on a client computer? (Choose TWO)
A. include the font in a bitmap
B. set Font._global = fontType;
C. set the text field to Static behavior
D. add the font in the Flash MX 04 Preferences panel
E. use a dynamic text field and select the character option

Correct Answer: CE
QUESTION 15
What color option from the Property inspector should be selected to apply tint and alpha simultaneously to a symbol?
A. Expert
B. Advanced
C. Brightness
D. Tint / Alpha
Correct Answer: B
QUESTION 16
What is the default theme for version 2 components?
A. Ice Theme
B. Halo Theme
C. Sample Theme
D. FlashDefault Theme

Correct Answer: B
QUESTION 17
How is a new symbol created in the Library? (Choose TWO)
A. Select Insert > New Symbol
B. Select Modify > Add New Symbol
C. Select Insert > Timeline > New Symbol
D. Click the New Symbol button on the Library panel
E. Right or control-click on the Stage, and then choose New Symbol from the context menu

Correct Answer: AD
QUESTION 18
What are Themes in Flash MX 2004?
A. collections of common sounds libraries for composing soundtracks
B. collections of templates for creating multi-purpose FLA documents
C. collections of styles and skins for customizing version 2 components
D. collection of commands for customizing the Flash IDE (Integrated Development Environment)

Correct Answer: C
QUESTION 19
What is the file extension for swatches saved in Macromedia Flash Color Swatches panel?
A. CLR
B. ACO
C. CFM
D. XML

Correct Answer: A
QUESTION 20
What fonts, if installed, are more likely to be selected from the local system by the Flash Player to display during a playback of a SWF file containing text using the “_sans” device font?
A. Helvetica, Arial, Verdana
B. Georgia, Garamond, Arial
C. Courier, Helvetica, Verdana
D. Times New Roman, Arial, Helvetica
E. Times New Roman, Courier, Verdana
Correct Answer: A
QUESTION 21
What text property CANNOT be designated when a text field is set to Dynamic Text?
A. Font Size
B. Justification
C. Line Spacing
D. Character Spacing
Correct Answer: D QUESTION 22
Embedded fonts
A. decrease file size.
B. use HTML formatting.
C. are included within a SWF.
D. rely on fonts installed on a user’s system.

Correct Answer: C
QUESTION 23
What is the hit frame of a Button symbol?
A. defines the clickable area of a button
B. only matters when exporting to Flash 4
C. displays when a user left-clicks on a button
D. contains sounds played when a user left-clicks on a button

Correct Answer: A
QUESTION 24
What happens when you double-click the icon of a symbol in the library?
A. Macromedia Flash switches to Symbol Editing mode.
B. Macromedia Flash displays the Symbol Properties window.
C. Macromedia Flash deletes the current layers in the timeline.
D. Macromedia Flash places an instance of the symbol on the Stage.

Correct Answer: A
QUESTION 25
What is the most highly processor intensive animation technique?
A. alpha effects
B. motion tween
C. onion skinning
D. brightness effects
Correct Answer: A
QUESTION 26
Name the two types of graphs available when using the Bandwidth Profiler? (Choose TWO)
A. Bit Rate Graph
B. Byte Size Graph
C. Streaming Graph
D. Motion Frame Graph
E. Frame by Frame Graph
Correct Answer: CE
QUESTION 27
What does the Sound object allow? (Choose TWO)
A. control the volume of a sound
B. delete portions of a sound clip
C. alter the sampling rate of a sound
D. set the left/right balance of a sound

Correct Answer: AD QUESTION 28
What Font option will result in the smallest exported file size?
A. Arial
B. _sans
C. _verdana
D. Helvetica

Correct Answer: B QUESTION 29
What is a Panel Set used for?
A. storing a user interface layout for sharing and later use
B. setting the resolution of Copy and Paste operations involving bitmaps
C. customizing Macromedia Flash options and activating certain features
D. retrieving additional support information from Macromedia Answers database

Correct Answer: A QUESTION 30
What does the “Open as Library” menu allow?
A. convert a symbol into a library item
B. open the library of current document
C. open libraries from other graphic programs
D. open libraries from other Macromedia Flash Files

Correct Answer: D QUESTION 31
What will adding a preloader to your movie do?
A. allows the movie to playback faster
B. asks user for a password to view the movie
C. allows the movie to be saved locally before playback
D. prevents the movie from playing until a predetermined amount of frames are loaded

Correct Answer: D QUESTION 32
What is the purpose of the “Protect from Import” option in the Publish Settings dialog box?
A. prevents a SWF file from loading external file
B. prevents other developers from opening a FLA file
C. prevents other developers from decompiling a SWF file
D. prevents other developers from importing a FLA file into another FLA file

Correct Answer: C QUESTION 33
How is declining image quality prevented when publishing to a SWF if bitmap images are optimized prior to importing them into Flash?
A. Re-import the bitmaps in an uncompressed format.
B. Do nothing. Bitmaps aren’t compressed when the SWF is published.
C. Convert bitmaps to symbols so that they are not compressed by Flash.
D. In Publish Settings, under the Flash Tab, set the JPEG Quality slider to 100.

Correct Answer: D
QUESTION 34
What are ways to optimize animations to reduce processor usage? (Choose TWO)
A. use embedded font families
B. remove unused symbols from the library
C. remove unused frames after the end of a tween
D. use tweened animations instead of series of keyframes

Correct Answer: CD
QUESTION 35
Why is generating a Size report useful?
A. manages the print size of a document when using the PrintJob class
B. identify items which are contributing to the growth in size of a SWF file
C. lists width and height of each symbol instance placed on the main Stage
D. controls the bitmap compression when exporting a document as image

Correct Answer: B
QUESTION 36
What should be kept to a minimum in any Macromedia Flash file in order to enhance playback optimization? (Choose TWO)
A. Layers
B. Gradients
C. Device Fonts
D. Graphic symbols
E. Alpha Transparency
Correct Answer: BE
QUESTION 37
What statement is NOT correct?
A. Flash Player 7 is free to download
B. Flash Player 7 supports ActionScript 1.0
C. Flash Player 7 supports ActionScript 2.0
D. Flash Player 7 supports embedded and streaming sound
E. Flash Player 7 supports embedded video, but not streaming video

Correct Answer: E
QUESTION 38
An instance of the “Logo” MovieClip symbol is placed on the main Timeline. The instance is given the name l1. What is the correct target path?
A. _root.l1
B. _logo.l1
C. _root.logo
D. _library.logo.l1

Correct Answer: A
QUESTION 39
What is used to distribute selected objects so that their centers or edges are evenly spaced?
A. Edit menu
B. Info panel
C. Alignment panel
D. Properties panel
E. Transform panel

Correct Answer: C
QUESTION 40
When is it advisable to select the Alias Text feature?
A. using static text
B. using smaller text sizes
C. end user has an older version of the player
D. text is being motion tweened across the stage
E. using a dynamic scrollbar that calls text from an external source

Correct Answer: B

Acquiring Adobe 9A0-502 certifications are becoming a huge task in the field of I.T. More over these exams like Adobe 9A0-502  exam are now continuously updating and accepting this challenge is itself a task.This Adobe 9A0-502 practice test is an important part of Microsoft certifications and at Adobe 9A0-502 certification Flydumps we have the resources to prepare you for this.The Adobe 9A0-502 exam is essential and core part of Adobe 9A0-502 certifications and once you clear the exam you will be able to solve the real time problems yourself.

Adobe 9A0-311 Dump,High Quality Adobe 9A0-311 Exam Questions Vce With Accurate AnswersAdobe 9A0-311 Dump,High Quality Adobe 9A0-311 Exam Questions Vce With Accurate Answers

Flydumps is the best place for preparing IT Certifications as we are providing latest and guaranteed questions for all certifications.We offer you the ultimate preparation resource of Adobe 9A0-311 exam question. Wondering what could be this effective? It is our training material which serves as a guide to achieving your dream as a certified professional.

QUESTION 11
What are the three main ways of presenting video using Flash?
A. embedded, progressive, filtered
B. embedded, On2 VP6, streaming
C. embedded, progressive, streaming
D. embedded, progressive, stand-alone
E. embedded, progressive, Soresson Spark

Correct Answer: C
QUESTION 12
How is declining image quality prevented when publishing to a SWF, if bitmap images are optimized prior to importing them into Flash?
A. Re-import the bitmaps in an uncompressed format.
B. Do nothing. Bitmaps aren’t compressed when the SWF is published.
C. Convert bitmaps to symbols so that they are not compressed by Flash.
D. In Publish Settings, under the Flash Tab, set the JPEG Quality slider to 100.

Correct Answer: D
QUESTION 13
What should be kept to a minimum in any Flash file in order to enhance playback optimization? (Choose TWO)
A. Layers
B. Gradients
C. Device Fonts
D. Graphic symbols
E. Alpha Transparency

Correct Answer: BE
QUESTION 14
What are correct statements concerning text fields? (Choose TWO)
A. Embedded font outlines are shared by text fields using the same font.
B. Font outlines for input text fields are embedded in the SWF file by default.
C. Font outlines for static text fields are embedded in the SWF file by default.
D. Font outlines for dynamic text fields are embedded in the SWF file by default.
E. Individual font outlines are embedded into the SWF file for each text field in the FLA file.
Correct Answer: AC
QUESTION 15
What Flash elements can be assigned instance names? (Choose THREE)
A. Layers
B. Frames
C. Buttons
D. Tweens
E. Text Boxes
F. MovieClips
Correct Answer: CEF
QUESTION 16
What method loads external JPG images into a MovieClip instance?
A. getURL();
B. loadMovie();
C. loadImage();
D. loadMovieNum();

Correct Answer: B
QUESTION 17
What type of graphic formats are calculated mathematically and have the ability to scale without losing their quality?
A. GIF
B. JPEG
C. Vector
D. Bitmap
E. Scanned

Correct Answer: C
QUESTION 18
How is the Object Drawing Mode used?
A. merges drawn shapes when they are overlapped
B. centers drawn objects in the authoring environment
C. draws shapes and automatically converting them into graphic symbols
D. draws shapes as separate objects that do not automatically merge together when overlaid

Correct Answer: D
QUESTION 19
When importing a FreeHand or Illustrator file that contains a gradient fill with more than eight colors, what is used to simulate the appearance of a gradient fill?
A. Target Path
B. Radial Path
C. Clipping Path
D. Gradient Path
Correct Answer: C
QUESTION 20
What must be true in order to enable bitmap caching on a movie clip symbol? (Choose TWO)
A. complex vector artwork, nested animation, and its position changes in time
B. complex vector artwork, no nested animation, and its position changes in time
C. complex vector artwork, nested animation, and its position does not change in time
D. complex vector artwork, nested animation, and it is larger than 2880 pixels in width
E. complex vector artwork, no nested animation, and its position does not change in time

Correct Answer: BE
QUESTION 21
What method of the TextField.StyleSheet class is used to add a new style to a style sheet object?
A. addStyle();
B. setStyle();
C. setNewCSS();
D. addStyleSheet();

Correct Answer: B QUESTION 22
What is the default theme for version 2 components?
A. Ice Theme
B. Halo Theme
C. Sample Theme
D. FlashDefault Theme

Correct Answer: B QUESTION 23
What does selecting the Render Text as HTML button on the Property inspector with a dynamic text field selected do?
A. improves SWF performance
B. converts the displayed text into HTML tagged text
C. enables the text field to load HTML files at runtime
D. enables the text field to render certain HTML tags including <A>, <B>, and <FONT>

Correct Answer: D QUESTION 24
When two path segments meet, what is NOT a join option?
A. Miter
B. Bevel
C. Square
D. Round

Correct Answer: C QUESTION 25
What does an empty or white circle signify on a frame in the timeline?
A. an action
B. blank keyframe
C. a keyframe with a symbol on it
D. the first frame of an animation

Correct Answer: B QUESTION 26
What are benefits of Flash Remoting? (Choose TWO)
A. automatically parses custom XML
B. provides access to client hard disk
C. accesses server-side methods as if they are local
D. provides access to user Webcams and microphones
E. integrates external data sources directly with Flash UI components

Correct Answer: CE QUESTION 27
How are specific frames designated as printable from the Macromedia Flash Player?
A. assign each frame the label “#p”
B. set Formats in the Publish Settings
C. place an onPrint action on each frame
D. set Page Setup in the Macromedia Flash program

Correct Answer: A
QUESTION 28
What statements are correct about shape tweens? (Choose TWO)
A. Only 1 keyframe is needed.
B. Each keyframe must contain symbols.
C. Each keyframe must not contain symbols.
D. A light blue arrow in the timeline denotes a shape tween.
E. There must be at least 2 keyframes in order to create a shape tween.

Correct Answer: CE
QUESTION 29
What best describes the purpose of setInterval?
A. defines the SWF frame rate dynamically, at runtime
B. repeats calls to a function every set number of milliseconds
C. creates a function that repeats every set number of frames
D. creates a function that executes once at a specified point in the future

Correct Answer: B
QUESTION 30
What is the most highly processor intensive animation technique?
A. alpha effects
B. motion tween
C. onion skinning
D. brightness effects

Correct Answer: A
QUESTION 31
What native object allows a developer to save data to a client computer, assuming the user has given permission?
A. LocalObject
B. LocalCookie
C. SharedObject
D. SharedCookie
Correct Answer: C
QUESTION 32
What does the Sound object allow? (Choose TWO)
A. control the volume of a sound
B. delete portions of a sound clip
C. alter the sampling rate of a sound
D. set the left/right balance of a sound

Correct Answer: AD QUESTION 33
A button instance is named circle_btn. ActionScript is placed on the main Timeline so that when the button is clicked a movie clip instance named rec_mc ‘ s width is changed to 100. What is the code to perform this action?
A. circle_btn.onRelease = function() { this.width=100; }
B. circle_btn.onRelease { rec_mc._width=100; }
C. circle_btn.onRelease = function { rec_mc._width=100; }
D. circle_btn.onRelease = function() { rec_mc._width=100; }

Correct Answer: D QUESTION 34
What correctly defines a getter method that retrieves a property named “count”?
A. function count():Number { return _nCount;}
B. function getCount():Number { return _nCount;}
C. function get count():Number { return _nCount; }
D. function getter count():Number { return _nCount;}

Correct Answer: C QUESTION 35
What defines a class named “Car” that receives additional methods and properties from a superclass named “Vehicle”?
A. class Car uses Vehicle {}
B. class Car inherits Vehicle {}
C. class Car extends Vehicle {}
D. class Car derives Vehicle {}

Correct Answer: C QUESTION 36
What transition is NOT one of the default types available via the Tween or TransitionManager Classes?
A. Fade
B. Wipe
C. Zoom
D. Checkerboard

Correct Answer: D QUESTION 37
Where must ActionScript classes be located?
A. components
B. external files
C. frame 1 of _root
D. top layer of timeline

Correct Answer: B QUESTION 38
What is the ActionScript that defines a LoadVars object?
A. LoadVars.new();
B. myLoadVars.new();
C. LoadVars.createNew();
D. var myLoadVars:LoadVars = new LoadVars();

Correct Answer: D
QUESTION 39
Where are variables that are loaded via a LoadVars object referenced?
A. within an array
B. directly into a TextField object
C. on the timeline where they are loaded
D. in properties of the LoadVars object where they are loaded

Correct Answer: D
QUESTION 40
What command removes an interval created with setInterval?
A. deleteInt()
B. clearInterval()
C. interval.cancel()
D. removeInterval()

Correct Answer: B

latest Adobe 9A0-311 exam is one of popular Certification.Many candidates won’t have confidence to get latest Adobe 9A0-311. Now We guaranteed latest Adobe 9A0-311 exam training is available in various formats to best suit your needs and learning style.Whether you are a hands-on tactile learner,visually or even a textbook training veteran,Flydumps has latest Adobe 9A0-311 resources that will enable you to pass your Adobe 9A0-311 test with flying colors.As with Cisco exams,the Adobe 9A0-311 exam is structured to stack or plug into other related courses.The combination of Adobe 9A0-311 courses builds the complete core knowledge base you need to meet your Adobe 9A0-311 certification requirements.