Methos Posted July 22, 2004 Posted July 22, 2004 Is there a way to disable a menu, or option in a menu within a window? Example: notepad.exe - File, Edit, Format, View, Help are the menus, each with its subchoices. Is there a way to disable for example, the Print option?
CyberSlug Posted July 22, 2004 Posted July 22, 2004 Well for notepad in particular, you could do the following: Untested but should close the Print dialog window that appears right away and should disable Ctrl+P. Opt("TrayIconHide", 0);you probably want to change this to 1 Opt("WinTitleMatchMode", 2);substring Opt("WinSearchChildren", 1) Opt("WinWaitDelay", 10) HotKeySet("^p", "Print") While 1 If WinActive("Print") Then ControlClick("Print", "", "Cancel") sleep(100) WEnd Func Print() ; do nothing EndFunc Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
tuape Posted July 22, 2004 Posted July 22, 2004 I also assumed that Control* functions would work with menu items. This does not seem to be the case.
Methos Posted July 23, 2004 Author Posted July 23, 2004 Yeah, that kind of works for some things Cyber, but won't work for everything I need to do. Thanks though. I guess there isn't functionality to do this yet.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now