On Tue, Dec 23, 2008 at 5:41 AM, jmfillman <jmfill...@verizon.net> wrote:

> I have a Canvas that with a height of 3000. For some users, I only want
> them to be able to view and scroll a portion of the height of the
> canvas, say 1200-2200. It can vary from user to user, and some will
> need to see the entire height. I'm at a loss as to whether or not this
> is even possible, and if so, how.

Suppose you have a canvas with 5 items.

 <Canvas>
   <Item />
   <Item />
   <Item />
   <Item />
   <Item />
 </Canvas>

You want some users to see only the first 3, is that correct? If yes,
you can just set 'visible' to false and 'includeInLayout' to false on
the items that you want to hide, and that should take care of it.

-- 
manishjethani.com

Reply via email to