The error there is not realted to that page. note that FireBug isn't displaying an error
Forum user: kfir
Basic information
| Registered | Jan 21, 2009 |
| Last login | Jan 22, 2009 |
| Forum posts | 5 |
| Direct URL | http://www.flowplayer.org/forum/users/7763 |
Latest forum posts
Hi,
First of all I was talking about the expose tool
http://flowplayer.org/tools/expose.html
Open a window with the expose tool in it, not in full size, and than make it bigger and activate the expose tool.
Here's a picture of the bug
http://img339.imageshack.us/img339/4213/52932675qv4.jpg
First of all I was talking about the expose tool
http://flowplayer.org/tools/expose.html
Open a window with the expose tool in it, not in full size, and than make it bigger and activate the expose tool.
Here's a picture of the bug
http://img339.imageshack.us/img339/4213/52932675qv4.jpg
If the window is resized the expose will not cover the entire screen.
This can be easly fixed like so
This can be easly fixed like so
$(window).bind("resize.unexpose", function(evt) {
blanket.css("height",$(document).height());
});
I believe that problem comes from the wrap and items. After some testing I've managed to create something that solved my problem - if the items selector is the same as the root selector than it works.
var selector = "my jQuery selector";
$(selector).scrollable({
vertical: true,
items: selector
});
Another thing that you should note is the problem with the getSize function
getSize: function() {
return wrap.children().size();
}
The wrap childrens may be more than just the items that we want to scroll. for example
<ul>
<li><a href="google.co.il">Google</a></li>
<li><div class="box">some text here</div></li>
<li><img src="image.jpg" /></li>
</ul>
The size is 3 but if we will use the getSize function the result will be 6. Instead of wrap.children().size() you should use items.size() and that should give us the wanted results (Assuming that the problem that I've mentioned above will be fixed)
The scrollable v1.0 isn't working properly with the mousewheel when it is set to vertical. If I use the same exact javascript with v0.13 it works just fine..
It would be helpful if you will add a working example.
This one
http://flowplayer.org/tools/demos/scrollable/vertical.html
Isn't working with the mousewheel.. If you'll fix it there I believe that the problem that I'm encountering will be solved
It would be helpful if you will add a working example.
This one
http://flowplayer.org/tools/demos/scrollable/vertical.html
Isn't working with the mousewheel.. If you'll fix it there I believe that the problem that I'm encountering will be solved