View Single Post
Old 05-04-2007, 03:37 PM   #35
Adam B.
Addicted to Porting
Adam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the roughAdam B. is a jewel in the rough
 
Adam B.'s Avatar
 
Posts: 1,697
Karma: 7194
Join Date: Oct 2006
Location: Indianapolis, IN
Device: iRex iLiad, Nokia 770, Samsung i760
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);
    }
Adam B. is offline   Reply With Quote