> Has Macromedia gotten around to adding a movieclip property that is
> an array of all the labels in the movieclip?  Much like the LabelList
> property in Director?

No, and not that I know of, however, if you were to define labels
dynamically and circumvent the traditional way of frame labeling, you could
accomplish what you're looking to do.

something like

MovieClip.prototype.frameLabels;

MovieClip.prototype.addFrameLabel = function(label:String, frame:Number){
if(this.frameLabels == undefined) frameLabels = {};
frameLabels[label] = frame;
}

MovieClip.prototype.gotoAndPlayLabel = function(value:String){
this.gotoAndPlay(frameLabels[value]);
}

But yea, Flash 8 man, you should definitely get on that.

M.

On 4/11/06, Info <[EMAIL PROTECTED]> wrote:
>
> A quick question before taking the plunge.
>
> Has Macromedia gotten around to adding a movieclip property that is
> an array of all the labels in the movieclip?  Much like the LabelList
> property in Director?
>
> If not, has anyone been able to replicate this
> functionality?  Meaning, is it even possible to fake it without
> having to make an array, containing the frames and their labels, by hand.
>
> Thanks in advance,
>
> Fred
>
> _______________________________________________
> 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