Re: [Flashcoders] FLVPlayback Component - button bar

2006-05-03 Thread Steve Krichten

Hi Eric,

It is unfortunate that the API does not expose these elements.  But here 
is an example Movieclip reference to the play/pause button ..


MovieClip(player).skin_mc.layout_mc.playpause_mc

I think you can figure out the rest based on that, but if not, just let 
me know.


-Steve
___
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


Re: [Flashcoders] FLVPlayback Component - button bar

2006-05-03 Thread eric dolecki

So which is the alpha'd slice-9 mc that lies beneath all the buttons, etc.

I'm guessing player.skin_mc.layout_mc - I'll have to check. Thanks :)

On 5/3/06, Steve Krichten [EMAIL PROTECTED] wrote:


Hi Eric,

It is unfortunate that the API does not expose these elements.  But here
is an example Movieclip reference to the play/pause button ..

MovieClip(player).skin_mc.layout_mc.playpause_mc

I think you can figure out the rest based on that, but if not, just let
me know.

-Steve
___
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


RE: [Flashcoders] FLVPlayback Component - button bar

2006-05-03 Thread Tom Lee
I see some public getter/setters for bufferingBar, backButton,
forwardButton, muteButton, pauseButton, seekBar, etc.  All these extend
MovieClip, so they have _x and _y.  Is that what you're after?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of eric dolecki
Sent: Wednesday, May 03, 2006 9:15 AM
To: Flashcoders mailing list
Subject: [Flashcoders] FLVPlayback Component - button bar

I am now centering smaller FLVs in the main component when needed, however
in doing so sometimes the nav button bar moves up off the bottom area, is
too narrow, etc.

I am looking to move that bar of buttons around... making sure it stays
positioned @ the bottom of the component (I am using the auto-hide), and is
wide enough to span the width of the component.

I can't seem to find a way to reference that mc/mcs to be able to resize
them/position as needed.
___
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


Re: [Flashcoders] FLVPlayback Component - button bar

2006-05-03 Thread eric dolecki

Im actually after the clip that holds all the buttons displayed. So I can
move that around, instead of each button on its own, etc.

Also I need to stretch the semi-transparent clip below all the buttons at
times - or at least set its width and have the buttons lay themselves out
again.

On 5/3/06, Tom Lee [EMAIL PROTECTED] wrote:


I see some public getter/setters for bufferingBar, backButton,
forwardButton, muteButton, pauseButton, seekBar, etc.  All these extend
MovieClip, so they have _x and _y.  Is that what you're after?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of eric
dolecki
Sent: Wednesday, May 03, 2006 9:15 AM
To: Flashcoders mailing list
Subject: [Flashcoders] FLVPlayback Component - button bar

I am now centering smaller FLVs in the main component when needed, however
in doing so sometimes the nav button bar moves up off the bottom area,
is
too narrow, etc.

I am looking to move that bar of buttons around... making sure it stays
positioned @ the bottom of the component (I am using the auto-hide), and
is
wide enough to span the width of the component.

I can't seem to find a way to reference that mc/mcs to be able to resize
them/position as needed.
___
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


___
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


RE: [Flashcoders] FLVPlayback Component - button bar

2006-05-03 Thread Steve Krichten

That would be...
MovieClip(player).skin_mc.layout_mc.bg1_mc


Eric wrote
So which is the alpha'd slice-9 mc that lies beneath all the buttons, 
etc. I'm guessing player.skin_mc.layout_mc - I'll have to check. Thanks :)

___
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


RE: [Flashcoders] FLVPlayback Component - button bar

2006-05-03 Thread Tom Lee
I believe that's all handled by the UIManager (private var _uiMgr), so
you're probably going to have to roll your own solution for that.

The UIManager listens for the resize event of the FLVPlayback and calls the
layoutSkin method when it gets one.  You could override the layoutSkin
method with your own logic.  If you hack the FLVPlayback class and make
_uiMgr public, you could then override _uiMgr.layoutSkin with your own
logic.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of eric dolecki
Sent: Wednesday, May 03, 2006 11:30 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] FLVPlayback Component - button bar

Im actually after the clip that holds all the buttons displayed. So I can
move that around, instead of each button on its own, etc.

Also I need to stretch the semi-transparent clip below all the buttons at
times - or at least set its width and have the buttons lay themselves out
again.

On 5/3/06, Tom Lee [EMAIL PROTECTED] wrote:

 I see some public getter/setters for bufferingBar, backButton,
 forwardButton, muteButton, pauseButton, seekBar, etc.  All these extend
 MovieClip, so they have _x and _y.  Is that what you're after?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of eric
 dolecki
 Sent: Wednesday, May 03, 2006 9:15 AM
 To: Flashcoders mailing list
 Subject: [Flashcoders] FLVPlayback Component - button bar

 I am now centering smaller FLVs in the main component when needed, however
 in doing so sometimes the nav button bar moves up off the bottom area,
 is
 too narrow, etc.

 I am looking to move that bar of buttons around... making sure it stays
 positioned @ the bottom of the component (I am using the auto-hide), and
 is
 wide enough to span the width of the component.

 I can't seem to find a way to reference that mc/mcs to be able to resize
 them/position as needed.
 ___
 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

___
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