I am sequencing a ScrollViewContainer
with some views I created. The views each have a surface but when I do this the ScrollViewContainer
wont scroll anymore. When I use a list of surfaces to sequenceFrom([Surface, Surface, Surface])
the ScrollViewContainer works fine but when I use a list of Views sequenceFrom([MyView, MyView, MyView])
it wont scroll.
ScrollViewContainer wont scroll when I use views to sequence from instead of surfaces using Famous
74 Views Asked by Subtubes At
1
More than likely your
View
will need a renderable that will pipe to theView
like a Surface.In this case you would pipe the
Surface
events to theView
output event handler from within yourView
.See line 62 of this example on jsBin.