well ya but the phaser energy is up, that is all working ok, here`s the code for that.
Code:

panel Phaser_pan
{
bmap = charge_pan_tga;
pos_x = 945;
pos_y = 567;
window = 3, 2, 74, 7, charge_tga, player.phaser, 0; // can range from 0 to 74
flags = refresh, visible;
}

function init_player_startup()
{
while (player == null) {wait (1);}
player.phaser = 74;
while (1)
{
player.phaser += 0.4 * time; // increase power slowly
player.phaser = min(74, player.phaser); // limit phaser power 74
wait (1);
}
}


all this seems to work, and i assume at least the sound should play when i press the left mouse button.


Why does everyone like dolphins? Never trust a species which smiles all the time!