You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: degenerate

Basic information

Registered Sep 19, 2008
Last login on sunday
Forum posts 146
Direct URL http://www.flowplayer.org/forum/users/5484

Latest forum posts

Posts:

Registered:

» » Play local file with local flowplayer ?

Posted: on sunday

Thanks for posting your results :)
Always good to have a solution in a thread even if it's not the best.

Posts:

Registered:

» » » » » » Play local file with local flowplayer ?

Posted: 3 weeks and 1 days ago

If you are just "testing" then you should upload your FLV for real, and use the full path to test.

If you are trying to develop some sort of offline browser site (like a CD-Rom Course) then you will need to look more into running a local server.

I know there are products (hopefully freeware) available that let mini HTTP servers run on the local machine just for the purpose of serving HTML onhttp://localhost and nothing else. This will let the security issues go away.

So "what do I need this for?" is the quesion to ask yourself. If it's trivial then just host the FLV somewhere online.

Posts:

Registered:

» DISABLE TABS - URGENT PLEASE

Posted: 4 weeks and 2 days ago

Stop spamming the forums with your topics....
http://flowplayer.org/forum/users/17291

You did not try my recommendation in your other thread yet:
http://flowplayer.org/tools/forum/25/29633

Posts:

Registered:

» fade effect with tabs

Posted: 4 weeks and 3 days ago

I don't even see tabs at that url. Have you changed the page? It looks like you got things fading using other means.

Posts:

Registered:

» Urgent!! Help with tabs..

Posted: 4 weeks and 3 days ago

I'm not sure what apex is, but to have tabs be hidden until you click something (like a link) you can hide all the contents of the tabs container. When you want to show the tabs, you can initialize it and show it.

So put the initalization code into the "onclick" of your link that will show the tabs.

$('ul.tabs').tabs('div.panes > div').show();

And this is using the default HTML config from the minimal setup (without the javascript code part):

http://flowplayer.org/tools/demos/tabs/index.html

Posts:

Registered:

» Problem on jquery.tools en Jquery NyroModal Plugin

Posted: 4 weeks and 6 days ago

I am using jquery.tools and nyroModal together.

I also have issues with the FULL version of jquery tools and nyromodal together. However you can download a customer version of jquerytools that doesn't contain overlay or expose, and they can work good together.

The only difference is, I don't use the nyromodal lightbox, so I have no way of telling you if that is the problem or not.

Posts:

Registered:

» Upgrade of SWF and JS files kills Flowplayer in IE7?

Posted: 5 weeks ago

Double check your configuration to make sure you don't have any trailing commas (,) in your config, like so:


config: {
 this: 'lala',
 that: 1,
 lookhere: 'trailingcomma',   // <--------- here
}
IE tends to break when you have trailing commas like that. The new versions of the files might be breaking while your older versions might not. Post your config if you still have trouble because it could be something else.

Posts:

Registered:

» » i got commercial, problems setting up

Posted: 5 weeks ago

Make sure you are also including flowplayer.js in your head.

<script src="/flowplayer-3.1.4.min.js"></script>

This allows the flowplayer() function to replace the tag with the actual flowplayer once the page loads.

Posts:

Registered:

» gradual background does not work in IE6

Posted: 5 weeks ago

What do you mean 'as title' ?

Can you give a screenshot or link, or clarify your question?

Posts:

Registered:

» StartUP screen (flowplayer)

Posted: 5 weeks ago

This sounds like a hardware/software issue with your flash installation and not flowplayer itself...

Try another browser and another computer, and post back what happens.

If that is not the issue, post your config in < code> tags.

Posts:

Registered:

» » » Play local file with local flowplayer ?

Posted: 5 weeks ago

I stared a bit at your code, and it LOOKS ok.
Try swapping the flv and jpeg, or try only one playlist item (the flv). Get a very basic case working good, then add your other options later.

Using the object tag and embedding the player makes it very hard to read the code, is there a reason you are not just using the regular flashembed method?

Posts:

Registered:

» » » » tools conflicts with jquery-ui

Posted: Oct 16, 2009

This one is pretty basic; I've used it instead of UI because UI is bloated:

http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePicker.html

Posts:

Registered:

» Dropdown

Posted: Oct 16, 2009

Drop-down menu, more commonly called suckerfish menus, do not need jquery to function. They have been around for years using plain old CSS and HTML.

Plus, you can mimick drop-down menus using tooltips if you really want to.

Here is a good article on suckerfish, which references the original article that fueled everyone's understanding from A List Apart:
http://htmldog.com/articles/suckerfish/dropdowns/

And someone made a jquery + css drop down menu in this example:
http://designreviver.com/tutorials/jquery-css-example-dropdown-menu/

Posts:

Registered:

» Bug in downloaded code vs linking with http:// ???

Posted: Oct 16, 2009

Is the first quote missing from your source file like in your post?

src="

If so, other browser might be "intelligent" and ignore the error while IE6 would cry and screw up.

Posts:

Registered:

» » Making tooltip disappear on click outside tooltip

Posted: Oct 15, 2009

If you want to fiddle more you should check this thread:
http://flowplayer.org/tools/forum/30/28069

Looks like onbeforehide might we what you want, and Tero is adding it to a development version which you can download.