Reply
Contributor
bsamayoa
Posts: 14
Registered: ‎04-13-2009
0 Kudos
Accepted Solution

Horizontal Playlist 2ndary buttons...

Hey guys,

 

I'm working on a beml template, on the horizontal playlist there is a seconary button that fades in once you're hovering on the button.

 

Is there a way to hide those? I was trying to look into the documentation, but maybe I'm not looking hard enough. 

 

 

Brightcove Team
BC-Todd
Posts: 746
Registered: ‎12-21-2008
0 Kudos

Re: Horizontal Playlist 2ndary buttons...

Not currently, no, sorry. I can file an enhancement so that the buttons can stay in the single state with a BEML attribute setting. Is it just an aesthetic choice -- the double button is not something you care for? Or is there more to it that it would be good for us to understand?
--todd
Brightcove Team
BC-LWhitaker
Posts: 20
Registered: ‎01-23-2009
0 Kudos

Re: Horizontal Playlist 2ndary buttons...

If you just wanted the controls to go away you could set the buttonOffsetY value for the TileList really high so it doesn't display on the canvas:

<TileList id="videoList" width="612" height="135" automaticAdvance="true" selectOnClick="true" rowHeight="135" columnWidth="126" buttonOffsetY="1000" columnGutter="12" numRows="1" useBlur="true">

 

Here is the same template without controls:

 

 

<Runtime>
<Theme name="Deluxe" style="Light">
<Style id="default"><![CDATA[.titleText {fontSize: 12;}.bodyText {fontSize: 11;}.linkText {fontSize: 11;}]]></Style>
</Theme>
<Layout id="application" width="650" height="630" boxType="vbox" gutter="11" hAlign="center">
<VBox padding="10">
<HBox height="70">
<Canvas>
<Label id="videoTitle" x="-2" y="-6" height="24" type="title" size="18" text="{videoPlayer.video.displayName}" truncate="true"/>
<Label id="videoDescription" x="-2" y="14" height="35" size="11" text="{videoPlayer.video.shortDescription}" truncate="true" multiline="true"/>
<Link id="relatedLink" x="-2" y="44" height="18" size="11" text="{videoPlayer.video.linkText}" url="{videoPlayer.video.linkURL}"/>
</Canvas>
<Canvas width="300" height="60">
<Image id="logo" scaleMode="scaleDown" hAlign="right" vAlign="bottom"/>
<ExpandingBanner id="banner"/>
</Canvas>
</HBox>
<VideoPlayer id="videoPlayer" height="400" video="{videoList.selectedItem}"/>
</VBox>
<TileList id="videoList" width="612" height="135" automaticAdvance="true" selectOnClick="true" rowHeight="135" columnWidth="126" buttonOffsetY="1000" columnGutter="12" numRows="1" useBlur="true">
<ListItem boxType="vbox" showBack="false">
<ThumbnailButton height="96" data="{currentItem}" source="{currentItem.thumbnailURL}" imageInset="3"/>
<Spacer height="1"/>
<HBox padding="1">
<TitleLabel text="{currentItem.displayName}" truncate="true" multiline="true"/>
</HBox>
</ListItem>
</TileList>
</Layout>
</Runtime>

 

Since there are now no list controls you will need to write your own and use the API to control it.

 

 

Contributor
bsamayoa
Posts: 14
Registered: ‎04-13-2009
0 Kudos

Re: Horizontal Playlist 2ndary buttons...

Yeah, just aesthetics-wise. I just don't want the double button.

 

Thanks for the prompt response.

 

B