I cant seem to save my buffered image as a jpeg in a certain folder, please help, here is some of the code.
public void actionPerformed(ActionEvent e) {
img = null;
JMenuItem source = (JMenuItem)(e.getSource());
//if(source.getText()== "New"){
// img = null;
// }
if (source.getText()==...
I cant seem to save my buffered image as a jpeg in a certain folder, please help, here is some of the code.
public void actionPerformed(ActionEvent e) {
img = null;
JMenuItem source = (JMenuItem)(e.getSource());
//if(source.getText()== "New"){
// img = null;
// }
if (source.getText()==...
I am making a 2D shooting game in flash mx using action script.
my sprite can fire bullets but only one at a time. I want to know how to continuously fire bullets.
This is some of the code:
--===FOR THE MISSILE:===--
onClipEvent (enterFrame) {
if (this != _level0.missile) {
if (_root.fire...