HelpRemoving: File,View,Control,Help

Posts 1–2 of 2 · Page 1 of 1
Removing: File,View,Control,Help
I've been using the old HKN script(the one that uses 6 accounts) to position my clients for multiboxing.
I know that theres already the method to remove frames.

Is there anyway to remove these by using the script?


Code:
        public static void RemoveWindowMenu(IntPtr h)
        {
            IntPtr HMENU = GetMenu(h);
            int count = GetMenuItemCount(HMENU);
            for (int i = 0; i < count; i++)
                RemoveMenu(HMENU, 0, (MF_BYPOSITION | MF_REMOVE));
        }
Where:
- GetMenu(IntPtr)
- GetMenuItemCount(IntPtr)
- RemoveMenu(IntPtr, uint, uint)
are Win32 API calls

You'll have to translate that to AHK but I know the methods are accessible.
Posts 1–2 of 2 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?