Question:
How do you put more than one video on your Myspace?
anonymous
2007-09-03 09:43:40 UTC
I keep trying to put more than one video but it Deletes the one I already have
Five answers:
Jaygrl2918
2007-09-03 09:48:16 UTC
I would say use youtube and it's embed feature:)
Casey
2007-09-03 09:50:52 UTC
Don't write over the video that's already there.
Bayla
2007-09-03 09:50:47 UTC
blog the video..check out

www.myspace.com/svrnwaiting



I have the same problem..so my profile shows one video and my blogs hold as many as I want
dontouchmedontrustme
2007-09-03 09:48:54 UTC
put it in a different slot I guess..



like....one in the hero section and one in the book section...whatever,,
anonymous
2007-09-03 09:51:16 UTC
You can embed videos into your profile just about anywhere. For example, you can go to the About Me section of your profile and add some html code. Here is a very LONG, but detailed tutorial on how to do this which I have copied here from http://htmlhelp.com/reference/html40/special/object.html...



Syntax ...

Attribute Specifications



* DATA=URI (object data)

* CLASSID=URI (location of implementation)

* ARCHIVE=CDATA (archive files)

* CODEBASE=URI (base URI for CLASSID, DATA, ARCHIVE)

* WIDTH=Length (object width)

* HEIGHT=Length (object height)

* NAME=CDATA (name for form submission)

* USEMAP=URI (client-side image map)

* TYPE=ContentType (content-type of object)

* CODETYPE=ContentType (content-type of code)

* STANDBY=Text (message to show while loading)

* TABINDEX=Number (position in tabbing order)

* DECLARE (do not instantiate object)

* ALIGN=[ top | middle | bottom | left | right ] (object alignment)

* BORDER=Pixels (link border width)

* HSPACE=Pixels (horizontal gutter)

* VSPACE=Pixels (vertical gutter)

* common attributes



Contents PARAM elements followed by block-level elements and/or inline elements

Contained in HEAD, inline elements, block-level elements except PRE



The OBJECT element is used to include objects such as images, audio, videos, Java applets, and Flash animations. OBJECT is intended to replace the more specific IMG and APPLET elements, as well as the proprietary EMBED and BGSOUND elements, though a lack of browser support and severe bugs in supporting browsers make the other elements a better choice in many cases.



OBJECT's DATA attribute specifies the URI of the embedded object. Relative URIs are interpreted with respect to the CODEBASE attribute if it is given.



The WIDTH and HEIGHT attributes define the dimensions of the object. The value may be given in pixels or as a percentage of the parent element's width or height. Many browsers require the WIDTH and HEIGHT attributes for all objects embedded using OBJECT.



The CLASSID attribute may be used to specify an implementation for the object. Java applets, Python applets, and ActiveX controls all provide implementations for the embedded object, and so are specified with the CLASSID attribute, as in the following example:









Yahtzee is my favorite game!









This example also demonstrates the use of alternate content for browsers that cannot display the embedded object. In the example, a Yahtzee game written in Python is used if the browser supports it. A Java version is provided as an alternative for browsers that do not support Python applets. An image is given for browsers that cannot show the Java or Python applets, and text is used as a final alternative if images are not loaded. Note that OBJECT is backwards compatible with pre-HTML 4.0 browsers since they will ignore the tags and render the innermost alternate content (the text in the example).



The preceding example also makes use of the TYPE and CODETYPE attributes to allow browsers to avoid requesting a file that they cannot render. The TYPE attribute specifies the media type of the resource referenced by the DATA attribute while the CODETYPE attribute specifies the media type of the CLASSID data.



The STANDBY attribute is also utilized in the example. This attribute provides short text to display while the object is loading.



The ARCHIVE attribute can specify a space-separated list of archived files (either absolute URIs or URIs relative to the CODEBASE), allowing the browser to download many files with a single connection and hence decreasing the total download time. The standard archive format for Java files is JAR. JAR files can be created with the jar tool included with the Java Development Kit.



The DECLARE attribute makes the object a declaration that is not immediately instantiated. This allows the object to be instantiated from a link, button, or object later in the same document. The ID attribute must be used with declared objects as an identifier for the instantiating element. For example:





You get the dice!



...

Ready to play Yahtzee?





The OBJECT element may contain PARAM elements--before any other content--to provide run-time initialization data. The following example embeds a video, with an audio clip for alternate content, and includes parameters commonly understood by audio/video plug-ins. Note the placement of PARAM elements before alternate content.















Full text of Martin Luther King's "I Have a Dream" speech







The USEMAP attribute can be used with OBJECT to embed a clickable image where different coordinates may have different link destinations. Image maps via the IMG element are better supported, but OBJECT-based image maps allow richer alternatives for browsers not loading images. The USEMAP attribute points to a MAP element whose contents define the links of the various coordinates. The MAP may be included within the OBJECT, in which case its contents are not rendered on image-loading browsers, or it may be given outside the OBJECT element so that its contents are rendered.



The following example gives two images, one an alternate if the first type of image is not supported. The images share a single image map definition, which is included within the OBJECT element. The MAP element contains a menu of links to be rendered on browsers not loading images.



















The TABINDEX attribute specifies a number between 0 and 32767 to indicate the tabbing order of the element. An object with TABINDEX=0 or no TABINDEX attribute will be visited after any elements with a positive TABINDEX. Among positive TABINDEX values, the lower number receives focus first. In the case of a tie, the element appearing first in the HTML document takes precedence.



The ALIGN attribute, deprecated in HTML 4, specifies the alignment of the object. The values top, middle, and bottom specify the object's position with respect to surrounding content on its left and right.



ALIGN=middle aligns the vertical center of the object with the current baseline. To center the object horizontally on the page, place the object in a centered block, e.g.,







The other ALIGN values, left and right, specify a floating object; the object is placed at the left or right margin and content flows around it. To place content below the object, use
as appropriate.



The vertical-align and float properties of Cascading Style Sheets provide more flexible methods of aligning objects.



The BORDER attribute, deprecated in HTML 4, specifies the width in pixels of the object's border. Specifying BORDER=0 will eliminate the border around a linked object in most browsers. Authors should only use BORDER=0 if the object would be clearly recognizable as a link, or as a method of de-emphasizing a link. For example:



Web Authoring Reference



The deprecated HSPACE and VSPACE attributes allow an author to suggest horizontal gutters and vertical gutters, respectively, around the object. The value must be in pixels and applies to both sides of the object. Style sheets provide more flexibility in specifying the space around objects.



The OBJECT element is most useful as a BODY element and can be contained within either inline or block-level elements. The content of the OBJECT should be elements that can be contained within OBJECT's parent element. For example, an A element containing an OBJECT should not have any block-level elements as the content of the OBJECT.

More Information



* OBJECT in W3C HTML 4.01 Specification

* OBJECT in Index DOT Html

* Flash Satay: Embedding Flash While Supporting Standards

* Bye Bye Embed

* OBJECT test suite

This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...