Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #21  
Old 03-26-2005, 01:30 PM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well as I said it is more complicated in the full functions version, the problem that the link above removed them because of ****** problem, as Yahoo Launch I used iframe to update songs info.
Reply With Quote
  #22  
Old 03-26-2005, 02:25 PM
tnguy3n's Avatar
tnguy3n tnguy3n is offline
 
Join Date: May 2003
Location: U of I, Iowa
Posts: 846
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no, i was talking about current release of vb jukebox on vb.org. yours looks very fine.
Reply With Quote
  #23  
Old 03-27-2005, 08:03 AM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tnguy3n, you are developing a vb3 jukebox if you need any help just call me
Reply With Quote
  #24  
Old 03-27-2005, 03:30 PM
Wordplay Wordplay is offline
 
Join Date: Nov 2001
Location: Dengoku
Posts: 864
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by deathemperor
This can be easily changed via some template edit, even more.
well call me stupid but i seriously wouldn't know how too... if anybody would be willing to help me out here i'd be more then greatful.
Reply With Quote
  #25  
Old 03-27-2005, 10:18 PM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in jukebox templates find something like this:

<object

and look for width= , height= . Change those value to the width and height of the player, if the player appears in the far left top of your screen then once again you need to move it to somewhere else, move what thing ? whatever between <object and </object> tags.

I've never installed this hack so this is just what I think you should. In case you don't know how I can do it for you with an account and a link to your board.
Reply With Quote
  #26  
Old 03-28-2005, 08:43 AM
Wordplay Wordplay is offline
 
Join Date: Nov 2001
Location: Dengoku
Posts: 864
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well that would be this code then:

Code:
<object id="MediaPlayer1" 
width=$viewwidth height=$viewheight
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<param name="URL" value="$playsong">
<embed type="application/x-mplayer2" 
name="MediaPlayer"
width=$viewwidth
height=$viewheight
src="$playsong"
showcontrols="0">
</embed>
</object>
the thing is it is empedded but the videos dont show at all. and i dont even want it to show up on the page, it would be better if it would just open up windows media player itself and then play the video files. can you help me do that?
Reply With Quote
  #27  
Old 03-28-2005, 09:58 AM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it's impossible to force it to open WMP and play the video. when embeded it's just like you open WMP but automatically and in a html page, you can view fullscreen so it's just WMP itself.
Reply With Quote
  #28  
Old 03-28-2005, 11:11 AM
Wordplay Wordplay is offline
 
Join Date: Nov 2001
Location: Dengoku
Posts: 864
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well that sucks for me then, since for whatever reason my videos dont even show up on the page.
Reply With Quote
  #29  
Old 03-28-2005, 02:13 PM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

REPLACE:

HTML Code:
<object id="MediaPlayer1" 
width=$viewwidth height=$viewheight
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<param name="URL" value="$playsong">
<embed type="application/x-mplayer2" 
name="MediaPlayer"
width=$viewwidth
height=$viewheight
src="$playsong"
showcontrols="0">
</embed>
</object>
WITH:

HTML Code:
<OBJECT ID="WMPNET" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" 
type=application/x-oleobject standby="Loading Microsoft Windows Media Player components..." class="grayborder" 
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" height="380" width="320">
<PARAM NAME="UIMode" VALUE="full"><PARAM NAME="AutoStart" VALUE="true">
<PARAM NAME="ShowCaptioning" VALUE="false"><PARAM NAME="filename" VALUE="">
<PARAM NAME="AutoSize" VALUE="true"><PARAM NAME="enableContextMenu" VALUE="false">
<PARAM NAME="volume" VALUE="50"><PARAM NAME="playCount" VALUE="1">
<PARAM name="URL" value="$playsong"><embed pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" type="application/x-mplayer2" src="$playsong" Name="Jukebox" ShowControls="1" AutoStart="true" ShowDisplay="0" ShowStatusBar="1"></embed>
</OBJECT>
let me know if this works
Reply With Quote
  #30  
Old 03-28-2005, 04:29 PM
Wordplay Wordplay is offline
 
Join Date: Nov 2001
Location: Dengoku
Posts: 864
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

damn, thanks alot, looks like it works now, but the media it's trying to load is http://www.correctlink.com/filename.mpg'

it puts that ' at the end of the filename, and therefore cant find the clip.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:38 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04313 seconds
  • Memory Usage 2,257KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (2)bbcode_html
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete