Thread: Question

Results 1 to 5 of 5
  1. #1 Question 
    Saosin
    Guest
    Is the username and password input strings on the login menu supposed to be off-center or were they each on the same x value? I cannot for the life of me remember.
    Reply With Quote  
     

  2. #2  
    ICAj
    Guest
    Password is further to the right by 2px iirc.
    Reply With Quote  
     

  3. #3  
    Saosin
    Guest
    Yes, I'm wondering if that's how Jagex had it or if they kept them both aligned?

    Code:
    			chatTextDrawingArea
    					.method389(true, c / 2 - 90, 0xffffff, "Username: "
    							+ myUsername
    							+ ((loginScreenCursorPos == 0)
    									& (loopCycle % 40 < 20) ? "@yel@|" : ""), j);
    			j += 15;
    			chatTextDrawingArea
    					.method389(true, c / 2 - 88, 0xffffff, "Password: "
    							+ TextClass.passwordAsterisks(myPassword)
    							+ ((loginScreenCursorPos == 1)
    									& (loopCycle % 40 < 20) ? "@yel@|" : ""), j);
    			j += 15;
    or

    Code:
    			chatTextDrawingArea
    					.method389(true, c / 2 - 90, 0xffffff, "Username: "
    							+ myUsername
    							+ ((loginScreenCursorPos == 0)
    									& (loopCycle % 40 < 20) ? "@yel@|" : ""), j);
    			j += 15;
    			chatTextDrawingArea
    					.method389(true, c / 2 - 90, 0xffffff, "Password: "
    							+ TextClass.passwordAsterisks(myPassword)
    							+ ((loginScreenCursorPos == 1)
    									& (loopCycle % 40 < 20) ? "@yel@|" : ""), j);
    			j += 15;
    Reply With Quote  
     

  4. #4  
    ICAj
    Guest
    That's how jagex had it.



    2px to the right

    note might not be the same revision but i dont think it got changed
    Reply With Quote  
     

  5. #5  
    Saosin
    Guest
    Meh, I might as well change it anyway cause that doesn't make sense to me.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

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