This is a message.

Forum user: sprynmr

Basic information

Registered Feb 10, 2009
Last login Oct 29, 2010
Forum posts 12
Direct URL http://www.flowplayer.org/forum/users/8220

Latest forum posts

Posts:

Registered:

» » 1.2 Circular scroll without "size" parameter

Posted: Oct 29, 2010

Solved here:

http://github.com/sprynmr/jquerytools/commit/7e8ec2f683dfdcdda0d65818ed5decdbb762c4d1

Make the same changes in your file.

Posts:

Registered:

» » Infinitely looping scroller

Posted: Oct 29, 2010

Make these changes in scrollable.js. Adds size back into the mix.

http://github.com/sprynmr/jquerytools/commit/7e8ec2f683dfdcdda0d65818ed5decdbb762c4d1

Posts:

Registered:

Solution here

Posted: Oct 29, 2010

Not sure if anyone is still trying to do this, but I've solved it. My change below allows you to have multiple scrollable items visible in circular fashion:

my html:

    <div class="scrollable">
        <div class="items">
            <div class="item">1</div>
            <div class="item">2</div>
            <div class="item">3</div>
            <div class="item">4</div>
        </div>
    </div>

my css:

.scrollable {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 600px;
}
.scrollable .items {
    position: absolute;
    height: 20000em;
}
.item {
    color: white;
    height: 100px;
    width: 300px;
    background: blue;
    text-align: center;
}

http://screencast.com/t/CgcwIcgU5S

Github changes:http://github.com/sprynmr/jquerytools/commit/7e8ec2f683dfdcdda0d65818ed5decdbb762c4d1

In scrollable.js (v1.2.5) if you add the size config back with a default of 1:

conf: {	
	activeClass: 'active',
	circular: false,
	clonedClass: 'cloned',
	disabledClass: 'disabled',
	easing: 'swing',
	initialIndex: 0,
	item: null,
	items: '.items',
	keyboard: true,
	mousewheel: false,
	next: '.next',   
	prev: '.prev', 
	size: 1,
	speed: 400,
	vertical: false,
	touch: true,
	wheelSpeed: 0
}

and then after the if (conf.circular) change the two clone variable lines to this:


var items = self.getItems();
var cloned1 = items.slice(-1).clone().prependTo(itemWrap),
	 cloned2 = items.filter(":lt(" + conf.size + ")").clone().appendTo(itemWrap);
	 items = null;

Posts:

Registered:

» It is missing metadata

Posted: Apr 1, 2009

That's what I thought might be the problem.

Thanks.

Posts:

Registered:

» Can someone identify why this FLV won

Posted: Mar 30, 2009

Sorry... bad link. Here is the real file:

http://www.sprynthesis.com/transfer/Milk_Draft-11_audio-Birds_FLV.flv

Posts:

Registered:

» Can someone identify why this FLV won

Posted: Mar 30, 2009

bump

Posts:

Registered:

Can someone identify why this FLV won

Posted: Mar 25, 2009

The file in question is here:

http://www.sprynthesis.com/Milk_Draft-11_audio-Birds_FLV.flv

Posts:

Registered:

» » Video Not Playing in FireFox 3.0.6/Flash 10.0 r12 Mac

Posted: Mar 12, 2009

Yup. Same problem I noted here awhile back.

http://flowplayer.org/forum/8/14992

Unfortunately, looks like there's no solution yet.

Posts:

Registered:

» » Video itself not showing up when off screen in FF3 on Mac

Posted: Feb 11, 2009

I think you might need to leave it open for quite awhile.

Posts:

Registered:

» » » » Video itself not showing up when off screen in FF3 on Mac

Posted: Feb 10, 2009

Guess not. I'm on 3.0.6.

Posts:

Registered:

» » Video itself not showing up when off screen in FF3 on Mac

Posted: Feb 10, 2009

Does that mean that this is unrelated to the flowplayer itself? Or is it a bug that could be looked into.

Do you experience this with any other flash/video outside of flowplayer?

Posts:

Registered:

Video itself not showing up when off screen in FF3 on Mac

Posted: Feb 10, 2009

So I'm seeing a fairly repeatable behavior on FF3 for the mac.

When I load a video using flashembed, but its off screen initially, the video itself never shows. That is to say that the player itself and the background gradient etc load, and even the playhead seems to load and shows the appropriate duration, but even when I hit play the video doesn't show up. This only happens sometimes, it seems after FF3 has been open and browsing for awhile. If I force refresh the page or quit and relaunch the browser, a lot of times it will work.

I even see this on this flashembed demo page:

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

Anyone else experiencing this?

Best,
Robert