A new lady on the block...

This is a discussion on "A new lady on the block..." within the Introduce Yourself section. This forum, and the thread "A new lady on the block... are both part of the Community category.



Go Back   Webforumz.com > Community > Introduce Yourself

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 29th, 2006, 00:39
Junior Member
Join Date: Jun 2006
Location: PA
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Smile A new lady on the block...

Just got into web design and have a lot to learn. I am always willing to learn. At the moment I have a lot of projects at hand so please do not be offended when I turn to the forum to get good realiable assistance. Please be mindful if I do something, I would certainly do my best to spread that knowledge.
So from the new lady on the block , have a good night rest.



P.S
I go by the name onome...
Reply With Quote

  #2 (permalink)  
Old Jun 29th, 2006, 01:09
Most Reputable Member
Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 21
Posts: 1,093
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to sypher
Re: A new lady on the block...

Welcome to the forums onome

Do you currently have any websites online?
Reply With Quote
  #3 (permalink)  
Old Jun 29th, 2006, 01:32
Junior Member
Join Date: Jun 2006
Location: PA
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Smile Re: A new lady on the block...

Quote:
Originally Posted by sypher
Welcome to the forums onome
Quote:
Do you currently have any websites online?
Yes, I do. I have two online but am having a problem with one, http://abodeforchildren.org/video.html ,where I have to embed video into the html document. It works fine on my PC but when I asked my friend to check it out for me, it does not play the video on his system. Below is the code I used to embed the video:-

Code: Select all
<OBJECT id='mediaPlayer' width="320" height="285" 
      classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' 
      codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
      standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>
      <param name='fileName' value="http://www.abodeforchildren.org/afc.avi">
      <param name='animationatStart' value='true'>
      <param name='transparentatStart' value='true'>
      <param name='autoStart' value="true">
      <param name='showControls' value="true">
      <param name='loop' value="false">
      <EMBED type='application/x-mplayer2'
        pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
        id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1' 
        bgcolor='darkblue' showcontrols="true" showtracker='-1' 
        showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320" height="285"
        src="http://www.abodeforchildren.org/afc.avi" autostart="true" designtimesp='5311' loop="true">
      </EMBED>
      </OBJECT>
      </td></tr>
      <!-- ...end embedded WindowsMedia file -->
    <!-- begin link to launch external media player... -->
        <tr><td align='center'>
        <a href="http://www.abodeforchildren.org/afc.avi" style='font-size: 85%;' target='_blank'>Launch in external player</a>
        <!-- ...end link to launch external media player... -->
        </td></tr>
      </table>


Please please kindly assist me.
Onome
Reply With Quote
  #4 (permalink)  
Old Jun 29th, 2006, 03:42
Junior Member
Join Date: Jun 2006
Location: Australia
Age: 19
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Re: A new lady on the block...

it's possible their windows media player is to old to support the playing of avi
Reply With Quote
  #5 (permalink)  
Old Jun 29th, 2006, 11:23
Junior Member
Join Date: Jun 2006
Location: PA
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: A new lady on the block...

Quote:
Originally Posted by Duckyl
it's possible their windows media player is to old to support the playing of avi
Okay, even if that so, another friend tried viewing it on Firefox and still cannot see it playing. He has viewed mine cos it's still showing up on my systems.
Is there an error in my code? How can I resolve this problem? Thank you!!!
Reply With Quote
  #6 (permalink)  
Old Jun 29th, 2006, 12:33
Junior Member
Join Date: Jun 2006
Location: Australia
Age: 19
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Re: A new lady on the block...

my previous comment did not have anythign to do with ie r firefox or any other browser...

the code you are using is for windows media player, if your friends are on any other os other than windows xp it's possible the avi codecs are not installed on their computer...


the main program that is used for avi is real player... so possibly you could try this...
change the ID and lass id to these... should fix the problem...
Code: Select all
<OBJECT ID=RVOCX CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">

or you could try one of the following methods, all can just be put in by themselves unfortunately i dont think they have controls... inwhich you may need to add some buttons...
Code: Select all
<img dynsrc="video.avi" />
Code: Select all
<embed src="video.avi" />
Code: Select all
<object data="video.avi" type="video/avi" />

and then there is the actual real player embedding
Code: Select all
<object classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="320" height="285"	id="RVOCX">
<param name="afc.avi" value="http://www.abodeforchildren.org/afc.avi">
<param name="autostart" value="true">
<param name="controls" value="all">
<param name="console" value="video">
<embed type=" audio/x-pn-realaudio-plugin" src="http://www.abodeforchildren.org/afc.avi" width="320" height="285"    autostart="true"    controls="all"    console="video">
</embed>
</object>
Reply With Quote
  #7 (permalink)  
Old Jun 29th, 2006, 12:53
Junior Member
Join Date: Jun 2006
Location: PA
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: A new lady on the block...

Thank you kind sir, would work on it.
Reply With Quote
Reply

« Hello | Hi »
Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sensual lady dab42pat Free Web Site Critique 6 Jul 9th, 2007 21:32
Sensual lady dab42pat Free Web Site Critique 9 Jul 4th, 2007 23:30
Sensual lady dab42pat Free Web Site Critique 11 Jun 23rd, 2007 17:52
Hello from the UK lady sexyemma Introduce Yourself 7 May 10th, 2007 21:33


All times are GMT. The time now is 08:32.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43