I've realised where some of my mistakes are. However I did not manage to find all of them. Basically I come from a Adobe Flash AS2 developement environment and it's a bit tricky to get the plugins to work.

So here's where I am stuck:

I create an "actions" layer with the following code:

import org.flowplayer.model.Plugin;
import org.flowplayer.view.Flowplayer;

In the compiler classpath I specify the path to the swc object.

I open up the main org.flowplayer.model.Plugin class and under the onLoad event I have the code:

var txt:TextField = new TextField;
txt.text = "Something";
addChild(txt);

Problem is: Nothing shows up when I load the plugin in flowplayer. Any help, suggestions, tips?