Jump to content

Infected Mushies at Docklands


Guest

Recommended Posts

Guest ralih

It's very easy to get there from vikingterminalen, just walk to slussen which is very close to the terminal and then take buss 53 and go to finboda varv..

Link to comment
Share on other sites

Earlier i thought about going, but after seing them

in Copenhagen i wont see them again...

...was quite dissapointed on the Infected guys.

But thats just me...

....see for your selves =)

Link to comment
Share on other sites

  • 1 year later...

import java.awt.*;

import java.applet.*;

public class eyePic2 extends Applet

{

Image eye; //picture of eye

int a, b; //coordinates for mouse click

public void init()

{

eye = getImage(getCodeBase(), "eye.jpg"); //makes the pic work

 

// This code is automatically generated by Visual Cafe when you add

// components to the visual environment. It instantiates and initializes

// the components. To modify the code, only use code syntax that matches

// what Visual Cafe can generate, or Visual Cafe may be unable to back

// parse your Java file into its visual environment.

//{{INIT_CONTROLS

setLayout(null);

setBackground(java.awt.Color.white);

setForeground(java.awt.Color.black);

setSize(426,266);

instruct.setText("Click anywhere on the applet and watch as the eye follows.");

add(instruct);

instruct.setBounds(48,36,336,24);

//}}

}

 

public boolean mouseDown(Event e, int x, int y) {

a=x; //sets the x coor. in a

b=y; //sets the y coor. in b

repaint(); //reposts the lastest movement

return true;

}

 

public void paint(Graphics g) {

g.drawImage(eye, (a-60), (b-60), this); //draws eye at coor. given to it

//60 was subtracted because the amount of white space

// around the graphic created the problem of the

// graphic not actually appearing where the mouse was clicked

}

 

//{{DECLARE_CONTROLS

java.awt.Label instruct = new java.awt.Label();

//}}

}

Link to comment
Share on other sites

×
×
  • Create New...