Thread: Dropdown menu fix

Results 1 to 4 of 4
  1. #1 Dropdown menu fix 
    Registered Member

    Join Date
    Feb 2015
    Posts
    830
    Thanks given
    12
    Thanks received
    200
    Rep Power
    118
    Hi there I am after a fix for my dropdown menu's... not being a client developer i'm not very experienced with this sort of work, though i tried. and have failed surely somebody on here can point me out with a fix or come do it for me.

    $$

    freezes when selecting an option/Overlaps on an interface : https://gyazo.com/9ca5c2a1c0bea02ee46daa9c6211568f

    if they are positioned next to eachother: https://i.gyazo.com/thumb/1200/f37b3...67b785-gif.gif


    Thank you.
    Reply With Quote  
     

  2. #2  
    Registered Member
    TheChosenOne's Avatar
    Join Date
    Jan 2013
    Posts
    967
    Thanks given
    47
    Thanks received
    161
    Rep Power
    366
    The interfaces get drawn in order of the children. So when you have the box after the menu, it will draw the box over the menu.
    I suggest you rearrange the order of the interfaces in its parent so the drop down menus themselves come after the boxes.
    Reply With Quote  
     

  3. #3  
    Rune-Server Affiliate

    Join Date
    Apr 2014
    Posts
    1,761
    Thanks given
    75
    Thanks received
    714
    Rep Power
    1073
    Exacylu what TheChosenOne said.

    The way I've done it is

    Code:
    int childId = 0;
            for (int i = 0, ids = childId - 1; i < dropdowns.length; ids--, i++) {
                // drop down menu stuff
                childId++;
            }
    Reversing the childIds
    Reply With Quote  
     

  4. #4  
    Registered Member
    TheChosenOne's Avatar
    Join Date
    Jan 2013
    Posts
    967
    Thanks given
    47
    Thanks received
    161
    Rep Power
    366
    Fixed
    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

Similar Threads

  1. ComboBox/Dropdown Menu
    By Sasquatch420 in forum Help
    Replies: 1
    Last Post: 11-27-2011, 01:36 AM
  2. [BS] Context Menu Fix [Algorithm]
    By Jason in forum Snippets
    Replies: 7
    Last Post: 09-27-2010, 12:36 AM
  3. Right click menu Fix!
    By SWAT in forum Show-off
    Replies: 13
    Last Post: 08-20-2009, 01:29 AM
  4. Right click menu Fix!
    By SWAT in forum Show-off
    Replies: 44
    Last Post: 08-16-2009, 07:58 PM
  5. Skill menu fix
    By Danno in forum Tutorials
    Replies: 7
    Last Post: 07-18-2008, 05:20 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •