Scroller Boundary

Can we create a scroller boundary programmatically in corona?

hideBackground shows a white background, but i need only the boundaries of the scroller as a line.

view\_scroller=widget.newScrollView { width=625, height=400, scrollWidth=300, scrollHeight=700, horizontalScrollDisabled=true, hideBackground=true, listener=scroll, } view\_scroller.x=0 view\_scroller.y=0
local line = display.newLine (view\_scroller.x + view\_scroller.width\*0.5, view\_scroller.y + view\_scroller.height\*0.5, ...)

Fill in the “…” with the rest of the points around your scroll view in the same way I started out.  Be careful, the order in which you traverse the corners counts here.

Very simple easy trick, thank you - worked :slight_smile:

local line = display.newLine (view\_scroller.x + view\_scroller.width\*0.5, view\_scroller.y + view\_scroller.height\*0.5, ...)

Fill in the “…” with the rest of the points around your scroll view in the same way I started out.  Be careful, the order in which you traverse the corners counts here.

Very simple easy trick, thank you - worked :slight_smile: