Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change visibility programmatically

Status
Not open for further replies.

zippo1

Programmer
Joined
Jan 16, 2003
Messages
1
Location
US
I need to be able to make a blue dot change to invisible at some frame. I have tried using a symbol named BD_D12, with type=movie clip (I've also tried type=button), but the following code doesn't seem to work:

SetProperty("BD_D12",_visible,"false")

I have tried putting this SetProperty action in several different frames, and cannot seem to get the _visible to turn off. Suggestions?
 
Try
Code:
instanceName._visible = 0;
frozenpeas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top