Well, for some reason, when Mac users try to load my client, it just comes up with a straight white screen and doesn’t load the cache… Before you say something about the directory of the cache in signlink.java to “user.home”, I have already tried that, but to no avail. Here is my signlink.java, if anyone can help, I would be very appreciative. [code]public static final String findcachedir()
{
File[] drives = File.listRoots();
String Home = System.getProperty("user.home");
String s = Home + "/olympusv1.cache/";
File file = new File(s);
if ((file.exists()) || (file.mkdirs())) {
return s + "/";
}
return null;
}[/code]