[Flashcoders] SeekBarHandle ???

2006-05-24 Thread Scott Brantley
Does anyone know how to reference the SeekBarHandle? My problem is that I'm trying to toggle its visibility on and off and I have no way of knowing what its instance name is. ___ Flashcoders@chattyfig.figleaf.com To change your subscription

Re: [Flashcoders] SeekBarHandle ???

2006-05-24 Thread elibol
Real vague post mang, maybe you want to be a bit more descriptive next time =] Look for the instance name using the flash debugger. You can also use a recursive function to trace out all instance names of movieclips. Something like this: function traceClip(mc:MovieClip){ trace(mc._name+':

RE: [Flashcoders] SeekBarHandle ??? -- still problems

2006-05-24 Thread Scott Brantley
mailing list Subject: Re: [Flashcoders] SeekBarHandle ??? Real vague post mang, maybe you want to be a bit more descriptive next time =] Look for the instance name using the flash debugger. You can also use a recursive function to trace out all instance names of movieclips. Something like

RE: [Flashcoders] SeekBarHandle ??? -- still problems

2006-05-24 Thread Scott Brantley
: [Flashcoders] SeekBarHandle ??? -- still problems I'm thinking that you are setting the visibility of the movieclip before it's instantiated. I'm not certain, it's either this or the movieclip is set to be visible at some point after you set it to be invisible. At this point I can only give you an idea