Thread: Fullscreen / Resizable problem with overlapping interfaces

Results 1 to 4 of 4
  1. #1 Fullscreen / Resizable problem with overlapping interfaces 
    Registered Member Sephmas's Avatar
    Join Date
    Oct 2009
    Posts
    59
    Thanks given
    6
    Thanks received
    2
    Rep Power
    26
    I've came along way and finally found out how to get things rolling. Just one thing to ask, when even though I'm in FULLSCREEN why does the original interfaces still appear, drawTabarea, drawchatArea, Drawminimap on the top left?



    Fullscreen interfaces.png
    Reply With Quote  
     

  2. #2  
    Registered Member
    thing1's Avatar
    Join Date
    Aug 2008
    Posts
    2,111
    Thanks given
    131
    Thanks received
    1,099
    Rep Power
    2402
    You will need to call your drawing functions separately.

    Ex.
    Code:
    if (fullscreen) {
        drawChatboxFullscreen();
    } else {
        drawChatboxFixed();
    }
    There are better ways to organize the client drawing but you get the idea.
    You will need to do this for all of the areas (chat, tab, map).
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member Sephmas's Avatar
    Join Date
    Oct 2009
    Posts
    59
    Thanks given
    6
    Thanks received
    2
    Rep Power
    26
    Quote Originally Posted by thing1 View Post
    You will need to call your drawing functions separately.

    Ex.
    Code:
    if (fullscreen) {
        drawChatboxFullscreen();
    } else {
        drawChatboxFixed();
    }
    There are better ways to organize the client drawing but you get the idea.
    You will need to do this for all of the areas (chat, tab, map).
    So simple yet overlooked, thank you so much for the help I appreciate it!
    Reply With Quote  
     

  5. #4  
    Registered Member
    thing1's Avatar
    Join Date
    Aug 2008
    Posts
    2,111
    Thanks given
    131
    Thanks received
    1,099
    Rep Power
    2402
    Quote Originally Posted by reapergrim View Post
    So simple yet overlooked, thank you so much for the help I appreciate it!
    Glad I was able to help!
    Reply With Quote  
     

  6. Thankful user:



Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Problem with my interface hovering
    By Sora in forum Help
    Replies: 7
    Last Post: 07-22-2011, 01:45 AM
  2. Replies: 7
    Last Post: 02-25-2011, 07:29 PM
  3. Replies: 3
    Last Post: 02-16-2011, 12:58 PM
  4. *facepalm* PC Problem with displaying interface
    By The Situationist in forum Help
    Replies: 2
    Last Post: 08-03-2010, 09:19 AM
  5. Problem with chat interface
    By NICKname in forum Help
    Replies: 19
    Last Post: 03-17-2009, 10:49 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •