Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6111537
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:38:31+00:00 2026-05-23T14:38:31+00:00

I have a series of links, and I setup both Flowplayer ( http://flowplayer.org )

  • 0

I have a series of links, and I setup both Flowplayer (http://flowplayer.org) and Fancybox (http://fancybox.net/):

<a class="fancybox" href="../public/video1.flv">Click here</a>
<a class="fancybox" href="../public/video2.flv">Click here</a>
<a class="fancybox" href="../public/video3.flv">Click here</a>
...

I want to open these videos in a Fancybox (last version, 1.3 – I read around tutorials for 1.2 that don’t fit my case), one at a time
I’m amazed on how simply it is done with JWPlayer:

<a class="fancybox" href="../jwplayer/player.swf?file=../public/video1.flv">Click here</a>
<a class="fancybox" href="../jwplayer/player.swf?file=../public/video2.flv">Click here</a>
<a class="fancybox" href="../jwplayer/player.swf?file=../public/video3.flv">Click here</a>
...
$('a.fancybox').fancybox({
    'titleShow': false,
    'type': 'swf',
    'width': 480,
    'height': 385,
});

With Flowplayer, this very simple thing feels like hell

I tried:

<a class="fancybox" href="../flowplayer/flowplayer-3.2.5.swf?&amp;config={'clip':'../public/video1.flv'}">Click here</a>
<a class="fancybox" href="../flowplayer/flowplayer-3.2.5.swf?&amp;config={'clip':'../public/video2.flv'}">Click here</a>
<a class="fancybox" href="../flowplayer/flowplayer-3.2.5.swf?&amp;config={'clip':'../public/video3.flv'}">Click here</a>

And, apart from not having the controlbar, I get a flick of “error 301” (maybe because it looks for controlbar .swf but it doesn’t load)
Finding the “embed parameters as querystring” feature in the online documentation is a nightmare (and infact I found this approach on other sites), so I can’t check if I’m right or wrong, and what I can do to avoid error 301

EDIT: I solved the error 301, the original “flowplayer.controls-3.2.3.swf” file should be renamed into “flowplayer.controls.swf” (this is written nowhere, you have to guess it); anyway, it doesn’t help that much since on IE7/8 it badly crashes – the JavaScript console flickers and says that “‘null’ is null or is not an object”

I also tried the jjames solution posted here: http://flowplayer.org/forum/2/17398
But it doesn’t work for me: Firefox crashes and, on IE, Fancybox tells me that ther resource should not be located
And, anyway, seems this wotk for a single file, while I need a general function that receives the href of the links as parameter…
So, this doesn’t make sense to me…

$(".fancybox").fancybox({
    'callbackOnShow': function() { // callbackOnShow doesn't exists anymore on Fancybox 1.3; seems replaced by onComplete, but no luck
        flowplayer("fancy_div", "../flowplayer/flowplayer-3.2.5.swf", {
          clip: {
            baseUrl: 'http://www.myPathToVids',
            url: 'myVideo.flv' // I have not a single video! This should be a parameter taken from href of the clicked link
          }     
        }); 
    }
})

Please, any help?
Thanks in advance, I’m getting mad…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T14:38:31+00:00Added an answer on May 23, 2026 at 2:38 pm

    Try manually launching fancybox and setting setting its content to a flowplayer.
    For instance, given the link:

    <a href="http://pseudo01.hddn.com/vod/demo.flowplayervod/flowplayer-700.flv" 
        class="videoLink">Demo</a>
    

    create a JQuery click function like this:

    $('a.videoLink').click(function(e) {
        e.preventDefault();
    
        var container = $('<div/>');
    
        container.flowplayer(
            'http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf',
            $(this).attr('href')
        );
    
        $.fancybox({
            content: container,
            width: 300, height: 200,
            scrolling: 'no',
            autoDimensions: false
        });
    });
    

    Note that flowplayer by default takes up size of it’s container, so must be given finite dimensions to view it properly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a series of links as so: <a href=http://www.google.com id=link01>Google</a> <a href=http://www.yahoo.com id=link02>Yahoo</a>
I have a series of <div class=clear-both></div> after a series of divs. I want
I have a series of links, each with their own id: <li><a id=about href=#>About</a></li>
I have a series of links: <a href=#>insert into database1</a> <a href=#>insert into database2</a>
I have a series of links with a class bloglink. They have a click
I currently have a series links that open menus containing dropdowns and input textboxes
I have an image, and then a series of links. The hover works as
I have a series of links nested within a div. When one of those
Currently I have a webform that has a series of links. What I'd like
http://sandbox.jinoh.dk/magento/index.php/ I am sadly a noob with this system. I have a series of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.