Quote:
Originally Posted by wallcraft
Also, there is no dictionary support. Are MobiPocket dictionaries supported on the iLiad?
|
Not yet, but: "eBook Not Supported.\niRex is working to add dictionary support.\nThis feature will be available in the next update."
Days like today, I wish I would have paid more attention in my Java class in college. Unfortunately, the only thing I really learned was how to decompile a jar file...
Edit: Some interesting discoveries
Code:
public void drawLine(int i, int j, int k, int l)
{
graphics.drawLine(i, j, k, l);
}
public void drawArc(int i, int j, int k, int l, int i1, int j1)
{
graphics.drawArc(i, j, k, l, i1, j1);
}
public void fillArc(int i, int j, int k, int l, int i1, int j1)
{
graphics.fillArc(i, j, k, l, i1, j1);
}
public void drawRect(int i, int j, int k, int l)
{
graphics.drawRect(i, j, k, l);
}
public void fillRect(int i, int j, int k, int l)
{
graphics.fillRect(i, j, k, l);
}