To edit a movie from Dreamweaver, you first locate the source ____ file to open it in Flash.
A. FLA
B. SWF
C. SWA
D. FLS
Answer: A
Computer Science & Information Technology
You might also like to view...
Which of the following statements deletes the first node of a linear linked list that has 10 nodes?
a) head.setNext(curr.getNext()); b) prev.setNext(curr.getNext()); c) head = head.getNext(); d) head = null;
Computer Science & Information Technology
Which of the following statements formats the contents of the txtSalesTax control with a percent sign and two digits to the right of the decimal?
A. txtSalesTax.Text = Format(txtSalesTax, "Percent") B. txtSalesTax.Text = Format(txtSalesTax, "Fixed") C. txtSalesTax.Text = Format(txtSalesTax.Text, "Percent") D. txtSalesTax.Text = Format("Percent", txtSalesTax.Text)
Computer Science & Information Technology