Search the web
Sign In
New User? Sign Up
croftsoft-ajgp · Advanced Java Game Programming discuss
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 94 - 123 of 198   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
94
... I think you may be talking about javadoc: http://www.croftsoft.com/library/code/javadoc/ http://www.croftsoft.com/library/code/javadoc/core/ ... ...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 2, 2003
10:07 pm
95
... I bumped into Tania on campus. My advice to her was to convert the .bmp files into .png files and then load them into memory using ImageIcon....
David Wallace Croft
david_wallac...
Offline Send Email
Oct 2, 2003
11:49 pm
96
Students: WindowedLoopGovernor is new class which uses windowed averaging to compute the frame rate delay. It replaces SamplerLoopGovernor as the default...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 3, 2003
12:26 am
97
Sorry to bother you again David, but I have two questions. I've been flipping through java books and sites trying to master the art of desginating a...
Tania
tanias16
Offline Send Email
Oct 3, 2003
2:50 pm
98
... How to designate a transparent color varies from image editor to image editor. What image editor are you using? ... Each time your update() method is...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 3, 2003
5:49 pm
99
Sadly, all I have here is microsoft paintbrush... Its transparent when I copy and paste it into files in paintbrush, but not when I use it in my program. ... ...
Tania
tanias16
Offline Send Email
Oct 3, 2003
6:00 pm
100
All the computers in the classroom have Photoshop and ImageReady. The two Solaris labs on campus allow for you to install Gimp. ... ...
Gary Kluth
lordnaga
Offline Send Email
Oct 3, 2003
6:09 pm
101
Tania, ... You can also install GIMP on Windows but unfortunately selecting a transparent color is a bit complicated. If you decide to go with GIMP and you...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 3, 2003
10:34 pm
102
David, Do you have an example of how to make semi-transparent images? Basically I'm just looking to be able to set the images to less than 100% opacity. From...
Chris Bryant
trufun101
Offline Send Email
Oct 4, 2003
2:04 am
103
... Are these static or dynamic images? If static, you can use an image editor to achieve this effect. Note that semi-transparent images hurt performance on...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 4, 2003
2:22 am
104
... be able to get Paint to use a transparent color by using the ... I dug through the help on MS Paint in Windows XP and found some information on how to make...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 5, 2003
10:11 pm
105
Students: If you have not turned in the Deployment Exercise, you need to do so before class starts tomorrow in order to get a C. Give me a ring at ...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 5, 2003
10:14 pm
106
I'm running windows 2000 pro, and i dug through every article I could find and am still not finding anything. ... From: David Wallace Croft...
Tania
tanias16
Offline Send Email
Oct 6, 2003
5:38 am
107
David, How do I compare an input string with a hard coded string? For instance: textTyped = ":"; switch ( keyCode ) { default: textTyped = textTyped + (char)...
Fultz Jason
jasonfultz
Offline Send Email
Oct 6, 2003
9:34 pm
108
I've been looking this error up on the internet, trying to find a situation where I might have messed up.... but I just don't know. Here's the msg " [java]...
Tania
tanias16
Offline Send Email
Oct 7, 2003
5:09 am
109
... [...] ... ImageLib.loadAutomaticImage() is a bit sensitive about when it gets called. I talk about it in my lecture on Advanced Graphics. I think you...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 7, 2003
6:49 am
110
... == is the identity comparison. It is used to determine whether the operands refer to the same object in memory. You want to use the equivalency...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 7, 2003
7:04 am
111
Well, it's got to be something else, because I tried the == before I sent this email and that's what's giving me the problem. It doesn't seem to think the two...
Fultz Jason
jasonfultz
Offline Send Email
Oct 8, 2003
3:22 am
112
... Try this instead: if ( textTyped.equals ( ":NEW" ) ) { bFirstPeg = true; } -- David Wallace Croft (972) 883-2205 office (214) 731-9284 home...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 8, 2003
4:15 am
113
That worked. Thanks. Now, if I only want to compare the 2nd-4th characters of textTyped, how would I do that? I looked at .substring, but that behaves...
Fultz Jason
jasonfultz
Offline Send Email
Oct 9, 2003
5:53 pm
114
... Something like this: if ( textTyped.substring ( 1, 4 ).equals ( "NEW" ) ) { ... } ...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 9, 2003
6:24 pm
115
I am finally starting to utilize sprites in my game. I've avoided it for a while because of how complicated it seems and how many errors others were having in...
Fultz Jason
jasonfultz
Offline Send Email
Oct 9, 2003
8:55 pm
116
[java] com.croftsoft.core.lang.NullArgumentException [java] at com.croftsoft.core.lang.NullArgumentException.check(Unknown S ource) [java] at ...
Tania
tanias16
Offline Send Email
Oct 9, 2003
11:31 pm
117
... Load your images from a JAR file instead of the file system. ... Load your images in the init() method instead of the update() method. -- David Wallace...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 10, 2003
4:01 am
118
... It looks like you are passing a null value to the constructor method of IconSprite. -- David Wallace Croft (972) 883-2205 office (214) 731-9284 home...
David Wallace Croft
david_wallac...
Offline Send Email
Oct 10, 2003
4:03 am
119
I'd like to get a transparent cursor working for my game. I attempted to use the setCustomCursor method in the Toolkit, but I got an error. Probably because I...
kvilbig
Offline Send Email
Oct 10, 2003
5:18 pm
120
I am trying to use arrayComponentUpdater and Painter to paint my icons like in ZombieReanimator, only with IconSprites rather than my own class... For some...
Tania
tanias16
Offline Send Email
Oct 11, 2003
6:31 am
121
David, I'm trying to use a FileReader and FileWriter to log player scores. I tried looking up XML Readers / Writers, but I couldn't find a simplified example....
Chris Bryant
trufun101
Offline Send Email
Oct 11, 2003
4:11 pm
122
You can void those last messages, I figured it out. I did want to know, however, if there is something I should be doing to reduce the lag on my game? It seems...
Tania
tanias16
Offline Send Email
Oct 12, 2003
7:40 am
123
My game is compiling and working fine... Multiapplet is compiling and working fine... but when I try to run multiapplet including my game with it... It gives...
Tania
tanias16
Offline Send Email
Oct 12, 2003
8:33 am
Messages 94 - 123 of 198   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help