What method is used to make a movie clip draggable? What method is used to stop it from being dragged?
What will be an ideal response?
The startDrag() method makes a movie clip draggable, and the stopDrag()
method stops it from being dragged.
You might also like to view...
here exists a data type Date with member function Increment that increments the current Date object by one. The ++ operator is being overloaded to postincrement an object of type Date. Select the correct implementation:
a. Date Date::operator++( int ) { Date temp = *this; Increment(); return *temp; } b. Date Date::operator++( int ) { Increment(); Date temp = *this; return temp; } c. Date Date::operator++( int ) { Date temp = *this; return this; temp.Increment(); } d. Date Date::operator++( int ) { Date temp = *this; Increment(); return temp; }
An effective résumé should be all of the following except ______ .
A. formatted using multiple fonts and colors B. accurate regarding the details included C. concise while still providing enough information D. easy to read