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+': '+mc);
for(var i in mc){
if(mc[i] instanceof MovieClip) arguments.callee(mc[i]);
}
}

M.

On 5/24/06, Scott Brantley <[EMAIL PROTECTED]> wrote:

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 options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to