So I am unsure if you did actually ever implement the SWFObject 2.x
notation on your pages anywhere. I see the "small" swf at the bottom using
a static embed, but nothing which tries to implement the video player.

Let's assume the Flash player install is all happy.

Below is the equivalent 2.x notation for your 1.x video player. Try pasting
this in a new html file and place it in the same folder as your original
page (to ensure your relative pathing to your flv works) as see how you go.
(Note I am pointing to the google hosted version of SWFObject so you don;t
have to upload any other files to test this)


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml"; lang="en" xml:lang="en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js";></script>
<script type="text/javascript">
var flashvars = {};
flashvars.file =
"../v/Lib/Nature/Surrounding/Fauna/Birds/Hummingbird/100_1107_converted.flv";
var params = {};
params.allowfullscreen = "true";
params.allowscriptaccess = "always";
var attributes = {};
attributes.id = "player";
attributes.name = "player";
swfobject.embedSWF("Player.swf", "preview", "800", "600", "9.0.0", false,
flashvars, params, attributes);
</script>
</head>
<body>
<div id="preview">
alt content goes here
</div>
</body>
</html>


I used the code generator located below to:

http://code.google.com/p/swfobject/wiki/generator

I recommend you use this as it will help ensure all your code is as it
should be.


Let me know how you go with that.


Aran

On Mon, Dec 19, 2011 at 12:59 PM, Sven Littkowski <[email protected]>wrote:

> Hi Aran,
>
> thanks for your answer, well appreciated.
>
> The URL is here:
>
> http://www.jamaica-focus.com/SvenLittkowski/Sven.Littkowski.php5?Launch=Movies.php5?What=../v/Lib/Nature/Surrounding/Fauna/Birds/Hummingbird/100_1107_converted.flv
>
> This website is still under construction, and I am also still
> experimenting with SWFObject 1 and 2. When you open the link I
> provided, you will see two SWFObjects: in big and in the middle of
> your screen the older SWFObject v1 player, and quite invisible and at
> the bottom, quite left side, a black and control-less SWFObject v2
> player, this one now autoplaying some test music but reduced in size
> to 1 px. You might better open the source code by right-clicking on
> the lower frame area.
>
> It is the lower player, which is my concern. It functions now, but it
> does so only by me using one way of implementation (using the Object
> tag). When I tried to use the other method, Flash was never detected
> and i always got to see that "Install Flash" GIF image. Despite that
> Flash was already installed. I tried two times to install it again
> from within the Avant browser (most recent version), two times the
> installation succeeded (Flash v11) but also both times the finished
> installation opened the Firefox browser (my main browser handling
> URLSs) showing me a "Success" message. And also, both times the Avant
> AND all my other browsers (Safari, Opera, Firefox, IE - all latest
> versions) showed me still the "Install Flash" GIF image when trying
> again the SWFObject v2 player.
>
> Both of your URLs (Flash detection pages) detected Flash 11 on my
> system: "WIN 11,1,102,55" and ""11,1,102".
>
> --
> You received this message because you are subscribed to the Google Groups
> "SWFObject" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/swfobject?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SWFObject" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/swfobject?hl=en.

Reply via email to