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
98 Views Asked by Subtubes At
1
More than likely your
Viewwill need a renderable that will pipe to theViewlike a Surface.In this case you would pipe the
Surfaceevents to theViewoutput event handler from within yourView.See line 62 of this example on jsBin.