Hi there,

I was wondering if it's possible to force the ScrollPane to show a white border around it's content?

I'm using the folowing 'hack' to edit it's content on the flow:
code:
this.createClassObject(mx.containers.ScrollPane, "sp", 1);
sp.contentPath = "empty";
var content = sp.content;


This allows me (when you have both the ScrollPane and en empty MC with linkage 'empty' in your library) to edit it's content with the variable 'content'. This is something very usefull, but it introduces the folowing problem:

When I place something on x:0, y:0 a part of it get's displayed behind the edges of the scrollpane. The same thing happesn when you scroll to the right, things get displayed behind the scrollbar.

Is there an easy way to fix this, or do I have to cheat a little?

~Sph