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

Your preferred username that is used when logging in.

Forum user: freebolik

Basic information

Registered Oct 21, 2009
Last login Nov 5, 2009
Forum posts 6
Direct URL http://www.flowplayer.org/forum/users/17369

Latest forum posts

Posts:

Registered:

autoPlayNext doesn`t work(OBJECT/EMBED combination)

Posted: Nov 6, 2009

autoPlayNext property doesn`t work for video content - ignores false value.

The example you can see herehttp://freebolik.org.ua/#p3

Posts:

Registered:

Scaling after,before fullscreen mode(OBJECT/EMBED combination)

Posted: Nov 5, 2009

It`s working... but only when player sets with javascript. (
I`v builded control,pseudostreaming and tube scrin into the player.
Put player into the site as OBJECT/EMBED combination.

There are scalingfitting bug:
1) when i set exactly the same width and height as in the clip - wrong scaling of the image happens, after going inout fullscreen - scaling - the trouble worsen.

2) setting +30px for height - the player will draw clip fitting into the screen without controlBar height considering, after going in,out fullscreen - scaling - fixies.

I`v put the example herehttp://freebolik.org.ua/

Posts:

Registered:

» » scaling after fullscreen mode

Posted: Nov 3, 2009

so, i should put height = videoHeight + controlBarHeight(30px) and scaling = fit - only that way i`ll see optimum.
works.
ths.

Posts:

Registered:

scaling after fullscreen mode

Posted: Nov 3, 2009

When the player loads it`s scaling to the height of the whole player screen(without height of the control panel - control floats under the screen and cuts some video content), then after switching into/from fullscreen mode player scales screen with control player height considering. The result of such manipulation is awful: the video screen scaling height = height - controlPanelHeight, so scaling will be none proportional.

Posts:

Registered:

Use relative path for the image file in PlayButtonOverlayView

Posted: Oct 28, 2009


PlayButtonOverlayView.onLoad{
...
   loadImage(_play.url);
...
}
It`ll be wonderfull to use relative path for the image file, of course, only for the commercial version of the player.
(take path from main swf file path, for example.)

Posts:

Registered:

Something like removeFromPanel to FlowplayerBase

Posted: Oct 26, 2009

--492-494 in FlowplayerBase.as
You have there public method addToPanel for the displayObjects adding. Can you add something to remove them from panel such as:

public function removeFromPanel(displayObject:DisplayObject):void {
_panel.removeChild(displayObject);
}

Ps. Ofcourse, I should write flash plugin and than add it to the screen. But, for example, I have task to make floating windows such as show embeded code, some info, links to copy,past(and it`s just start of the great ideas to make my life more complex :-) ) and then hide it and ofcourse it should be one flash file with the smallest amount of embeded code to place it on the other sites and javascript is prohibited. What can I do? addToPanel,RemoveFromPanel - will be the answer for my problem.