Its the mother-flippin Kongretube! Filled with wonder and delight as we see the miracles of modern technology featured on Kongregate.com. Featured in Kongretube is: An *award winning Youtube player, Outstanding music with integrated SHOUTcast radio control, Fun conversation with the fresh and clean Omegle.com panel that allows you to connect and talk with many interesting people and lastly the ability to put all of your favorite videos into a nice convenient playlist, perfect for music. In addition, enjoy the standard Kongregate.com chat bar to the side. Kongretube is truly the all in one package. Check it out today!
I am a non-attorney spokesperson.
is this code right
package{
import flash.display.MovieClip;
import flash.event.Event;
public class ship extends MovieClip{
var velocity:Number;
function Ship(){
velocity = 10;
addEventListener("enterframe", move);
}
function move(e:Event){
this.x = this.x + velocity
}
}
}