oops
function createBullet(e:MouseEvent){
var bullet:Bullet = new Bullet();
bullet.x = mouseX ;
bullet.y = mouseY;
addChild(bullet)
}
this would create a Bullet on the position of the mouse, when you click. you can replace mouseX and Y with whatever you want