rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - masaykh

Pages: 1
1
обнови до последней беты, для начала однако :)

2
RAWR-Designs / Re: embedding WMP
« on: April 04, 2010, 07:57:31 PM »
thx. now everything working fine.

3
Всем здрасте.
Пытаюсь сделать проигрывание мультимедия посредством WMP. именно им, потому что есть у него один полезный параметр BufferingTime , позволяющий указать сколько надо подгрузить для начала звучания \ отображения.
с другими плеерами такое сделать не смог.. дивх глючный..

вообщем.

пытаюсь вставить такое :
Quote
<embed type='application/x-mplayer2' width=500 height=400 BufferingTime='5' src="+file+" autostart="true"></embed>
открыл я terayon_previewbox.js, нашел там
Quote
gEBI(target+"Content").innerHTML = '<object type="application/x-mplayer2" width='+width+' height='+height+'><param name=filename value="'+file+'" /><param name=autostart value=true /></object>';
и изменил на
Quote
gEBI(target+"Content").innerHTML = '<embed type="application/x-mplayer2" width='+width+' height='+height+' src='+file+' autostart=true BufferingTime='5' /></embed>';

но результат грустный получается :
width=undefined height=undefined

как сделать чтобы код результата содержал ширину и высоту?
помогите пожалуйста!

4
Pусский / Re: servehfs.ath.cx
« on: March 31, 2010, 08:41:19 PM »
зашел, посмотрел.. и что?
ну баннеры , ну архивчик..
не интересно)

5
RAWR-Designs / embedding WMP
« on: March 29, 2010, 07:36:09 PM »
Hello everyone.
i have strange problem, i want to make preview box to use code like this:
Code: [Select]
<embed type='application/x-mplayer2' width=500 height=400 BufferingTime='5' src="+file+" autostart="true">
</embed>
so i opened terayon_previewbox.js , found this line
Code: [Select]
gEBI(target+"Content").innerHTML = '<object type="application/x-mplayer2" width='+width+' height='+height+'><param name=filename value="'+file+'" /><param name=autostart value=true /></object>';and changed it to
Code: [Select]
gEBI(target+"Content").innerHTML = '<embed type="application/x-mplayer2" width='+width+' height='+height+' src='+file+' autostart=true BufferingTime='5' /></embed>';
and...player in result code have undefined width and height..
i mean in resulted page when i view it i see :
Code: [Select]
width=undefined height=undefined
anyone can help me to solve this?

Pages: 1