maskFile is not working inside for Tableview

Hi… 

i tried to make maskFile in my table but i was not able to see the effect of it … here is the code… 

[lua]

list = widget.newTableView

  {

      left =50,

      top = 200,

      height = _H - 400 ,

      width = _W -100,

      backgroundColor = { 0.8, 0.8, 0.8 },

      maskFile = “mask.png”,

      onRowRender = onRowRender,

      onRowTouch = onRowTouch,

      --listener = scrollListener

  }

[/lua]

any idea if i miss something, 

Regards

Abdul

Starting with Graphics 2.0 builds (builds > 2000), tableViews are self-masking and you don’t need to provide a mask any longer.

Rob

what is the meaning of that ? can you please explain ? so if I want for example rounded table or other suff , how can i make it.

thanks

Abdul

We started using display.newContainer where it takes the width and height and builds a mask on the fly for the list.  I’m not sure if providing a mask still works.  Perhaps you could put the tableView in another container and put your mask on it.  But keep in mind there are masking limits.

Rob

thanks Rob, is there any tutorial or docs that shows these modifications ?

regards

Abdul

Not for that specific set of steps.   I’m thinking about doing an iPad style flyout menu tutorial, which would do something like this.  But I’m not sure when I’m going to get to it.

Rob

good luck in your next tut Rob,

Starting with Graphics 2.0 builds (builds > 2000), tableViews are self-masking and you don’t need to provide a mask any longer.

Rob

what is the meaning of that ? can you please explain ? so if I want for example rounded table or other suff , how can i make it.

thanks

Abdul

We started using display.newContainer where it takes the width and height and builds a mask on the fly for the list.  I’m not sure if providing a mask still works.  Perhaps you could put the tableView in another container and put your mask on it.  But keep in mind there are masking limits.

Rob

thanks Rob, is there any tutorial or docs that shows these modifications ?

regards

Abdul

Not for that specific set of steps.   I’m thinking about doing an iPad style flyout menu tutorial, which would do something like this.  But I’m not sure when I’m going to get to it.

Rob

good luck in your next tut Rob,