You need to publish Flash movies to a(n) ____ file before you can insert them in Dreamweaver.
A. FLA
B. HTML
C. SWF
D. Both b and c
Answer: C
You might also like to view...
MC The______ attribute indicates the font of an Entry component.
a) type. b) font. c) text. d) None of the above.
Which of the following statements is false?
Consider the statement: ``` throw new ArgumentOutOfRangeException(0); ``` a) For values outside proper ranges, an app can throw an exception of type ArgumentOutOfRangeException (namespace System), which notifies the client code that an invalid argument was passed to the method. b) This throw statement creates a new object of type ArgumentOutOfRangeException. c) The parentheses following the class name indicate a call to the ArgumentOutOfRangeException constructor. d) After the exception object is created, the statement after the throw statement is executed—this is called the resumption model of exception handling.