Login
Search
Welcome to the iTechForums.
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
To register now click here.
Latest Threads
Advertisements
Forum Statistics
Threads:
Posts: 1
Members:
Number of Users Online:
Welcome to our newest member,
Reply
 
Thread Tools Display Modes
  #1  
Old 05-14-2008, 06:43 AM
Dr. Phill Dr. Phill is offline
Junior Member
 
Join Date: May 2008
Posts: 1
Default

ok i need help with java code?


ok when i click the leter on the screen to switch with the black square it doesnt go ( i am doing switch game where the pix is scrambled and you have to put them togather this is my code

public void advanceFrame(double timePassed) {
temp = "";
Coordinate hit=getPlayer().getMouse().getLocation();
if(hit != null && getPlayer().getMouse().pressed()){
for (int r = 0; r < BOARD_DIMENSIONS; r++){
for (int c = 0; c < BOARD_DIMENSIONS; c++){
if(pix[r][c].intersects(hit)){
if(pix[r][c].toString() != ""){
temp = pix[r][c].toString();
pix[r][c] = new StringSprite("");
}
if(pix[r][c].toString() == ""){
pix[r][c] = new StringSprite(temp);
}
}
}
}

}
}

this is in my advance frame
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I give an html code without the graphic appearing - just the code!!?? buguloo121 HTML & DHTML 3 05-28-2008 10:11 AM
Writing a java code Find the minimum value of an array of 3 numbers? Ted Java, Java Servlets & JSP 2 05-13-2008 01:36 PM
How do I write a java program that reads a Str ("secret code") and Bum Java, Java Servlets & JSP 0 05-10-2008 03:59 PM
Can anyone find me Java source code for a screen saver? please? Jeff Java, Java Servlets & JSP 0 05-07-2008 07:43 AM
how can i update java in my LG KE770 mobile to access bluetooth from java? atul k Java, Java Servlets & JSP 0 05-06-2008 05:00 PM

Your Ad Here

All times are GMT. The time now is 10:54 PM.