How do I add an embed player under the chat?

I want to add an embed player under the chatroom. In which file do I add the code?

Quote · 9 Feb 2010

bump

Quote · 10 Feb 2010

Embedding HTML into Flash? I don't see how.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 10 Feb 2010

Embedding HTML into Flash? I don't see how.

No, not into the flash. I want to add it below the flash. Under the chatroom.

Quote · 10 Feb 2010

This is what I want to do

Quote · 10 Feb 2010

You can embed your code in the following file.

modules\boonex\chat\templates\base\page_57.html

Add your embed code inside some div tags after __page_main_code__ Like shown below.

<bx_include_auto:_sub_header.html />
__page_main_code__
<div>Your Embed Code Here</div>
<bx_include_auto:_sub_footer.html />

https://www.deanbassett.com
Quote · 10 Feb 2010

You can embed your code in the following file.

modules\boonex\chat\templates\base\page_57.html

Add your embed code inside some div tags after __page_main_code__ Like shown below.

<bx_include_auto:_sub_header.html />
__page_main_code__
<div>Your Embed Code Here</div>
<bx_include_auto:_sub_footer.html />

Thanks a lot deano

Quote · 10 Feb 2010

hey deano, i added the code in div but it loads it outside the block which contains the chat. Can i add my code to load together with the chat in the __page_main_code__

Look at http://www.dlive-entertainment.com/m/chat/home/

now it loads outside __page_main_code__

Quote · 10 Feb 2010

I provided the simplest solution.

To get it to load inside the chat block itself will be far more complicated. It will most likely require changes to the code that generates the main code content. I will have to look into that. It will not be simple.

As a option you can make the bottom section look like another block with it's own header. So it would kinda be like 2 stacked page blocks similar to other pages that have more than one block.

https://www.deanbassett.com
Quote · 10 Feb 2010

I provided the simplest solution.

To get it to load inside the chat block itself will be far more complicated. It will most likely require changes to the code that generates the main code content. I will have to look into that. It will not be simple.

As a option you can make the bottom section look like another block with it's own header. So it would kinda be like 2 stacked page blocks similar to other pages that have more than one block.

I have no problem with the simple solution but the webplayer floats on top of the member menu and login menu. If i can get it to float under everything, the simple solution is good for me

Quote · 10 Feb 2010

If this is a flash style player, see if there is a parameter in your code that you are inserting that says this:

<param value = 'transparent;>  OR  wmode ='transparent'

If so, try changing the word 'transparent' to 'opaque'

Chris

Nothing to see here
Quote · 10 Feb 2010

If this is a flash style player, see if there is a parameter in your code that you are inserting that says this:

<param value = 'transparent;>  OR  wmode ='transparent'

If so, try changing the word 'transparent' to 'opaque'

Chris

This is the flashplayer code

<object type="application/x-shockwave-flash" width="550" height="180"
data="mysite.com/xspf_player.swf?playlist_url=mysite.com/backingtracks.xspf">
<param name="movie"
value="mysite.com/xspf_player.swf?playlist_url=mysite.com/backingtracks.xspf" />
</object>

Quote · 10 Feb 2010

Zarcon is right. This is a common problem with flash objects. You need to adjust your code to include the flash tranparency options. Try this code.

<object type="application/x-shockwave-flash" width="550" height="180"
data="mysite.com/xspf_player.swf?playlist_url=mysite.com/backingtracks.xspf">
<param name="movie"
value="mysite.com/xspf_player.swf?playlist_url=mysite.com/backingtracks.xspf" />
<param name="wmode" value="transparent" />
</object>

https://www.deanbassett.com
Quote · 10 Feb 2010

It works great. Thanks deano, Zarcom

Quote · 10 Feb 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.