Hmmm... Doesn't make sense to me. I suppose you could use panel editor for SED, but I've never touched it. It's always been a breeze to code panels.

I'm interested in playing around with the C# wrapper and VC# when I've got free time to do so. We're switching engines right now though. I suppose you could figure out a way to use the Windows form editor like this. Then you'd be able to do everything from A7 panels to real Windows forms/API stuff. Just a guess. That's something I'd like to try someday.

But for what you're talking about, why not find the two positions you want the panel to start and end at. Then set up a function with a simple timer based on the amount of movement. Then... (pseudo-code)

if(panel.x == whatever && panel.y == whatever)
{
break;
}

It simply stops when it gets there. Pretty easy.