MovieClip._visible
625
};
var image_mcl:MovieClipLoader = new MovieClipLoader();
image_mcl.addListener(mclListener);
image_mcl.loadClip("photo1.jpg", image_mc);
function viewImage(target_mc:MovieClip, obj:Object) {
getURL(target_mc._url, "_blank");
}
When you right-click or Control-click the image at runtime, select View Image in Browser from
the context menu to open the image in a browser window.
MovieClip.useHandCursor
Availability
Flash Player 6.
Usage
my_mc
.useHandCursor
:Boolean
Description
Property; a Boolean value that indicates whether the hand cursor (pointing hand) appears when
the mouse rolls over a movie clip. The default value of
useHandCursor
is
true
. If
useHandCursor
is set to
true
, the pointing hand used for buttons is displayed when the mouse
rolls over a button movie clip. If
useHandCursor
is
false
, the arrow pointer is used instead.
You can change the
useHandCursor
property at any time; the modified movie clip immediately
takes on the new cursor behavior. The
useHandCursor
property can be read out of a prototype
object.
Example
The following example sets the
useHandCursor
property for two movie clips called
myMC1_mc
and
myMC2_mc
. The property is set to
true
for one instance, and
false
for the other instance.
Notice how both instances can still receive events.
myMC1_mc.onRelease = traceMC;
myMC2_mc.onRelease = traceMC;
myMC2_mc.useHandCursor = false;
function traceMC() {
trace("you clicked: "+this._name);
}
MovieClip._visible
Availability
Flash Player 4.
Usage
my_mc
._visible
:Boolean
Summary of Contents for FLEX-FLEX ACTIONSCRIPT LANGUAGE
Page 1: ...Flex ActionScript Language Reference...
Page 8: ......
Page 66: ...66 Chapter 2 Creating Custom Classes with ActionScript 2 0...
Page 76: ......
Page 133: ...break 133 See also for for in do while while switch case continue throw try catch finally...
Page 135: ...case 135 See also break default strict equality switch...
Page 146: ...146 Chapter 5 ActionScript Core Language Elements See also break continue while...
Page 808: ...808 Chapter 7 ActionScript for Flash...
Page 810: ...810 Appendix A Deprecated Flash 4 operators...
Page 815: ...Other keys 815 Num Lock 144 186 187 _ 189 191 192 219 220 221 222 Key Key code...
Page 816: ...816 Appendix B Keyboard Keys and Key Code Values...
Page 822: ...822 Index...